/**
 * Page d'accueil
 * Style aligné sur single-garantie / page-vos-garanties-sur-mesure
 */

.hp :is(h1, h2, h3, h4, h5, h6) {
	font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
	font-weight: 400;
}

.hp h1 { font-size: 42px; }
.hp h2 { font-size: 36px; }
.hp h3 { font-size: 30px; }
.hp h4 { font-size: 24px; }

.hp,
.actu {
	--hp-primary: #004e90;
	--hp-secondary: #8bcdd3;
	--hp-blue: #0073ba;
	--hp-heading: #122b54;
	--hp-text: #656567;
	--hp-text-muted: #8a939c;
	--hp-border: #dde4ea;
	--hp-max: 1200px;
}

.hp {
	--hp-btn-duration: 0.55s;
	--hp-btn-ease: cubic-bezier(0.33, 0, 0.15, 1);
	overflow-x: hidden;
}

.hp .container,
.actu .container {
	max-width: var(--hp-max);
}

/* -------------------------------------------------------------------------- */
/* Hero vidéo (pleine largeur, sans bandes noires) */
/* -------------------------------------------------------------------------- */

.hp-hero {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-top: -80px;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-bottom: 0;
	overflow: hidden;
	background: #000;
}

.hp-hero__media {
	position: relative;
	width: 100%;
	height: clamp(420px, 56.25vw, 816px);
	overflow: hidden;
}

.hp-hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 177.78vh;
	height: 56.25vw;
	min-width: 100%;
	min-height: 100%;
	border: 0;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

/* -------------------------------------------------------------------------- */
/* Citation */
/* -------------------------------------------------------------------------- */

.hp-quote {
	position: relative;
	padding: 80px 0 100px;
	background: #fff;
}

.hp-quote--overlap {
	z-index: 2;
	margin-top: -100px;
}

.hp-quote__inner {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 36px 28px 52px;
}

.hp-quote__title {
	position: relative;
	margin: 0 auto;
	max-width: 700px;
	padding-left: 88px;
	color: var(--hp-primary);
	font-weight: 600!important;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.hp-quote__title.hp-quote__page_title {
	max-width: 980px;
}

.hp-quote__title h1 {
	font-size: 48px;
}

.hp-quote__title h2 {
	font-size: 42px;
}

.hp-quote__title::before {
	content: "";
	position: absolute;
	left: -1.5em;
	top: -1.5em;
	width: 160px;
	height: 160px;
	background: url(../images/hp-quote-guillemets.svg) no-repeat left top / contain;
	pointer-events: none;
}

.hp-quote--no-icon .hp-quote__title {
	padding-left: 0;
}

.hp-quote--no-icon .hp-quote__title::before {
	display: none;
}

.hp-quote--contact {
	padding-top: 32px;
}

.hp-quote--contact .hp-quote__inner {
	padding-top: 12px;
}

.hp-quote__cta {
	margin-top: 36px;
	text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Titres de section : voir bcom-section-title.css */
/* -------------------------------------------------------------------------- */

.hp-lead {
	max-width: 820px;
	margin: -24px auto 36px;
	color: var(--hp-text);
	font-family: 'Segoe UI', sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.65;
	text-align: center;
}

.hp-section--light {
	background: #fff;
}

.hp-section--muted {
	background: #f7f9fb;
}

/* -------------------------------------------------------------------------- */
/* Valeurs */
/* -------------------------------------------------------------------------- */

.hp-values {
	position: relative;
	z-index: 3;
	margin-top: -80px;
	padding: 96px 0;
	background: var(--hp-secondary);
	/* Bord haut oblique uniquement ; bas horizontal */
	clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.hp-values__inner {
	position: relative;
	z-index: 1;
}

.hp-values__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.hp-value {
	--hp-value-ease: cubic-bezier(0.33, 0, 0.15, 1);
	--hp-value-duration: 0.65s;
	background: #fff;
	border-radius: 0 16px 0 16px;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(0, 78, 144, 0.08);
}

.hp-value__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hp-value__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 0 16px 0 0;
}

.hp-value__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--hp-value-duration) var(--hp-value-ease);
}

