/*!
 * WAFU A — Hero Actualités v1.0.1
 * Mosaïque éditoriale : vedette rotative + colonne d'actualités synchronisée.
 */

.wafua-hero {
	--wh-primary: #00A03B;
	--wh-accent: #C5E338;
	--wh-bronze: #A56F2E;
	--wh-dark: #0E0E0E;
	--wh-height: 620px;
	--wh-speed: 7000ms;
	--wh-ink: #FFFFFF;
	--wh-muted: rgba(255, 255, 255, 0.62);
	--wh-hair: rgba(255, 255, 255, 0.10);
	--wh-pad: clamp(20px, 2.6vw, 44px);

	position: relative;
	display: block;
	width: 100%;
	background: var(--wh-dark);
	color: var(--wh-ink);
	font-family: "Archivo", "Inter", "Helvetica Neue", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow: hidden;
	isolation: isolate;
}

.wafua-hero *,
.wafua-hero *::before,
.wafua-hero *::after {
	box-sizing: border-box;
}

.wafua-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.72fr) minmax(320px, 0.9fr);
	gap: 3px;
	min-height: var(--wh-height);
	max-width: 1680px;
	margin: 0 auto;
	background: var(--wh-dark);
}

.wafua-hero--side-left .wafua-hero__inner {
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.72fr);
}

.wafua-hero--side-left .wafua-hero__stage {
	order: 2;
}

.wafua-hero--side-left .wafua-hero__side {
	order: 1;
}

/* ------------------------------------------------------------------ Vedette */

.wafua-hero__stage {
	position: relative;
	overflow: hidden;
	min-height: var(--wh-height);
	background: #050505;
}

.wafua-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.7s ease, visibility 0s linear 0.7s;
	will-change: opacity;
}

.wafua-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
	transition: opacity 0.7s ease, visibility 0s;
}

.wafua-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.wafua-hero__media .wafua-hero__thumb,
.wafua-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.06);
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.wafua-hero__slide.is-active .wafua-hero__media img {
	transform: scale(1);
}

.wafua-hero--kenburns .wafua-hero__slide.is-active .wafua-hero__media img {
	animation: wh-kenburns 16s ease-out forwards;
}

@keyframes wh-kenburns {
	from { transform: scale(1) translate3d(0, 0, 0); }
	to   { transform: scale(1.09) translate3d(-1.2%, -1%, 0); }
}

.wafua-hero__thumb--placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(120% 120% at 20% 10%, rgba(0, 160, 59, 0.55), transparent 60%),
		linear-gradient(135deg, #14261a 0%, #0E0E0E 60%, #231a0e 100%);
}

.wafua-hero__scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.72) 30%, rgba(8, 8, 8, 0.18) 62%, rgba(8, 8, 8, 0.05) 100%),
		linear-gradient(to right, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.15) 48%, transparent 72%);
	z-index: 1;
}

.wafua-hero__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: var(--wh-pad);
	padding-bottom: calc(var(--wh-pad) + 42px);
	max-width: 780px;
}

