/* ==========================================================================
   CTA GLOBAL HARD DÉCO
   ========================================================================== */

.hd-global-cta {
	width: 100%;
	padding: clamp(75px, 9vw, 130px) 24px;
	background: var(--theme-palette-color-3);
	color: #fff;
}

.hd-global-cta__inner {
	width: min(760px, 100%);
	margin: 0 auto;
	text-align: center;
}


/* Surtitre */

.hd-global-cta__kicker {
	margin: 0 0 18px;
	color: var(--theme-palette-color-1);

	font-weight: 500;
	letter-spacing: .08em;
	line-height: 1.4;
	text-transform: uppercase;
}


/* Titre */

.hd-global-cta__title {
	max-width: 760px;
	margin: 0 auto;
	color: #fff;
	font-size: clamp(30px, 3.2vw, 46px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.15;
}


/* Texte */

.hd-global-cta__description {
	max-width: 700px;
	margin: 24px auto 0;
	color: rgba(255, 255, 255, .78);
	font-size: 17px;
	line-height: 1.75;
}


/* Bouton */

.hd-global-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	margin-top: 32px;
	padding: 15px 24px;

	background:  var(--theme-palette-color-2);
	border-radius: 3px;

	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;

	transition:
		background-color .2s ease,
		transform .2s ease;
	  
	font-family: var(--theme-button-font-family, var(--theme-font-family));
    font-size: var(--theme-button-font-size);
    font-weight: var(--theme-button-font-weight);
    font-style: var(--theme-button-font-style);
    line-height: var(--theme-button-line-height);
    letter-spacing: var(--theme-button-letter-spacing);
    text-transform: var(--theme-button-text-transform);
    -webkit-text-decoration: var(--theme-button-text-decoration);
    text-decoration: var(--theme-button-text-decoration);
}

  



.hd-global-cta__button:hover {
	background:  var(--theme-palette-color-1);
	color: #fff;
	transform: translateY(-2px);
}

.hd-global-cta__arrow {
	font-size: 17px;
	line-height: 1;
	transition: transform .2s ease;
}

.hd-global-cta__button:hover .hd-global-cta__arrow {
	transform: translateX(4px);
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.hd-global-cta {
		padding: 65px 22px;
	}

	.hd-global-cta__kicker {
		margin-bottom: 14px;
		font-size: 12px;
	}

	.hd-global-cta__title {
		font-size: clamp(28px, 8vw, 36px);
	}

	.hd-global-cta__description {
		margin-top: 20px;
		font-size: 15px;
		line-height: 1.7;
	}

	.hd-global-cta__button {
		margin-top: 28px;
	}
}