.hp-value__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(0, 78, 144, 0.9) 0%,
		rgba(0, 115, 186, 0.82) 45%,
		rgba(139, 205, 211, 0.78) 100%
	);
	opacity: 0;
	transition: opacity var(--hp-value-duration) var(--hp-value-ease);
	pointer-events: none;
}

/* left/top + translate pour une trajectoire fluide vers le centre */
.hp-value__icon {
	position: absolute;
	left: calc(100% - 14px);
	top: calc(100% - 14px);
	width: 120px;
	height: 120px;
	border: 0;
	border-radius: 50%;
	object-fit: contain;
	padding: 6px;
	background: var(--hp-secondary);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
	transform: translate(-50%, -50%);
	z-index: 2;
	transition:
		left var(--hp-value-duration) var(--hp-value-ease),
		top var(--hp-value-duration) var(--hp-value-ease),
		width var(--hp-value-duration) var(--hp-value-ease),
		height var(--hp-value-duration) var(--hp-value-ease),
		padding var(--hp-value-duration) var(--hp-value-ease),
		background-color var(--hp-value-duration) var(--hp-value-ease),
		box-shadow var(--hp-value-duration) var(--hp-value-ease);
}

.hp-value__link:hover .hp-value__overlay,
.hp-value__link:focus-visible .hp-value__overlay {
	opacity: 1;
}

.hp-value__link:hover .hp-value__img,
.hp-value__link:focus-visible .hp-value__img {
	transform: scale(1.04);
}

.hp-value__link:hover .hp-value__icon,
.hp-value__link:focus-visible .hp-value__icon {
	left: 50%;
	top: 50%;
	width: 88px;
	height: 88px;
	padding: 14px;
	background: var(--hp-primary);
	box-shadow: 0 12px 28px rgba(0, 78, 144, 0.35);
}

.hp-value__link:hover .hp-value__title,
.hp-value__link:focus-visible .hp-value__title {
	color: var(--hp-secondary);
}

.hp-value__body {
	padding: 38px 30px 30px;
}

.hp-value__title {
	margin: 0 0 8px;
	color: var(--hp-primary);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
	transition: color var(--hp-value-duration) var(--hp-value-ease);
}

.hp-value__text {
	margin: 0;
	color: var(--hp-text);
	font-family: 'Segoe UI', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5;
}

.hp-values__cta {
	margin-top: 44px;
	text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Boutons */
/* -------------------------------------------------------------------------- */

.hp-btn {
	position: relative;
	z-index: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 17px 42px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	isolation: isolate;
	transition:
		color var(--hp-btn-duration) var(--hp-btn-ease),
		border-color var(--hp-btn-duration) var(--hp-btn-ease),
		background-color var(--hp-btn-duration) var(--hp-btn-ease),
		box-shadow var(--hp-btn-duration) var(--hp-btn-ease),
		transform var(--hp-btn-duration) var(--hp-btn-ease);
}

.hp-btn:hover,
.hp-btn:focus-visible {
	transform: translateY(-2px);
}

.hp-btn--primary {
	border: 0;
	background-color: var(--hp-primary);
	color: #fff;
	box-shadow: 0 4px 16px rgba(0, 78, 144, 0.35);
}

.hp-btn--primary::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	background-color: var(--hp-secondary);
	opacity: 0;
	transition: opacity var(--hp-btn-duration) var(--hp-btn-ease);
}

.hp-btn--primary:hover,
.hp-btn--primary:focus-visible {
	color: #fff;
	box-shadow: 0 8px 24px rgba(139, 205, 211, 0.45);
}

.hp-btn--primary:hover::before,
.hp-btn--primary:focus-visible::before {
	opacity: 1;
}

.hp-btn--outline {
	border: 1px solid #fff;
	background-color: transparent;
	color: #fff;
	box-shadow: none;
}