.wafua-hero__slide.is-active .wafua-hero__content > * {
	animation: wh-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.wafua-hero__slide.is-active .wafua-hero__kickers { animation-delay: 0.05s; }
.wafua-hero__slide.is-active .wafua-hero__title   { animation-delay: 0.13s; }
.wafua-hero__slide.is-active .wafua-hero__excerpt { animation-delay: 0.21s; }
.wafua-hero__slide.is-active .wafua-hero__actions { animation-delay: 0.29s; }

@keyframes wh-rise {
	from { opacity: 0; transform: translate3d(0, 22px, 0); }
	to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.wafua-hero__kickers {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	padding: 0;
}

.wafua-hero__eyebrow {
	display: inline-block;
	background: var(--wh-accent);
	color: #0E0E0E;
	font-family: "Archivo Black", "Archivo", sans-serif;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 7px 12px 6px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}

.wafua-hero__cat {
	display: inline-block;
	color: var(--wh-accent);
	border: 1px solid rgba(197, 227, 56, 0.45);
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 11px;
}

.wafua-hero__title {
	margin: 0 0 14px;
	padding: 0;
	font-family: "Archivo Black", "Archivo", sans-serif;
	font-weight: 900;
	font-size: clamp(26px, 3.3vw, 50px);
	line-height: 1.04;
	letter-spacing: -0.015em;
	text-wrap: balance;
}

.wafua-hero__title a {
	color: #fff;
	text-decoration: none;
	background-image: linear-gradient(var(--wh-accent), var(--wh-accent));
	background-size: 0% 3px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	box-shadow: none;
}

.wafua-hero__title a:hover,
.wafua-hero__title a:focus-visible {
	color: #fff;
	background-size: 100% 3px;
}

.wafua-hero__excerpt {
	margin: 0 0 22px;
	padding: 0;
	max-width: 58ch;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(14px, 1.05vw, 17px);
	line-height: 1.6;
}

.wafua-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	margin: 0;
	padding: 0;
}

.wafua-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--wh-primary);
	color: #fff;
	font-family: "Archivo Black", "Archivo", sans-serif;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 14px 22px;
	border: 0;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.wafua-hero__cta svg {
	transition: transform 0.25s ease;
}

.wafua-hero__cta:hover,
.wafua-hero__cta:focus-visible {
	background: var(--wh-accent);
	color: #0E0E0E;
}

.wafua-hero__cta:hover svg,
.wafua-hero__cta:focus-visible svg {
	transform: translateX(4px);
}

.wafua-hero__date {
	color: var(--wh-muted);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* ------------------------------------------------------------ Contrôles */

.wafua-hero__controls {
	position: absolute;
	left: var(--wh-pad);
	bottom: calc(var(--wh-pad) - 6px);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 8px;
}

.wafua-hero__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 0;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.wafua-hero__nav:hover,
.wafua-hero__nav:focus-visible {
	background: var(--wh-accent);
	border-color: var(--wh-accent);
	color: #0E0E0E;
}

.wafua-hero__nav--play .wafua-hero__icon-play { display: none; }
.wafua-hero.is-paused .wafua-hero__nav--play .wafua-hero__icon-play { display: block; }
.wafua-hero.is-paused .wafua-hero__nav--play .wafua-hero__icon-pause { display: none; }

.wafua-hero__counter {
	margin: 0 0 0 8px;
	padding: 0;
	font-family: "Archivo Black", "Archivo", sans-serif;
	font-size: 13px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.9);
}

.wafua-hero__counter-sep {
	margin: 0 4px;
	color: var(--wh-accent);
}

.wafua-hero__counter-total {
	color: var(--wh-muted);
}

/* Sur grand écran, les contrôles passent en bas à droite de la vedette. */
@media (min-width: 901px) {
	.wafua-hero__controls {
		left: auto;
		right: var(--wh-pad);
		bottom: calc(var(--wh-pad) - 2px);
	}
	.wafua-hero__content {
		padding-bottom: calc(var(--wh-pad) + 4px);
	}
}

/* --------------------------------------------------- Colonne latérale */

.wafua-hero__side {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: linear-gradient(180deg, #131313 0%, #0B0B0B 100%);
	overflow: hidden;
}

.wafua-hero--arc .wafua-hero__side::after {
	content: "";
	position: absolute;
	right: -180px;
	bottom: -200px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	border: 46px solid rgba(0, 160, 59, 0.14);
	border-right-color: rgba(197, 227, 56, 0.12);
	border-bottom-color: rgba(165, 111, 46, 0.14);
	pointer-events: none;
	z-index: 0;
}

.wafua-hero__side-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 20px var(--wh-pad) 14px;
	font-family: "Archivo Black", "Archivo", sans-serif;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
}

.wafua-hero__side-bar {
	display: block;
	width: 26px;
	height: 4px;
	background: var(--wh-accent);
}