.hp-btn--outline:hover,
.hp-btn--outline:focus-visible {
	background-color: #fff;
	color: var(--hp-primary);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* -------------------------------------------------------------------------- */
/* Garanties / produits */
/* -------------------------------------------------------------------------- */

.hp-products {
	padding: 72px 0 80px;
}

.hp-products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.hp-products__card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	color: inherit;
	text-decoration: none;
	background: #fff;
	border: 1px solid var(--hp-border);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(18, 43, 84, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hp-products__card:hover,
.hp-products__card:focus-visible {
	border-color: rgba(0, 115, 186, 0.45);
	box-shadow: 0 14px 34px rgba(0, 115, 186, 0.12);
	transform: translateY(-3px);
}

.hp-products__card:focus-visible {
	outline: 3px solid rgba(0, 115, 186, 0.35);
	outline-offset: 3px;
}

.hp-products__thumb {
	aspect-ratio: 3/2;
	overflow: hidden;
	background: #eef3f7;
}

.hp-products__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.25s ease;
}

.hp-products__card:hover .hp-products__img,
.hp-products__card:focus-visible .hp-products__img {
	transform: scale(1.03);
}

.hp-products__body {
	flex: 1;
	padding: 16px 16px 18px;
}

h3.hp-products__name {
	margin: 0;
	color: var(--hp-primary);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.35;
	text-transform: uppercase;
	transition: color 0.25s ease;
}

.hp-products__card:hover .hp-products__name,
.hp-products__card:focus-visible .hp-products__name {
	color: var(--hp-blue);
}

.hp-products__cta {
	margin-top: 44px;
	text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Compétences / spécialisations */
/* -------------------------------------------------------------------------- */

.hp-specs {
	padding: 72px 0 80px;
}

.hp-specs__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.hp-specs__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 24px 20px;
	background: #fff;
	border: 1px solid var(--hp-border);
	border-top: 4px solid var(--hp-primary);
	border-radius: 0 12px 12px 12px;
	box-shadow: 0 10px 24px rgba(18, 43, 84, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hp-specs__name {
	margin: 0 0 14px;
	color: var(--hp-primary);
	text-align: center;
	font-size: 18px!important;
	font-weight: 700!important;
	line-height: 1.2;
	text-transform: uppercase;
}

.hp-specs__text {
	margin: 0;
	color: var(--hp-text);
	font-family: 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.65;
}

/* -------------------------------------------------------------------------- */
/* Contenu professionnels */
/* -------------------------------------------------------------------------- */

.hp-pros {
	padding: 72px 0 80px;
}

.hp-pros__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 48px;
	align-items: center;
}

.hp-pros__content .bcom-section-title--left {
	margin-bottom: 24px;
}

.hp-pros__text {
	color: var(--hp-text);
	font-family: 'Segoe UI', sans-serif;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.75;
}

.hp-pros__text p {
	margin: 0 0 16px;
}

.hp-pros__text p:last-child {
	margin-bottom: 0;
}

.hp-pros__cta {
	margin-top: 28px;
}

.hp-pros__media {
	display: flex;
	justify-content: center;
}

.hp-pros__img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0 24px 0 24px;
	box-shadow: 0 16px 40px rgba(18, 43, 84, 0.12);
	object-fit: cover;
}

/* -------------------------------------------------------------------------- */
/* Agences */
/* -------------------------------------------------------------------------- */

.hp-agencies {
	padding: 72px 0 80px;
}

.hp-agencies__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.hp-agency {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 24px 22px;
	background: #fff;
	border: 1px solid var(--hp-border);
	border-top: 4px solid var(--hp-primary);
	border-radius: 0 12px 12px 12px;
	box-shadow: 0 10px 24px rgba(18, 43, 84, 0.06);
}

h3.hp-agency__name {
	margin: 0 0 14px;
	color: var(--hp-primary);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.hp-agency__address {
	margin: 0 0 14px;
	color: var(--hp-text);
	font-family: 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
}

.hp-agency__phone,
.hp-agency__email {
	margin: 0 0 8px;
	font-family: 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.hp-agency__email {
	margin-bottom: 0;
}

.hp-agency__phone a,
.hp-agency__email a {
	color: var(--hp-blue);
	text-decoration: none;
}

.hp-agency__phone a:hover,
.hp-agency__phone a:focus-visible,
.hp-agency__email a:hover,
.hp-agency__email a:focus-visible {
	color: var(--hp-primary);
	text-decoration: underline;
}

.hp-agencies__cta {
	margin-top: 44px;
	text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Équipe */
/* -------------------------------------------------------------------------- */

.hp-team {
	position: relative;
	padding: 185px 0 120px;
	overflow: hidden;
}

.hp-team__media {
	position: absolute;
	inset: 0;
}

.hp-team__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top left;
	display: block;
}

/* Panneau bleu incliné (comme l’ancienne version) */
.hp-team__panel {
	position: absolute;
	inset: 0;
	left: 32%;
	background: rgba(0, 78, 144, 0.7);
	clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
	z-index: 1;
	pointer-events: none;
}

.hp-team__inner {
	position: relative;
	z-index: 2;
}

.hp-team__content {
	margin-left: auto;
	max-width: 520px;
	padding: 24px 0;
}

.hp-team__title {
	position: relative;
	margin: 0 0 28px;
	padding: 22px 0 0 22px;
	color: #fff;
	font-size: 36px;
	line-height: 1.3;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.hp-team__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 42px;
	height: 42px;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
}

/* -------------------------------------------------------------------------- */
/* Actualités */
/* -------------------------------------------------------------------------- */

.hp-news {
	padding: 72px 0 88px;
	background: #fff;
}

.hp-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.hp-news__card {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 24px rgba(18, 43, 84, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hp-news__card:hover,
.hp-news__card:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 16px 34px rgba(0, 115, 186, 0.14);
}

.hp-news__thumb {
	position: relative;
	aspect-ratio: 3/2;
	overflow: hidden;
	background: var(--hp-border);
}

.hp-news__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hp-news__cat {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	padding: 6px 12px;
	background: var(--hp-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	border-radius: 4px;
}

.hp-news__body {
	flex: 1;
	padding: 16px 18px 20px;
	background: #e8f4f8;
}

.hp-news__date {
	margin: 0 0 8px;
	color: var(--hp-text-muted);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.hp-news__post-title {
	margin: 0;
	color: var(--hp-primary);
	font-size: 18px!important;
	font-weight: 700!important;
	line-height: 1.35;
	text-transform: uppercase;
}

.hp-news__card:hover .hp-news__post-title,
.hp-news__card:focus-visible .hp-news__post-title {
	color: var(--hp-blue);
}

.hp-news__cta {
	margin-top: 44px;
	text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Responsive */
/* -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
	.hp .container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.hp-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hp-agencies__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hp-specs__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hp-pros__layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.hp-pros__media {
		order: -1;
	}

	.hp-team__panel {
		left: 22%;
		clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
	}

	.hp-team__content {
		max-width: 460px;
	}
}

@media (max-width: 991px) {
	.hp h1 { font-size: 36px; }
	.hp h2 { font-size: 32px; }
	.hp h3 { font-size: 26px; }

	.hp-hero {
		margin-top: -60px;
	}

	.hp-hero__media {
		height: clamp(320px, 50vw, 560px);
	}

	.hp-quote--overlap {
		margin-top: -60px;
		padding: 56px 0 72px;
	}

	.hp-quote__title::before {
		width: 120px;
		height: 120px;
		left: -1em;
		top: -1.2em;
	}

	.hp-values {
		margin-top: -48px;
		padding: 72px 0 88px;
		clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
	}

	.hp-values__grid,
	.hp-news__grid,
	.hp-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.hp-products,
	.hp-agencies {
		padding: 56px 0 64px;
	}

	.hp-lead {
		margin-top: -18px;
		margin-bottom: 28px;
		font-size: 16px;
	}

	.hp-value__icon {
		width: 96px;
		height: 96px;
	}

	.hp-value__link:hover .hp-value__icon,
	.hp-value__link:focus-visible .hp-value__icon {
		width: 80px;
		height: 80px;
	}

	.hp-value__text {
		font-size: 18px;
	}

	.hp-team {
		margin-top: -48px;
		padding: min(42vw, 320px) 0 88px;
	}

	.hp-team__img {
		object-position: center top;
	}

	.hp-team__content {
		max-width: 100%;
	}

	.hp-team__panel {
		left: 0;
		clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
		background: rgba(0, 78, 144, 0.55);
	}

	.hp-team__title {
		font-size: 32px;
	}

	.hp-news {
		padding: 56px 0 72px;
	}
}

@media (max-width: 767px) {
	.hp h1 { font-size: 28px; }
	.hp h2 { font-size: 26px; }
	.hp h3 { font-size: 22px; }

	.hp .container {
		padding-left: 16px;
		padding-right: 16px;
	}

	/* Hero */
	.hp-hero {
		margin-top: 0;
	}

	.hp-hero__media {
		height: clamp(220px, 62vw, 380px);
	}

	/* Citation */
	.hp-quote--overlap {
		margin-top: 0;
	}

	.hp-quote {
		padding: 40px 0 56px;
	}

	.hp-quote__inner {
		padding: 0 4px 8px;
	}

	.hp-quote__title {
		padding: 52px 8px 0;
		font-size: clamp(22px, 6.2vw, 28px);
		line-height: 1.25;
	}

	.hp-quote--no-icon .hp-quote__title {
		padding-top: 0;
	}

	.hp-quote__title::before {
		left: 50%;
		top: 0;
		width: clamp(64px, 22vw, 96px);
		height: clamp(64px, 22vw, 96px);
		transform: translateX(-50%);
	}

	/* Titres de section */
	.hp-values {
		margin-top: 0;
		padding: 56px 0 64px;
		clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
	}

	.hp-values__grid,
	.hp-news__grid,
	.hp-products__grid,
	.hp-agencies__grid,
	.hp-specs__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hp-products,
	.hp-agencies,
	.hp-specs,
	.hp-pros {
		padding: 48px 0 56px;
	}

	.hp-products__name {
		font-size: 18px;
	}

	.hp-agency__name {
		font-size: 20px;
	}

	.hp-products__cta,
	.hp-agencies__cta,
	.hp-values__cta,
	.hp-news__cta,
	.hp-quote__cta {
		margin-top: 32px;
	}

	.hp-quote--contact {
		padding-top: 24px;
	}

	.hp-value__body {
		padding: 32px 22px 26px;
	}

	.hp-value__title {
		font-size: 20px;
	}

	.hp-value__text {
		font-size: 16px;
		line-height: 1.55;
	}

	.hp-value__icon {
		width: 80px;
		height: 80px;
		left: calc(100% - 12px);
		top: calc(100% - 12px);
		padding: 8px;
	}

	.hp-value__link:hover .hp-value__icon,
	.hp-value__link:focus-visible .hp-value__icon {
		width: 72px;
		height: 72px;
		padding: 12px;
	}

	/* Équipe */
	.hp-team {
		display: flex;
		align-items: flex-end;
		margin-top: 0;
		min-height: clamp(420px, 115vw, 520px);
		padding: 0 0 48px;
	}

	.hp-team__inner {
		width: 100%;
	}

	.hp-team__panel {
		left: 0;
		clip-path: none;
		background: linear-gradient(
			0deg,
			rgba(0, 78, 144, 0.88) 0%,
			rgba(0, 78, 144, 0.55) 45%,
			rgba(0, 78, 144, 0.2) 100%
		);
	}

	.hp-team__content {
		text-align: center;
		padding: 0;
	}

	.hp-team__title {
		font-size: clamp(24px, 6vw, 30px);
		margin-bottom: 22px;
		padding: 0;
	}

	.hp-team__title::before {
		display: none;
	}

	/* Actualités */
	.hp-news {
		padding: 48px 0 56px;
	}

	.hp-news__post-title {
		font-size: 16px !important;
	}

	/* Boutons */
	.hp-btn {
		width: 100%;
		max-width: 100%;
		padding: 16px 28px;
		font-size: 14px;
	}
}

@media (max-width: 479px) {
	.hp-hero__media {
		height: clamp(200px, 58vw, 280px);
	}

	.hp-quote__title {
		padding-top: 48px;
		font-size: 20px;
	}

	.hp-quote--no-icon .hp-quote__title {
		padding-top: 0;
	}

	.hp-quote__title::before {
		width: 56px;
		height: 56px;
	}

	.hp-value__icon {
		width: 72px;
		height: 72px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hp-value__img,
	.hp-value__overlay,
	.hp-value__icon,
	.hp-btn,
	.hp-btn--primary::before {
		transition: none;
	}

	.hp-btn:hover,
	.hp-btn:focus-visible {
		transform: none;
	}
}