.wafua-hero__list {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.wafua-hero__list::-webkit-scrollbar { width: 4px; }
.wafua-hero__list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.18); }

.wafua-hero__item {
	position: relative;
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	width: 100%;
	margin: 0;
	padding: 16px var(--wh-pad);
	border: 0;
	border-top: 1px solid var(--wh-hair);
	border-radius: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: background-color 0.3s ease;
	-webkit-appearance: none;
	appearance: none;
}

.wafua-hero__item:first-child {
	border-top: 0;
}

.wafua-hero__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: -1px;
	bottom: 0;
	width: 3px;
	background: var(--wh-accent);
	transform: scaleY(0);
	transform-origin: 50% 0;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.wafua-hero__item:hover,
.wafua-hero__item:focus-visible {
	background: rgba(255, 255, 255, 0.045);
	outline: none;
}

.wafua-hero__item:focus-visible {
	box-shadow: inset 0 0 0 2px rgba(197, 227, 56, 0.65);
}

.wafua-hero__item.is-active {
	background: rgba(255, 255, 255, 0.07);
}

.wafua-hero__item.is-active::before {
	transform: scaleY(1);
}

.wafua-hero__item-thumb {
	position: relative;
	display: block;
	width: 92px;
	height: 62px;
	overflow: hidden;
	background: #1a1a1a;
	flex: none;
}

.wafua-hero__item-thumb img,
.wafua-hero__item-thumb .wafua-hero__thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(0.75) brightness(0.82);
	transition: filter 0.35s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wafua-hero__item:hover .wafua-hero__item-thumb img,
.wafua-hero__item.is-active .wafua-hero__item-thumb img {
	filter: saturate(1) brightness(1);
	transform: scale(1.06);
}

.wafua-hero__item-body {
	display: block;
	min-width: 0;
}

.wafua-hero__item-cat {
	display: block;
	margin-bottom: 5px;
	color: var(--wh-primary);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.wafua-hero__item.is-active .wafua-hero__item-cat {
	color: var(--wh-accent);
}

.wafua-hero__item-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	transition: color 0.3s ease;
}

.wafua-hero__item.is-active .wafua-hero__item-title,
.wafua-hero__item:hover .wafua-hero__item-title {
	color: #fff;
}

.wafua-hero__item-date {
	display: block;
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.42);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wafua-hero__item-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: transparent;
	overflow: hidden;
}

.wafua-hero__item-progress i {
	display: block;
	width: 0;
	height: 100%;
	background: var(--wh-accent);
}

.wafua-hero[data-autoplay="1"] .wafua-hero__item.is-active .wafua-hero__item-progress i {
	animation: wh-progress var(--wh-speed) linear forwards;
}

.wafua-hero.is-paused .wafua-hero__item.is-active .wafua-hero__item-progress i {
	animation-play-state: paused;
}

@keyframes wh-progress {
	from { width: 0; }
	to   { width: 100%; }
}

.wafua-hero__all {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 16px var(--wh-pad);
	border-top: 1px solid var(--wh-hair);
	color: var(--wh-accent);
	font-family: "Archivo Black", "Archivo", sans-serif;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.25s ease, background-color 0.25s ease;
}

.wafua-hero__all:hover,
.wafua-hero__all:focus-visible {
	background: rgba(197, 227, 56, 0.08);
	color: #fff;
}

.wafua-hero__all svg {
	transition: transform 0.25s ease;
}

.wafua-hero__all:hover svg {
	transform: translateX(4px);
}

/* --------------------------------------------------------- Bande basse */

.wafua-hero__strip {
	height: 4px;
	background: linear-gradient(90deg, var(--wh-primary) 0%, var(--wh-accent) 46%, var(--wh-bronze) 100%);
}

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

@media (max-width: 1180px) {
	.wafua-hero__inner {
		grid-template-columns: minmax(0, 1.5fr) minmax(290px, 1fr);
	}
	.wafua-hero__item {
		grid-template-columns: 74px minmax(0, 1fr);
		padding: 13px var(--wh-pad);
	}
	.wafua-hero__item-thumb {
		width: 74px;
		height: 52px;
	}
}

@media (max-width: 900px) {
	.wafua-hero__inner,
	.wafua-hero--side-left .wafua-hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.wafua-hero--side-left .wafua-hero__stage,
	.wafua-hero--side-left .wafua-hero__side {
		order: initial;
	}
	.wafua-hero__stage {
		min-height: min(72vh, 520px);
	}
	.wafua-hero__content {
		max-width: none;
		padding-bottom: calc(var(--wh-pad) + 46px);
	}
	.wafua-hero__side {
		background: #0B0B0B;
	}
	.wafua-hero--arc .wafua-hero__side::after {
		display: none;
	}
	.wafua-hero__list {
		flex-direction: row;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}
	.wafua-hero__item {
		flex: 0 0 78%;
		max-width: 320px;
		grid-template-columns: 68px minmax(0, 1fr);
		border-top: 0;
		border-left: 1px solid var(--wh-hair);
		scroll-snap-align: start;
	}
	.wafua-hero__item:first-child {
		border-left: 0;
	}
	.wafua-hero__item::before {
		top: 0;
		bottom: auto;
		left: 0;
		right: 0;
		width: auto;
		height: 3px;
		transform: scaleX(0);
		transform-origin: 0 50%;
	}
	.wafua-hero__item.is-active::before {
		transform: scaleX(1);
	}
	.wafua-hero__item-thumb {
		width: 68px;
		height: 48px;
	}
	.wafua-hero__all {
		justify-content: center;
	}
}

@media (max-width: 560px) {
	.wafua-hero {
		--wh-pad: 18px;
	}
	.wafua-hero__stage {
		min-height: 440px;
	}
	.wafua-hero__excerpt {
		display: none;
	}
	.wafua-hero__actions {
		gap: 12px;
	}
	.wafua-hero__cta {
		padding: 12px 18px;
		font-size: 11px;
	}
	.wafua-hero__item {
		flex-basis: 86%;
	}
}

/* --------------------------------------------------- Préférences système */

@media (prefers-reduced-motion: reduce) {
	.wafua-hero *,
	.wafua-hero *::before,
	.wafua-hero *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
	.wafua-hero__media img {
		transform: none !important;
	}
}

/* Repli sans JavaScript : la première actualité reste visible. */
.wafua-hero.no-js .wafua-hero__controls {
	display: none;
}

/* ==================================================================
   BLINDAGE — verrouillage des couleurs face au thème et à WPBakery.
   Le thème de wafua.org repeint les <button>, les liens et les titres ;
   ce bloc force la palette de l'aperçu. Retirer la classe
   .wafua-hero--locked sur la section pour laisser le thème reprendre
   la main (filtre wafua_hero_html).
   ================================================================== */

.wafua-hero.wafua-hero--locked,
.wafua-hero.wafua-hero--locked .wafua-hero__inner {
	background: var(--wh-dark) !important;
	color: var(--wh-ink) !important;
}

.wafua-hero--locked .wafua-hero__stage {
	background: #050505 !important;
}

.wafua-hero--locked .wafua-hero__side {
	background: linear-gradient(180deg, #131313 0%, #0B0B0B 100%) !important;
}

.wafua-hero--locked .wafua-hero__side-head {
	color: #fff !important;
	background: transparent !important;
}

.wafua-hero--locked .wafua-hero__side-bar {
	background: var(--wh-accent) !important;
}

/* Titre de la vedette : blanc, sans relief hérité du thème. */
.wafua-hero--locked .wafua-hero__title,
.wafua-hero--locked .wafua-hero__title a,
.wafua-hero--locked .wafua-hero__title a:link,
.wafua-hero--locked .wafua-hero__title a:visited,
.wafua-hero--locked .wafua-hero__title a:hover,
.wafua-hero--locked .wafua-hero__title a:focus,
.wafua-hero--locked .wafua-hero__title a:active {
	color: #fff !important;
	background-color: transparent !important;
	text-shadow: none !important;
	-webkit-text-stroke: 0 !important;
	text-decoration: none !important;
	text-transform: none !important;
	border: 0 !important;
	box-shadow: none !important;
}

.wafua-hero--locked .wafua-hero__title a {
	background-image: linear-gradient(var(--wh-accent), var(--wh-accent)) !important;
	background-repeat: no-repeat !important;
	background-position: 0 100% !important;
	background-size: 0% 3px;
}

.wafua-hero--locked .wafua-hero__title a:hover,
.wafua-hero--locked .wafua-hero__title a:focus-visible {
	background-size: 100% 3px;
}

.wafua-hero--locked .wafua-hero__excerpt {
	color: rgba(255, 255, 255, 0.78) !important;
	text-transform: none !important;
}

.wafua-hero--locked .wafua-hero__date,
.wafua-hero--locked .wafua-hero__counter {
	color: rgba(255, 255, 255, 0.9) !important;
	background: transparent !important;
}

.wafua-hero--locked .wafua-hero__date {
	color: var(--wh-muted) !important;
}

.wafua-hero--locked .wafua-hero__counter-sep {
	color: var(--wh-accent) !important;
}

.wafua-hero--locked .wafua-hero__counter-total {
	color: var(--wh-muted) !important;
}

/* Étiquettes. */
.wafua-hero--locked .wafua-hero__eyebrow {
	background: var(--wh-accent) !important;
	color: #0E0E0E !important;
	border: 0 !important;
}

.wafua-hero--locked .wafua-hero__cat {
	background: transparent !important;
	color: var(--wh-accent) !important;
	border: 1px solid rgba(197, 227, 56, 0.45) !important;
}

/* Bouton d'action. */
.wafua-hero--locked .wafua-hero__cta,
.wafua-hero--locked .wafua-hero__cta:link,
.wafua-hero--locked .wafua-hero__cta:visited {
	background: var(--wh-primary) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	text-decoration: none !important;
	text-shadow: none !important;
}

.wafua-hero--locked .wafua-hero__cta:hover,
.wafua-hero--locked .wafua-hero__cta:focus-visible {
	background: var(--wh-accent) !important;
	color: #0E0E0E !important;
}

/* Flèches et pause : le thème repeint les <button>, on reprend la main. */
.wafua-hero--locked .wafua-hero__nav {
	background: rgba(255, 255, 255, 0.06) !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.28) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	text-shadow: none !important;
	width: 38px !important;
	height: 38px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
	line-height: 1 !important;
}

.wafua-hero--locked .wafua-hero__nav:hover,
.wafua-hero--locked .wafua-hero__nav:focus-visible {
	background: var(--wh-accent) !important;
	border-color: var(--wh-accent) !important;
	color: #0E0E0E !important;
}

/* Colonne d'actualités : items transparents sur fond sombre. */
.wafua-hero--locked .wafua-hero__item {
	background: transparent !important;
	background-image: none !important;
	color: inherit !important;
	border: 0 !important;
	border-top: 1px solid var(--wh-hair) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	text-shadow: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	min-height: 0 !important;
	line-height: 1.35 !important;
	padding: 16px var(--wh-pad) !important;
}

.wafua-hero--locked .wafua-hero__item:first-child {
	border-top: 0 !important;
}

.wafua-hero--locked .wafua-hero__item:hover,
.wafua-hero--locked .wafua-hero__item:focus-visible {
	background: rgba(255, 255, 255, 0.045) !important;
}

.wafua-hero--locked .wafua-hero__item.is-active {
	background: rgba(255, 255, 255, 0.07) !important;
}

.wafua-hero--locked .wafua-hero__item::before {
	background: var(--wh-accent) !important;
}

.wafua-hero--locked .wafua-hero__item-thumb {
	background: #1a1a1a !important;
}

.wafua-hero--locked .wafua-hero__item-cat {
	color: var(--wh-primary) !important;
	background: transparent !important;
	text-transform: uppercase !important;
}

.wafua-hero--locked .wafua-hero__item.is-active .wafua-hero__item-cat {
	color: var(--wh-accent) !important;
}

.wafua-hero--locked .wafua-hero__item-title {
	color: rgba(255, 255, 255, 0.82) !important;
	text-transform: none !important;
}

.wafua-hero--locked .wafua-hero__item:hover .wafua-hero__item-title,
.wafua-hero--locked .wafua-hero__item.is-active .wafua-hero__item-title {
	color: #fff !important;
}

.wafua-hero--locked .wafua-hero__item-date {
	color: rgba(255, 255, 255, 0.42) !important;
}

.wafua-hero--locked .wafua-hero__item-progress {
	background: transparent !important;
}

.wafua-hero--locked .wafua-hero__item-progress i {
	background: var(--wh-accent) !important;
}

/* Lien « toutes les actualités » et bande d'accent. */
.wafua-hero--locked .wafua-hero__all,
.wafua-hero--locked .wafua-hero__all:link,
.wafua-hero--locked .wafua-hero__all:visited {
	color: var(--wh-accent) !important;
	background: transparent !important;
	border: 0 !important;
	border-top: 1px solid var(--wh-hair) !important;
	text-decoration: none !important;
}

.wafua-hero--locked .wafua-hero__all:hover,
.wafua-hero--locked .wafua-hero__all:focus-visible {
	background: rgba(197, 227, 56, 0.08) !important;
	color: #fff !important;
}

.wafua-hero--locked .wafua-hero__strip {
	background: linear-gradient(90deg, var(--wh-primary) 0%, var(--wh-accent) 46%, var(--wh-bronze) 100%) !important;
}

/* Le thème ne doit pas ajouter de puces ni de marges dans le hero. */
.wafua-hero--locked p,
.wafua-hero--locked h2,
.wafua-hero--locked time,
.wafua-hero--locked span {
	text-shadow: none !important;
}

.wafua-hero--locked img {
	border-radius: 0 !important;
	box-shadow: none !important;
	max-width: 100% !important;
}

/* Marges et polices : le thème ne doit pas décaler la composition. */
.wafua-hero--locked .wafua-hero__kickers,
.wafua-hero--locked .wafua-hero__title {
	margin: 0 0 14px !important;
	padding: 0 !important;
}

.wafua-hero--locked .wafua-hero__excerpt {
	margin: 0 0 22px !important;
	padding: 0 !important;
}

.wafua-hero--locked .wafua-hero__actions,
.wafua-hero--locked .wafua-hero__side-head {
	padding-left: 0;
	margin: 0 !important;
}

.wafua-hero--locked .wafua-hero__side-head {
	padding: 20px var(--wh-pad) 14px !important;
}

.wafua-hero--locked .wafua-hero__counter {
	margin: 0 0 0 8px !important;
	padding: 0 !important;
}

.wafua-hero--locked .wafua-hero__title,
.wafua-hero--locked .wafua-hero__eyebrow,
.wafua-hero--locked .wafua-hero__cta,
.wafua-hero--locked .wafua-hero__counter,
.wafua-hero--locked .wafua-hero__side-head,
.wafua-hero--locked .wafua-hero__all {
	font-family: "Archivo Black", "Archivo", "Helvetica Neue", Arial, sans-serif !important;
}

.wafua-hero--locked .wafua-hero__title {
	font-weight: 900 !important;
	line-height: 1.04 !important;
}

.wafua-hero--locked .wafua-hero__excerpt,
.wafua-hero--locked .wafua-hero__item-title,
.wafua-hero--locked .wafua-hero__item-date,
.wafua-hero--locked .wafua-hero__item-cat,
.wafua-hero--locked .wafua-hero__date {
	font-family: "Archivo", "Helvetica Neue", Arial, sans-serif !important;
}
