/* ======================================================
   ALC STAGES — CSS PUBLIC NETTOYÉ
   Page stage + page édition
====================================================== */

:root {
	--alcs-orange: #f85903;
	--alcs-black: #171717;
	--alcs-cream: #fff7f2;
	--alcs-muted: #667085;
	--alcs-border: #eadfd8;
	--alcs-shadow: 0 18px 50px rgba(31, 24, 20, 0.10);
}

html {
	scroll-behavior: smooth;
}

.alcs-single, .alcs-showcase {
	overflow-x: clip;
	color: var(--alcs-black);
	background: #fff;
	font-family: Arial, Helvetica, sans-serif;
}

.alcs-single *, .alcs-showcase * {
	box-sizing: border-box;
	min-width: 0;
}

.alcs-single img, .alcs-showcase img {
	display: block;
	max-width: 100%;
}

.alcs-single__container, .alcs-container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.alcs-single__section {
	padding: 72px 0;
}

.alcs-single__eyebrow {
	display: block;
	margin-bottom: 10px;
	color: var(--alcs-accent, var(--alcs-orange));
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.alcs-single__eyebrow--light {
	color: #fff;
}

.alcs-single__section-heading {
	margin-bottom: 30px;
}

.alcs-single__section-heading h2, .alcs-single__contact-card h2 {
	overflow-wrap: anywhere;
	margin: 0;
	font-family: Georgia, serif;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.02;
}

#presentation, #edition-actuelle, #inscription {
	scroll-margin-top: 110px;
}

.alcs-single__hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 430px;
	padding: 58px 0 72px;
	color: #fff;
	background: linear-gradient(
		115deg,
		var(--alcs-accent, var(--alcs-orange)) 0%,
		#d94300 72%,
		#bd3100 100%
	);
}

.alcs-single__hero::before {
	position: absolute;
	z-index: -2;
	inset: 0;
	background: radial-gradient(
			circle at 82% 35%,
			rgba(255, 255, 255, 0.12),
			transparent 36%
		);
	content: "";
}

.alcs-single__hero::after {
	position: absolute;
	z-index: -1;
	right: -100px;
	bottom: -210px;
	width: 460px;
	height: 460px;
	border: 60px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	content: "";
}

.alcs-single__hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
	align-items: center;
	gap: 44px;
}

.alcs-single__hero-slogan {
	display: inline-block;
	max-width: 650px;
	margin: 0 0 28px;
	padding: 10px 22px;
	border-radius: 4px;
	background: #151515;
	color: #fff;
	font-size: clamp(15px, 2vw, 22px);
	line-height: 1.25;
	text-transform: uppercase;
	transform: rotate(-1deg);
}

.alcs-single__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 900;
	text-decoration: none;
	transition: transform 0.2s ease,
		box-shadow 0.2s ease;
}

.alcs-single__button--light {
	background: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
	color: var(--alcs-accent, var(--alcs-orange));
}

.alcs-single__button:hover {
	transform: translateY(-2px);
}

.alcs-single__hero-logo {
	justify-self: center;
	width: min(270px, 100%);
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.10);
	box-shadow: 0 20px 60px rgba(54, 15, 0, 0.24);
	backdrop-filter: blur(7px);
}

.alcs-single__hero-logo img {
	width: 100%;
	max-height: 235px;
	object-fit: contain;
	filter: drop-shadow(0 15px 24px rgba(0, 0, 0, 0.22));
}

.alcs-single__logo-placeholder {
	display: grid;
	min-height: 300px;
	place-items: center;
	text-align: center;
}

.alcs-single__logo-placeholder span {
	font-size: 64px;
}

.alcs-single__logo-placeholder strong {
	overflow-wrap: anywhere;
	font-size: 26px;
}

.alcs-single__back-stages, .alcs-edition__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	margin-bottom: 26px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.10);
	color: #fff;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	backdrop-filter: blur(8px);
	transition: background-color 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.alcs-single__back-stages:hover, .alcs-edition__back:hover {
	background: #fff;
	color: var(--alcs-accent, #f85903);
	transform: translateY(-1px);
}

.alcs-single__categories-card {
	padding: 14px 20px 16px;
	border: 1px solid var(--alcs-border);
	border-radius: 18px;
	background: #fff;
	box-shadow: var(--alcs-shadow);
}

.alcs-single__categories-title {
	display: block;
	margin-bottom: 10px;
	color: var(--alcs-accent, var(--alcs-orange));
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.alcs-single__categories-pills {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding: 2px 0 4px;
	gap: 8px;
	scrollbar-width: thin;
}

.alcs-single__category-pill {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 6px 12px;
	border: 1px solid rgba(248, 89, 3, 0.18);
	border-radius: 999px;
	background: #fff3ec;
	color: var(--alcs-accent, var(--alcs-orange));
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.alcs-single__main-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.32fr);
	align-items: start;
	gap: 48px;
}

.alcs-single__content {
	color: #2f3540;
	font-size: 16px;
	line-height: 1.8;
}

.alcs-single__content p {
	margin: 0 0 18px;
}

.alcs-single__poster-placeholder {
	display: grid;
	width: 100%;
	min-height: 520px;
	place-items: center;
	color: #fff;
	font-size: 24px;
	font-weight: 900;
}

.alcs-single__section--weeks {
	background: #f7f8fa;
}

.alcs-single__weeks {
	display: grid;
	gap: 20px;
}

.alcs-single__week > header span {
	color: var(--alcs-accent, var(--alcs-orange));
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.alcs-single__week > header > strong {
	padding: 10px 16px;
	border-radius: 999px;
	background: #fff1e8;
	color: var(--alcs-accent, var(--alcs-orange));
}

.alcs-single__schedule {
	overflow-x: auto;
	padding: 24px;
	-webkit-overflow-scrolling: touch;
}

.alcs-single__schedule table {
	width: 100% !important;
	min-width: 680px;
}

.alcs-single__section--registration {
	background: linear-gradient(180deg, #fff7f2, #fff);
}

.alcs-single__helloasso {
	overflow: hidden;
	border: 1px solid var(--alcs-border);
	border-radius: 22px;
	background: #fff;
	box-shadow: var(--alcs-shadow);
}

.alcs-single__helloasso iframe {
	display: block;
	width: 100%;
	height: 1050px;
	min-height: 600px;
	border: 0;
	background: #fff;
	transition: height 0.25s ease;
}

.alcs-single__registration-closed strong {
	display: block;
	color: #d9362b;
	font-size: 24px;
}

.alcs-single__registration-closed p {
	margin: 10px 0 0;
	color: var(--alcs-muted);
}

.alcs-single__section--contact {
	padding-top: 46px;
	background: #fff9f5;
}

.alcs-single__contact-button:hover {
	filter: brightness(0.96);
	transform: translateY(-1px);
}

.alcs-showcase {
	padding: 70px 0;
}

.alcs-showcase__intro {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 35px;
	gap: 30px;
}

.alcs-showcase__intro span {
	color: var(--alcs-orange);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.alcs-showcase__intro h2 {
	margin: 7px 0;
	font-size: 44px;
}

.alcs-showcase__intro p {
	margin: 0;
	color: var(--alcs-muted);
}

.alcs-showcase__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.alcs-showcase__card {
	overflow: hidden;
	border: 1px solid #e8e8e8;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.alcs-showcase__card > a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.alcs-showcase__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 320px;
	background: #222;
}

.alcs-showcase__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.alcs-showcase__body {
	padding: 20px;
}

.alcs-showcase__status {
	display: inline-block;
	padding: 6px 10px;
	border-radius: 999px;
	background: #eee;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.alcs-showcase__status--open {
	background: #18884a;
	color: #fff;
}

.alcs-showcase__status--finished, .alcs-showcase__status--cancelled {
	background: #d9362b;
	color: #fff;
}

.alcs-showcase__status--full {
	background: #171717;
	color: #fff;
}

.alcs-showcase__status--preparation {
	background: #fff1df;
	color: #945000;
}

.alcs-showcase__body h3 {
	margin: 12px 0;
	font-size: 22px;
}

.alcs-showcase__body p {
	color: var(--alcs-muted);
	line-height: 1.55;
}

.alcs-showcase__meta {
	display: grid;
	font-size: 13px;
	gap: 8px;
}

.alcs-showcase__categories {
	display: flex;
	flex-wrap: wrap;
	margin-top: 14px;
	gap: 7px;
}

.alcs-showcase__categories span {
	padding: 5px 9px;
	border-radius: 999px;
	background: #fff1e8;
	color: var(--alcs-card-accent, var(--alcs-orange));
	font-size: 11px;
	font-weight: 800;
}

.alcs-showcase__weeks-count {
	display: block;
	margin-top: 14px;
	font-size: 12px;
}

.alcs-showcase__link {
	display: block;
	margin-top: 18px;
	color: var(--alcs-card-accent, var(--alcs-orange));
	font-weight: 900;
}

.alcs-showcase__empty {
	padding: 55px;
	border: 1px dashed #ddd;
	border-radius: 22px;
	background: #f8f9fa;
	text-align: center;
}

.alcs-single__archives-controls {
	display: flex;
	flex: 0 0 auto;
	gap: 10px;
}

.alcs-single__archives-arrow:hover:not(:disabled) {
	background: #ffe4d4;
	transform: translateY(-2px);
}

.alcs-single__archives-arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.alcs-single__archives-carousel {
	overflow: hidden;
}

.alcs-single__archive-editions::-webkit-scrollbar {
	display: none;
}

@media (max-width: 1050px) {
	.alcs-single__archive-editions {
		grid-auto-columns: calc((100% - 44px) / 3);
	}
}

@media (max-width: 780px) {
	.alcs-single__archives-panel {
		padding: 24px 18px;
	}

	.alcs-single__section-heading--archives {
		align-items: flex-start;
		flex-direction: column;
	}

	.alcs-single__archives-controls {
		align-self: flex-end;
	}

	.alcs-single__archive-editions {
		grid-auto-columns: calc((100% - 20px) / 2);
		gap: 20px;
	}
}

@media (max-width: 520px) {
	.alcs-single__archives-panel {
		padding: 20px 14px;
		border-radius: 20px;
	}

	.alcs-single__archive-editions {
		grid-auto-columns: 84%;
		gap: 14px;
	}
}

.alcs-single__edition-info h2 {
	max-width: none;
	margin: 8px 0 22px;
	font-size: clamp(26px, 2.1vw, 34px);
	line-height: 1.08;
	word-break: normal;
	overflow-wrap: normal;
	hyphens: none;
}

.alcs-single__archive-edition > a {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.alcs-single__archive-edition-visual img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.alcs-single__archive-edition-visual span {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	font-size: 48px;
}

.alcs-single__archive-edition-body > span {
	color: var(--alcs-accent, var(--alcs-orange));
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.alcs-single__archive-edition-body small {
	display: block;
	color: var(--alcs-muted);
}

.alcs-single__archive-editions:has(.alcs-single__archive-edition:only-child) {
	display: flex;
	justify-content: center;
	overflow-x: visible;
}

.alcs-single__archive-edition:only-child {
	flex: 0 0 280px;
	width: 280px;
}

.alcs-single__contact-button, .alcs-single__contact-button--mail {
	border-color: var(--alcs-accent, var(--alcs-orange));
	background: var(--alcs-accent, var(--alcs-orange));
	color: #fff;
}

@media (max-width: 980px) {
	.alcs-single__hero-grid, .alcs-single__main-grid {
		grid-template-columns: 1fr;
	}

	.alcs-single__hero-logo {
		width: 300px;
	}

	.alcs-single__main-grid {
		gap: 42px;
	}

	.alcs-single__contact-card {
		grid-template-columns: 1fr;
	}

	.alcs-single__archive-gallery {
		grid-template-columns: 1fr;
	}

	.alcs-single__edition-card {
		max-width: 760px;
		grid-template-columns: 1fr;
	}

	.alcs-single__edition-info h2 {
		font-size: 32px;
	}
}

@media (max-width: 680px) {
	.alcs-single__container, .alcs-container {
		width: min(100% - 24px, 1180px);
	}

	.alcs-single__section {
		padding: 52px 0;
	}

	.alcs-single__hero {
		min-height: 0;
		padding: 56px 0 82px;
	}

	.alcs-single__hero-grid {
		gap: 34px;
	}

	.alcs-single__hero-copy h1 {
		font-size: 40px;
	}

	.alcs-single__hero-logo {
		width: 190px;
		padding: 14px;
	}

	.alcs-single__categories-strip {
		margin-top: -34px;
	}

	.alcs-single__categories-card {
		padding: 12px 14px 14px;
	}

	.alcs-single__categories-pills {
		justify-content: flex-start;
	}

	.alcs-single__edition-card {
		grid-template-columns: 1fr;
	}

	.alcs-single__edition-poster img {
		max-height: none;
		aspect-ratio: auto;
	}

	.alcs-single__poster-placeholder {
		min-height: 420px;
	}

	.alcs-single__edition-info {
		padding: 24px 20px;
	}

	.alcs-single__week > header {
		align-items: flex-start;
		flex-direction: column;
	}

	.alcs-single__contact-card {
		padding: 28px 20px;
	}

	.alcs-single__helloasso iframe {
		min-height: 1100px;
	}

	.alcs-single__archive-editions {
		grid-auto-columns: 82vw;
	}

	.alcs-single__archive-edition-visual {
		height: 400px;
	}

	.alcs-showcase__intro {
		display: block;
	}

	.alcs-showcase__intro strong {
		display: block;
		margin-top: 15px;
	}

	.alcs-single__edition-poster {
		padding: 12px;
		min-height: 0;
	}

	.alcs-single__edition-info h2 {
		font-size: 28px;
	}

	.alcs-single__archive-edition:only-child {
		flex-basis: min(84vw, 300px);
		width: min(84vw, 300px);
	}
}

.alcs-single {
	--alcs-text: #292929;
	--alcs-muted: #707070;
	--alcs-white: #ffffff;
	--alcs-soft: #f7f7f7;
	--alcs-border: #e7e7e7;
	--alcs-radius: 18px;
	--alcs-radius-large: 26px;
	--alcs-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
	color: var(--alcs-text);
}

.alcs-single__hero-copy h1 {
	max-width: 730px;
	overflow-wrap: anywhere;
	margin: 0 0 20px;
	color: #fff;
	font-size: clamp(42px, 5.4vw, 72px);
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 0.92;
	margin-bottom: 0;
}

.alcs-single__section--presentation, .alcs-single__section--weeks, .alcs-single__section--registration, .alcs-single__section--contact, .alcs-single__section--archives {
	padding: 24px 0 0;
	background: #f5f6f7;
}

.alcs-single__section--archives {
	background: #f6f7f9;
	padding-bottom: 70px;
}

.alcs-single__panel, .alcs-single__contact-card, .alcs-single__archives-panel {
	margin: 0;
	padding: 30px;
	border: 1px solid var(--alcs-border);
	border-radius: var(--alcs-radius-large);
	background: var(--alcs-white);
	box-shadow: var(--alcs-shadow);
}

.alcs-single__panel-heading, .alcs-single__section-heading--archives {
	margin: 0 0 22px;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--alcs-border);
}

.alcs-single__panel-kicker, .alcs-single__card-label, .alcs-single__section-heading--archives .alcs-single__eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	margin: 0;
	padding: 7px 11px;
	border-radius: 999px;
	background: color-mix(
		in srgb,
		var(--alcs-accent, var(--alcs-orange)) 10%,
		#fff
	);
	color: color-mix(
		in srgb,
		var(--alcs-accent, var(--alcs-orange)) 78%,
		#000
	);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.07em;
	line-height: 1;
	text-transform: uppercase;
}

.alcs-single__panel-heading h2, .alcs-single__section-heading--archives h2 {
	margin: 10px 0 0;
	color: var(--alcs-accent, var(--alcs-orange));
	font-family: Georgia, serif;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1.1;
}

.alcs-single__section-heading--archives {
	max-width: none;
	margin-bottom: 26px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.alcs-single__section-heading--archives > div {
	max-width: 760px;
}

.alcs-single__section-heading--archives p {
	margin: 12px 0 0;
	color: var(--alcs-muted);
	font-size: 14px;
	line-height: 1.6;
}

.alcs-single__panel-divider {
	display: none;
}

.alcs-single__panel--presentation .alcs-single__main-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.38fr);
	align-items: stretch;
	gap: 18px;
}

.alcs-single__about-card, .alcs-single__edition-card {
	height: 100%;
	min-height: 0;
	border: 1px solid var(--alcs-border);
	border-radius: var(--alcs-radius);
	background: linear-gradient(
			145deg,
			color-mix(
				in srgb,
				var(--alcs-accent, var(--alcs-orange)) 5%,
				#fff
			),
			#fff
		);
	box-shadow: none;
}

.alcs-single__about-card {
	border: 1px solid var(--alcs-border);
	border-radius: 22px;
	background: linear-gradient(180deg, #fff, #fffaf7);
	box-shadow: 0 14px 38px rgba(31, 24, 20, 0.07);
	display: flex;
	flex-direction: column;
	padding: 20px;
}

.alcs-single__about-card::before {
	width: 54px;
	height: 5px;
	margin-bottom: 22px;
	border-radius: 999px;
	background: var(--alcs-accent, var(--alcs-orange));
	display: none;
	content: none;
}

.alcs-single__about-card .alcs-single__content {
	margin-top: 18px;
	color: var(--alcs-text);
	font-size: 15px;
	line-height: 1.75;
}

.alcs-single__edition-card {
	border: 1px solid var(--alcs-border);
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--alcs-shadow);
	display: grid;
	grid-template-columns: minmax(220px, 0.92fr) minmax(250px, 1.08fr);
	overflow: hidden;
}

.alcs-single__edition-poster {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 500px;
	padding: 16px;
	background: var(--alcs-soft);
}

.alcs-single__edition-poster img {
	width: 100%;
	height: 100%;
	max-height: 570px;
	object-fit: contain;
}

.alcs-single__edition-info {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 20px;
}

.alcs-single__status {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	margin-bottom: 16px;
	color: #fff;
	font-weight: 950;
	letter-spacing: 0.03em;
	text-align: center;
	text-transform: uppercase;
	white-space: normal;
	align-self: flex-start;
	min-height: 34px;
	margin: 0 0 15px;
	padding: 8px 11px;
	border: 0;
	border-radius: 999px;
	font-size: 9px;
	line-height: 1;
}

.alcs-single__status--open {
	background: #dcfce7;
	color: #166534;
}

.alcs-single__status--closed, .alcs-single__status--finished, .alcs-single__status--cancelled {
	background: #fee2e2;
	color: #b91c1c;
}

.alcs-single__status--full {
	background: #fef3c7;
	color: #92400e;
}

.alcs-single__status--preparation {
	background: color-mix(
		in srgb,
		var(--alcs-accent, var(--alcs-orange)) 11%,
		#fff
	);
	color: color-mix(
		in srgb,
		var(--alcs-accent, var(--alcs-orange)) 78%,
		#000
	);
}

.alcs-single__edition-info > .alcs-single__eyebrow {
	margin: 0;
	font-size: 10px;
}

.alcs-single__edition-year {
	display: block;
	margin: 5px 0 18px;
	color: var(--alcs-accent, var(--alcs-orange));
	font-size: clamp(52px, 5vw, 70px);
	font-weight: 950;
	letter-spacing: -0.045em;
	line-height: 0.9;
}

.alcs-single__edition-facts {
	display: grid;
	margin: 0;
	padding: 0;
	gap: 9px;
	list-style: none;
}

.alcs-single__edition-facts li {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	align-items: center;
	min-height: 48px;
	padding: 7px 11px;
	border: 1px solid var(--alcs-border);
	border-radius: 12px;
	background: var(--alcs-white);
	gap: 9px;
}

.alcs-single__edition-facts li > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: color-mix(
		in srgb,
		var(--alcs-accent, var(--alcs-orange)) 10%,
		#fff
	);
	font-size: 15px;
}

.alcs-single__edition-facts strong {
	overflow-wrap: anywhere;
	color: var(--alcs-black);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.35;
}

.alcs-single__edition-note {
	overflow-wrap: anywhere;
	margin: auto 0 0;
	padding: 12px 13px;
	border: 1px solid rgba(185, 28, 28, 0.14);
	border-radius: 11px;
	background: #fff1f2;
	color: #9f1239;
	font-size: 11px;
	line-height: 1.45;
}

.alcs-single__section--weeks > .alcs-single__container {
	padding: 30px;
	border: 1px solid var(--alcs-border);
	border-radius: var(--alcs-radius-large);
	background: var(--alcs-white);
	box-shadow: var(--alcs-shadow);
}

.alcs-single__section--weeks .alcs-single__section-heading {
	margin: 0 0 22px;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--alcs-border);
}

.alcs-single__section--weeks .alcs-single__section-heading .alcs-single__eyebrow {
	display: inline-flex;
	margin: 0;
	padding: 7px 11px;
	border-radius: 999px;
	background: color-mix(
		in srgb,
		var(--alcs-accent, var(--alcs-orange)) 10%,
		#fff
	);
}

.alcs-single__section--weeks .alcs-single__section-heading h2 {
	margin: 10px 0 0;
	color: var(--alcs-accent, var(--alcs-orange));
	font-size: clamp(30px, 4vw, 44px);
}

.alcs-single__week {
	overflow: hidden;
	border: 1px solid var(--alcs-border);
	border-radius: var(--alcs-radius);
	background: var(--alcs-white);
	box-shadow: none;
}

.alcs-single__week > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #eee;
	gap: 20px;
	padding: 18px 20px;
	background: linear-gradient(
			135deg,
			color-mix(
				in srgb,
				var(--alcs-accent, var(--alcs-orange)) 8%,
				#fff
			),
			#fff
		);
}

.alcs-single__week h3 {
	margin: 5px 0 0;
	font-size: 21px;
}

.alcs-single__panel--registration .alcs-single__registration-closed, .alcs-single__panel--registration .alcs-single__helloasso {
	box-shadow: none;
}

.alcs-single__registration-closed {
	padding: 34px;
	border: 1px solid rgba(217, 54, 43, 0.25);
	background: #fff;
	box-shadow: var(--alcs-shadow);
	text-align: center;
	border-radius: var(--alcs-radius);
}

.alcs-single__contact-card {
	padding: 38px 44px;
	border: 1px solid rgba(248, 89, 3, 0.25);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 15px 40px rgba(248, 89, 3, 0.07);
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
	align-items: center;
	gap: 30px;
}

.alcs-single__contact-card .alcs-single__eyebrow {
	display: inline-flex;
	margin: 0;
	padding: 7px 11px;
	border-radius: 999px;
	background: color-mix(
		in srgb,
		var(--alcs-accent, var(--alcs-orange)) 10%,
		#fff
	);
	font-size: 10px;
}

.alcs-single__contact-card h2 {
	margin: 10px 0 0;
	color: var(--alcs-accent, var(--alcs-orange));
	font-family: Georgia, serif;
	font-size: clamp(30px, 4vw, 42px);
}

.alcs-single__contact-card p {
	max-width: 620px;
	color: var(--alcs-muted);
	line-height: 1.6;
	margin: 12px 0 0;
	font-size: 14px;
}

.alcs-single__contact-actions {
	grid-template-columns: 1fr;
	display: grid;
	gap: 10px;
}

.alcs-single__contact-button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border: 1px solid var(--alcs-accent, var(--alcs-orange));
	background: var(--alcs-accent, var(--alcs-orange));
	box-shadow: 0 8px 25px rgba(248, 89, 3, 0.18);
	color: #fff;
	text-decoration: none;
	gap: 12px;
	min-height: 46px;
	border-radius: 12px;
	font-size: 13px;
}

.alcs-single__archives-panel {
	padding: 34px;
	border: 1px solid #e5e7eb;
	border-radius: 26px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
	overflow: hidden;
}

.alcs-single__archive-editions {
	display: grid;
	grid-auto-flow: column;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	grid-auto-columns: calc((100% - 54px) / 4);
	gap: 18px;
	padding: 0 1px 10px;
}

.alcs-single__archive-edition {
	min-width: 0;
	overflow: hidden;
	scroll-snap-align: start;
	transition: transform 0.22s ease,
		box-shadow 0.22s ease,
		border-color 0.22s ease;
	border: 1px solid var(--alcs-border);
	border-radius: 17px;
	background: var(--alcs-soft);
	box-shadow: none;
}

.alcs-single__archive-edition:hover {
	border-color: color-mix(
		in srgb,
		var(--alcs-accent, var(--alcs-orange)) 45%,
		#ddd
	);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
}

.alcs-single__archive-edition-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 300px;
	padding: 12px;
	background: var(--alcs-soft);
}

.alcs-single__archive-edition-body {
	padding: 15px;
	background: var(--alcs-white);
}

.alcs-single__archive-edition-body h3 {
	color: var(--alcs-black);
	line-height: 1.18;
	margin: 8px 0 10px;
	font-size: 16px;
}

.alcs-single__archive-edition-body strong {
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	margin-top: 14px;
	padding: 0 12px;
	border-radius: 12px;
	background: var(--alcs-accent, var(--alcs-orange));
	color: #fff;
	font-size: 11px;
}

.alcs-single__archives-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(248, 89, 3, 0.22);
	color: var(--alcs-accent, var(--alcs-orange));
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease,
		background-color 0.2s ease,
		opacity 0.2s ease;
	width: 38px;
	height: 38px;
	border-color: var(--alcs-border);
	border-radius: 12px;
	background: var(--alcs-white);
}

@media only screen and (max-width: 520px) {
	.alcs-single__panel, .alcs-single__contact-card, .alcs-single__archives-panel, .alcs-single__section--weeks > .alcs-single__container {
		padding: 18px;
	}

	.alcs-single__panel-heading h2, .alcs-single__section-heading--archives h2, .alcs-single__section--weeks .alcs-single__section-heading h2 {
		font-size: 31px;
	}

	.alcs-single__section-heading--archives {
		align-items: flex-start;
		flex-direction: column;
	}

	.alcs-single__archives-controls {
		align-self: flex-end;
	}

	.alcs-single__archive-editions {
		grid-auto-columns: 84%;
	}
}

.alcs-edition {
	--alcs-black: #171717;
	--alcs-text: #292929;
	--alcs-muted: #707070;
	--alcs-white: #ffffff;
	--alcs-soft: #f7f7f7;
	--alcs-border: #e7e7e7;
	--alcs-radius: 18px;
	--alcs-radius-large: 26px;
	--alcs-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
	overflow-x: clip;
	color: var(--alcs-text);
}

.alcs-edition, .alcs-edition * {
	box-sizing: border-box;
}

.alcs-edition img {
	display: block;
	max-width: 100%;
}

.alcs-edition__container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.alcs-edition__hero {
	position: relative;
	overflow: hidden;
	padding: 52px 0 68px;
	background: radial-gradient(
			circle at 88% 20%,
			rgba(255, 255, 255, 0.18),
			transparent 24%
		),
		linear-gradient(
			135deg,
			var(--alcs-accent),
			color-mix(
				in srgb,
				var(--alcs-accent) 72%,
				#000
			)
		);
	color: var(--alcs-white);
}

.alcs-edition__hero::after {
	position: absolute;
	right: -80px;
	bottom: -120px;
	width: 320px;
	height: 320px;
	border: 48px solid rgba(255, 255, 255, 0.07);
	border-radius: 82px;
	content: "";
	transform: rotate(24deg);
}

.alcs-edition__hero .alcs-edition__container {
	position: relative;
	z-index: 1;
}

.alcs-edition__back {
	display: inline-flex;
	align-items: center;
	margin-bottom: 26px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	gap: 8px;
}

.alcs-edition__back:hover {
	color: var(--alcs-white);
}

.alcs-edition__hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 190px;
	align-items: center;
	gap: 36px;
}

.alcs-edition__hero-content {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	min-width: 0;
	gap: 28px;
}

.alcs-edition__eyebrow, .alcs-edition__section-heading > span, .alcs-edition__summary-label {
	display: inline-flex;
	align-items: center;
	padding: 7px 11px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.alcs-edition__eyebrow {
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.13);
	color: var(--alcs-white);
}

.alcs-edition__hero h1 {
	max-width: 800px;
	margin: 12px 0 10px;
	color: var(--alcs-white);
	font-size: clamp(34px, 6vw, 62px);
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.alcs-edition__hero p {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
	line-height: 1.65;
}

.alcs-edition__status {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	padding: 10px 13px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.alcs-edition__status--open {
	background: #dcfce7;
	color: #166534;
}

.alcs-edition__status--full {
	background: #fef3c7;
	color: #92400e;
}

.alcs-edition__status--finished {
	background: #e5e7eb;
	color: #4b5563;
}

.alcs-edition__status--cancelled {
	background: #fee2e2;
	color: #b91c1c;
}

.alcs-edition__status--preparation {
	background: color-mix(
		in srgb,
		var(--alcs-accent) 11%,
		#fff
	);
	color: color-mix(
		in srgb,
		var(--alcs-accent) 78%,
		#000
	);
}

.alcs-edition__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 190px;
	height: 190px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.13);
}

.alcs-edition__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.alcs-edition__content {
	position: relative;
	z-index: 2;
	margin-top: -30px;
	padding-bottom: 70px;
	background: #f5f6f7;
}

.alcs-edition__facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-bottom: 24px;
	gap: 14px;
}

.alcs-edition__fact {
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 18px;
	border: 1px solid var(--alcs-border);
	border-radius: var(--alcs-radius);
	background: var(--alcs-white);
	box-shadow: var(--alcs-shadow);
	gap: 13px;
}

.alcs-edition__fact-icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 13px;
	background: color-mix(
		in srgb,
		var(--alcs-accent) 11%,
		#fff
	);
	font-size: 21px;
}

.alcs-edition__fact div {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.alcs-edition__fact div > span {
	color: var(--alcs-muted);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.alcs-edition__fact strong {
	margin-top: 3px;
	color: var(--alcs-black);
	font-size: 14px;
	font-weight: 900;
	line-height: 1.3;
}

.alcs-edition__section {
	margin-top: 24px;
	padding: 30px;
	border: 1px solid var(--alcs-border);
	border-radius: var(--alcs-radius-large);
	background: var(--alcs-white);
	box-shadow: var(--alcs-shadow);
}

.alcs-edition__section-heading {
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--alcs-border);
}

.alcs-edition__section-heading > span, .alcs-edition__summary-label {
	background: color-mix(
		in srgb,
		var(--alcs-accent) 10%,
		#fff
	);
	color: color-mix(
		in srgb,
		var(--alcs-accent) 78%,
		#000
	);
}

.alcs-edition__section-heading h2 {
	margin: 10px 0 0;
	color: var(--alcs-black);
	font-size: clamp(24px, 4vw, 33px);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.alcs-edition__spotlight {
	display: grid;
	grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
	align-items: center;
	padding: 20px;
	border: 1px solid var(--alcs-border);
	border-radius: 18px;
	background: linear-gradient(
			145deg,
			color-mix(
				in srgb,
				var(--alcs-accent) 5%,
				#fff
			),
			#fff
		);
	gap: 28px;
}

.alcs-edition__poster {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 430px;
	padding: 14px;
	border-radius: 17px;
	background: var(--alcs-soft);
}

.alcs-edition__poster a {
	display: block;
	width: 100%;
}

.alcs-edition__poster img {
	width: 100%;
	max-height: 560px;
	object-fit: contain;
}

.alcs-edition__poster-empty {
	display: grid;
	min-height: 400px;
	place-items: center;
	color: var(--alcs-muted);
	text-align: center;
}

.alcs-edition__poster-empty span {
	font-size: 44px;
}

.alcs-edition__summary {
	min-width: 0;
}

.alcs-edition__summary h3 {
	margin: 13px 0 0;
	color: var(--alcs-black);
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.alcs-edition__summary-date {
	margin: 12px 0 0;
	color: var(--alcs-muted);
	font-size: 14px;
	font-weight: 700;
}

.alcs-edition__summary > p:last-child {
	max-width: 620px;
	margin: 20px 0 0;
	color: var(--alcs-muted);
	font-size: 14px;
	line-height: 1.65;
}

.alcs-edition__categories {
	display: flex;
	flex-wrap: wrap;
	margin-top: 16px;
	gap: 8px;
}

.alcs-edition__categories span {
	display: inline-flex;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--alcs-white);
	color: var(--alcs-accent);
	font-size: 10px;
	font-weight: 900;
}

.alcs-edition__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.alcs-edition__photo {
	overflow: hidden;
	margin: 0;
	border: 1px solid var(--alcs-border);
	border-radius: 17px;
	background: var(--alcs-white);
	transition: transform 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease;
}

.alcs-edition__photo:hover {
	border-color: color-mix(
		in srgb,
		var(--alcs-accent) 45%,
		#ddd
	);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
}

.alcs-edition__photo a {
	display: block;
	overflow: hidden;
	background: var(--alcs-soft);
}

.alcs-edition__photo img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.alcs-edition__photo:hover img {
	transform: scale(1.025);
}

.alcs-edition__empty {
	padding: 42px 24px;
	border: 2px dashed color-mix(
		in srgb,
		var(--alcs-accent) 32%,
		#ddd
	);
	border-radius: 18px;
	background: color-mix(
		in srgb,
		var(--alcs-accent) 5%,
		#fff
	);
	text-align: center;
}

.alcs-edition__empty span {
	display: block;
	font-size: 42px;
}

.alcs-edition__empty h3 {
	margin: 12px 0 0;
	color: var(--alcs-black);
	font-size: 23px;
	font-weight: 900;
}

.alcs-edition__empty p {
	max-width: 520px;
	margin: 10px auto 0;
	color: var(--alcs-muted);
	font-size: 14px;
	line-height: 1.6;
}

@media only screen and (max-width: 980px) {
	.alcs-single__panel--presentation .alcs-single__main-grid {
		grid-template-columns: 1fr;
	}

	.alcs-single__edition-card {
		grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
	}

	.alcs-single__archive-editions {
		grid-auto-columns: calc((100% - 36px) / 3);
	}

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

	.alcs-edition__hero-layout {
		grid-template-columns: minmax(0, 1fr) 160px;
	}

	.alcs-edition__logo {
		width: 160px;
		height: 160px;
	}
}

@media only screen and (max-width: 760px) {
	.alcs-single__container, .alcs-container {
		width: min(100% - 24px, 1180px);
	}

	.alcs-single__panel, .alcs-single__contact-card, .alcs-single__archives-panel, .alcs-single__section--weeks > .alcs-single__container {
		padding: 22px;
		border-radius: 20px;
	}

	.alcs-single__edition-card {
		grid-template-columns: 1fr;
	}

	.alcs-single__edition-poster {
		min-height: 0;
	}

	.alcs-single__contact-card {
		grid-template-columns: 1fr;
	}

	.alcs-single__archive-editions {
		grid-auto-columns: calc((100% - 16px) / 2);
		gap: 16px;
	}

	.alcs-edition__container {
		width: min(100% - 24px, 1180px);
	}

	.alcs-edition__hero {
		padding: 38px 0 58px;
	}

	.alcs-edition__hero-layout, .alcs-edition__spotlight {
		grid-template-columns: 1fr;
	}

	.alcs-edition__hero-content {
		align-items: flex-start;
		flex-direction: column;
	}

	.alcs-edition__logo {
		width: 150px;
		height: 150px;
	}

	.alcs-edition__content {
		margin-top: -22px;
	}

	.alcs-edition__section {
		padding: 22px;
		border-radius: 20px;
	}

	.alcs-edition__poster {
		min-height: 0;
	}

	.alcs-edition__gallery {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 560px) {
	.alcs-edition__facts {
		grid-template-columns: 1fr;
	}

	.alcs-edition__fact {
		padding: 16px;
	}

	.alcs-edition__section {
		padding: 18px;
	}

	.alcs-edition__spotlight {
		padding: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.alcs-edition__photo, .alcs-edition__photo img {
		transition: none;
	}

	.alcs-edition__photo:hover, .alcs-edition__photo:hover img {
		transform: none;
	}
}

.alcs-single__categories-strip {
	position: relative;
	z-index: 5;
	margin-top: -96px;
	margin-bottom: 18px;
}

.alcs-single__section--presentation {
	padding-top: 24px;
}

@media only screen and (max-width: 680px) {
	.alcs-single__categories-strip {
		margin-top: -72px;
		margin-bottom: 14px;
	}
}

/* ======================================================
   INTÉGRATION FINALE DU BANDEAU CATÉGORIES
====================================================== */

/*
 * La section appartient visuellement au fond gris.
 * La carte remonte ensuite sur le bas du hero.
 * Cela supprime toute bande blanche entre les deux zones.
 */
.alcs-single__categories-strip {
	position: relative;
	z-index: 5;
	margin: 0;
	padding: 0 0 20px;
	background: #f5f6f7;
}

.alcs-single__categories-strip .alcs-single__container {
	transform: translateY(-42px);
	margin-bottom: -42px;
}

.alcs-single__categories-card {
	padding: 11px 18px 13px;
	border: 1px solid rgba(248, 89, 3, 0.18);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow:
		0 16px 38px rgba(17, 24, 39, 0.10),
		0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.alcs-single__categories-title {
	margin-bottom: 7px;
	font-size: 9px;
}

.alcs-single__categories-pills {
	padding: 0;
	gap: 7px;
}

.alcs-single__category-pill {
	min-height: 28px;
	padding: 5px 11px;
	font-size: 11px;
}

/*
 * Le premier panneau commence directement après le bandeau,
 * sur le même fond gris.
 */
.alcs-single__section--presentation {
	margin-top: 0;
	padding-top: 22px;
	background: #f5f6f7;
}

@media only screen and (max-width: 680px) {

	.alcs-single__categories-strip {
		padding-bottom: 15px;
	}

	.alcs-single__categories-strip .alcs-single__container {
		transform: translateY(-30px);
		margin-bottom: -30px;
	}

	.alcs-single__categories-card {
		padding: 10px 12px 12px;
		border-radius: 17px;
	}

	.alcs-single__categories-pills {
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 2px;
	}
}

/* ======================================================
   BANDEAU DES INFORMATIONS — PAGE ÉDITION
====================================================== */

/*
 * Le bandeau reprend le principe du bandeau des catégories :
 * carte blanche centrée, chevauchant le bas du hero et le fond gris.
 */
.alcs-edition__content {
	margin-top: 0;
	padding-top: 0;
	background: #f5f6f7;
}

.alcs-edition__content > .alcs-edition__container {
	position: relative;
}

.alcs-edition__facts {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	margin: 0 0 24px;
	padding: 11px 16px;
	border: 1px solid rgba(248, 89, 3, 0.18);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow:
		0 16px 38px rgba(17, 24, 39, 0.10),
		0 1px 0 rgba(255, 255, 255, 0.8) inset;
	transform: translateY(-34px);
	gap: 0;
}

.alcs-edition__facts + .alcs-edition__section {
	margin-top: -10px;
}

.alcs-edition__fact {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 62px;
	padding: 8px 18px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	gap: 11px;
}

.alcs-edition__fact:not(:last-child)::after {
	position: absolute;
	top: 13px;
	right: 0;
	bottom: 13px;
	width: 1px;
	background: var(--alcs-border);
	content: "";
}

.alcs-edition__fact-icon {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: color-mix(
		in srgb,
		var(--alcs-accent) 10%,
		#fff
	);
	font-size: 18px;
}

.alcs-edition__fact div {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.alcs-edition__fact div > span {
	color: var(--alcs-muted);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.alcs-edition__fact strong {
	margin-top: 4px;
	color: var(--alcs-black);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.3;
	white-space: normal;
}

/* Le hero garde assez de place pour que le bandeau ne recouvre rien. */
.alcs-edition__hero {
	padding-bottom: 80px;
}

@media only screen and (max-width: 980px) {

	.alcs-edition__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 10px 14px;
	}

	.alcs-edition__fact:nth-child(2)::after {
		display: none;
	}

	.alcs-edition__fact:nth-child(-n + 2) {
		border-bottom: 1px solid var(--alcs-border);
	}
}

@media only screen and (max-width: 620px) {

	.alcs-edition__hero {
		padding-bottom: 62px;
	}

	.alcs-edition__facts {
		grid-template-columns: 1fr;
		padding: 8px 14px;
		border-radius: 17px;
		transform: translateY(-26px);
	}

	.alcs-edition__facts + .alcs-edition__section {
		margin-top: -4px;
	}

	.alcs-edition__fact {
		justify-content: flex-start;
		min-height: 56px;
		padding: 8px 4px;
	}

	.alcs-edition__fact::after {
		display: none;
	}

	.alcs-edition__fact:not(:last-child) {
		border-bottom: 1px solid var(--alcs-border);
	}
}

.alcs-edition__back,
.alcs-edition__back:hover,
.alcs-edition__back:focus {
	text-decoration: none;
	background: rgba(255,255,255,.14);
	color: #fff;
}

.alcs-edition__back:hover {
	background: rgba(255,255,255,.24);
	border-color: rgba(255,255,255,.45);
	transform: translateY(-2px);
}

.alcs-single a,
.alcs-single a:hover,
.alcs-single a:focus,
.alcs-edition a,
.alcs-edition a:hover,
.alcs-edition a:focus {
	text-decoration: none;
}

/* ======================================================
   CORRECTION FINALE — BOUTONS RETOUR ET LIENS
====================================================== */

/*
 * Même comportement sur les pages Stage et Édition :
 * fond translucide, texte blanc, aucun passage sur fond blanc.
 */
.alcs-single__back-stages,
.alcs-edition__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: 100%;
	min-height: 40px;
	margin: 0 0 26px;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.11);
	color: #fff;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none !important;
	gap: 8px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition:
		background-color 0.18s ease,
		border-color 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.alcs-single__back-stages:hover,
.alcs-single__back-stages:focus,
.alcs-single__back-stages:focus-visible,
.alcs-edition__back:hover,
.alcs-edition__back:focus,
.alcs-edition__back:focus-visible {
	border-color: rgba(255, 255, 255, 0.58);
	background: rgba(255, 255, 255, 0.20);
	color: #fff;
	text-decoration: none !important;
	transform: translateY(-1px);
	outline: none;
}

/* Aucun soulignage sur les liens du plugin. */
.alcs-single a,
.alcs-single a:hover,
.alcs-single a:focus,
.alcs-single a:focus-visible,
.alcs-showcase a,
.alcs-showcase a:hover,
.alcs-showcase a:focus,
.alcs-showcase a:focus-visible,
.alcs-edition a,
.alcs-edition a:hover,
.alcs-edition a:focus,
.alcs-edition a:focus-visible {
	text-decoration: none !important;
}

/* ======================================================
   VITRINE NOS STAGES — VERSION FINALE À HAUTEUR FIXE
====================================================== */

.alcs-showcase {
	--alcs-showcase-black: #171717;
	--alcs-showcase-muted: #707070;
	--alcs-showcase-border: #e7e7e7;
	--alcs-showcase-soft: #f7f7f7;

	padding: 0;
	background: #ffffff;
	color: #292929;
}

.alcs-showcase,
.alcs-showcase * {
	box-sizing: border-box;
}

.alcs-showcase__content {
	padding: 36px 0 50px;
}

.alcs-showcase__intro-block {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 26px;
	gap: 28px;
}

.alcs-showcase__intro-copy {
	max-width: 760px;
}

.alcs-showcase__intro-eyebrow {
	display: block;
	margin-bottom: 8px;
	color: #f85903;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.alcs-showcase__intro-copy h2 {
	margin: 0;
	color: #171717;
	font-family: inherit;
	font-size: clamp(25px, 3vw, 35px);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1.08;
}

.alcs-showcase__intro-copy p {
	margin: 10px 0 0;
	color: #6f6f6f;
	font-size: 14px;
	line-height: 1.6;
}

.alcs-showcase__counter {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	padding: 8px 13px 8px 8px;
	border: 1px solid #f2d7c9;
	border-radius: 999px;
	background: #fff6f1;
	gap: 9px;
}

.alcs-showcase__counter-number {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	padding-inline: 7px;
	border-radius: 999px;
	background: #f85903;
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
}

.alcs-showcase__counter-label {
	color: #4b4b4b;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .04em;
	text-transform: uppercase;
}

/* 4 / 3 / 2 / 1 colonnes selon l'écran */
.alcs-showcase__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 16px;
}

.alcs-showcase__card {
	overflow: hidden;
	height: 500px;
	min-width: 0;
	border: 1px solid var(--alcs-showcase-border);
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .065);
	transition:
		transform .18s ease,
		border-color .18s ease,
		box-shadow .18s ease;
}

.alcs-showcase__card:hover {
	border-color: color-mix(
		in srgb,
		var(--alcs-card-accent) 38%,
		#dddddd
	);
	box-shadow: 0 15px 32px rgba(0, 0, 0, .09);
	transform: translateY(-3px);
}

.alcs-showcase__card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none !important;
}

.alcs-showcase__visual {
	position: relative;
	display: flex;
	flex: 0 0 140px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: 140px;
	padding: 18px;
	background:
		linear-gradient(
			145deg,
			color-mix(in srgb, var(--alcs-card-accent) 12%, #ffffff),
			color-mix(in srgb, var(--alcs-card-accent) 4%, #ffffff)
		);
}

.alcs-showcase__visual-decoration {
	position: absolute;
	right: -34px;
	bottom: -44px;
	width: 102px;
	height: 102px;
	border: 15px solid color-mix(
		in srgb,
		var(--alcs-card-accent) 9%,
		transparent
	);
	border-radius: 28px;
	transform: rotate(24deg);
}

.alcs-showcase__visual img {
	position: relative;
	z-index: 1;
	width: 102px;
	height: 102px;
	object-fit: contain;
	filter: drop-shadow(0 7px 15px rgba(0, 0, 0, .11));
}

.alcs-showcase__visual > span {
	position: relative;
	z-index: 1;
	font-size: 48px;
}

.alcs-showcase__card-body {
	display: grid;
	flex: 1 1 auto;
	grid-template-rows:
		62px
		118px
		104px
		44px;
	min-height: 0;
	padding: 16px;
	gap: 10px;
}

.alcs-showcase__card-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 8px;
	min-width: 0;
}

.alcs-showcase__card-heading h2 {
	display: -webkit-box;
	overflow: hidden;
	margin: 0;
	color: var(--alcs-showcase-black);
	font-family: inherit;
	font-size: 19px;
	font-weight: 900;
	letter-spacing: -.02em;
	line-height: 1.15;
	overflow-wrap: anywhere;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.alcs-showcase__status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 84px;
	min-height: 25px;
	padding: 6px 8px;
	border-radius: 999px;
	background: color-mix(
		in srgb,
		var(--alcs-card-accent) 10%,
		#ffffff
	);
	color: color-mix(
		in srgb,
		var(--alcs-card-accent) 78%,
		#000000
	);
	font-size: 7px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.alcs-showcase__status--open {
	background: #dcfce7;
	color: #166534;
}

.alcs-showcase__status--full {
	background: #fef3c7;
	color: #92400e;
}

.alcs-showcase__details {
	display: contents;
}

.alcs-showcase__detail-block {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	height: 100%;
	padding: 11px;
	border: 1px solid #ececec;
	border-radius: 12px;
	background: #fafafa;
	gap: 7px;
}

.alcs-showcase__detail-block--categories {
	background: color-mix(
		in srgb,
		var(--alcs-card-accent) 4%,
		#ffffff
	);
}

.alcs-showcase__detail-label {
	flex: 0 0 auto;
	color: var(--alcs-card-accent);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .055em;
	line-height: 1.2;
	text-transform: uppercase;
}

.alcs-showcase__categories {
	display: flex;
	overflow: hidden;
	flex-wrap: wrap;
	align-content: flex-start;
	margin: 0;
	gap: 5px;
}

.alcs-showcase__categories span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 7px;
	border: 1px solid color-mix(
		in srgb,
		var(--alcs-card-accent) 16%,
		#ececec
	);
	border-radius: 999px;
	background: #ffffff;
	color: color-mix(
		in srgb,
		var(--alcs-card-accent) 78%,
		#000000
	);
	font-size: 8px;
	font-weight: 900;
	line-height: 1;
}

.alcs-showcase__detail-block--edition strong,
.alcs-showcase__detail-empty {
	display: -webkit-box;
	overflow: hidden;
	color: #171717;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.alcs-showcase__detail-block--edition small {
	display: -webkit-box;
	overflow: hidden;
	color: #777777;
	font-size: 9px;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.alcs-showcase__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	align-self: end;
	height: 44px;
	padding-top: 10px;
	border-top: 1px solid #eeeeee;
	color: var(--alcs-card-accent);
	font-size: 10px;
	font-weight: 900;
	gap: 10px;
}

.alcs-showcase__button > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 29px;
	height: 29px;
	border-radius: 9px;
	background: var(--alcs-card-accent);
	color: #ffffff;
	font-size: 15px;
	transition: transform .18s ease;
}

.alcs-showcase__card:hover .alcs-showcase__button > span {
	transform: translateX(2px);
}

@media only screen and (max-width: 1100px) {

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

@media only screen and (max-width: 820px) {

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

@media only screen and (max-width: 620px) {

	.alcs-showcase__intro-block {
		align-items: flex-start;
		flex-direction: column;
		gap: 15px;
	}

	.alcs-showcase__counter {
		align-self: flex-start;
	}

	.alcs-showcase__grid {
		grid-template-columns: 1fr;
	}

	.alcs-showcase__card {
		height: 500px;
	}
}

/* ======================================================
   CORRECTION FINALE — 2 COLONNES ET TITRES NEUTRES
====================================================== */

.alcs-showcase__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.alcs-showcase__card {
	height: 500px;
}

/*
 * Le titre n’est volontairement plus un h2 :
 * le thème WordPress ne peut donc plus lui imposer
 * sa typographie ni ses dimensions.
 */
.alcs-showcase__card-title {
	display: -webkit-box;
	overflow: hidden;
	min-width: 0;
	margin: 0;
	padding: 0;
	color: var(--alcs-showcase-black);
	font-family: inherit;
	font-size: 24px;
	font-style: normal;
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1.1;
	text-transform: none;
	overflow-wrap: anywhere;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.alcs-showcase__card-title::before,
.alcs-showcase__card-title::after {
	display: none;
	content: none;
}

/* Neutralise l’ancienne règle devenue inutile. */
.alcs-showcase__card-heading h2 {
	display: none !important;
}

@media only screen and (max-width: 760px) {

	.alcs-showcase__grid {
		grid-template-columns: 1fr;
	}

	.alcs-showcase__card {
		height: 500px;
	}
}

/* ======================================================
   CORRECTION HORIZONTALE — 2 CARTES COMME LES TOURNOIS
====================================================== */

.alcs-showcase__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.alcs-showcase__card {
	height: 390px;
	min-height: 390px;
}

.alcs-showcase__card-link {
	display: grid;
	grid-template-columns: 34% minmax(0, 66%);
	height: 100%;
	min-height: 0;
}

/* Visuel latéral, comme sur les cartes Tournois */
.alcs-showcase__visual {
	flex: none;
	width: auto;
	height: 100%;
	min-height: 0;
	padding: 24px;
}

.alcs-showcase__visual img {
	width: min(145px, 100%);
	height: 145px;
}

.alcs-showcase__visual > span {
	font-size: 64px;
}

/* Corps parfaitement cadré */
.alcs-showcase__card-body {
	display: grid;
	grid-template-rows:
		58px
		112px
		96px
		42px;
	height: 100%;
	min-height: 0;
	padding: 22px;
	gap: 10px;
}

/* Plus aucun espace réservé à une description */
.alcs-showcase__description {
	display: none !important;
}

.alcs-showcase__card-heading {
	min-height: 0;
}

.alcs-showcase__card-title {
	font-size: 24px;
	line-height: 1.08;
	-webkit-line-clamp: 2;
}

.alcs-showcase__details {
	display: contents;
}

.alcs-showcase__detail-block {
	min-height: 0;
	height: 100%;
	padding: 12px;
}

.alcs-showcase__detail-block--categories {
	overflow: hidden;
}

.alcs-showcase__categories {
	max-height: 62px;
}

.alcs-showcase__detail-block--edition strong {
	-webkit-line-clamp: 2;
}

.alcs-showcase__button {
	align-self: stretch;
	height: 42px;
	margin: 0;
	padding-top: 10px;
}

/* Le CTA ne peut plus être coupé */
.alcs-showcase__card,
.alcs-showcase__card-link,
.alcs-showcase__card-body {
	overflow: hidden;
}

@media only screen and (max-width: 980px) {

	.alcs-showcase__grid {
		grid-template-columns: 1fr;
	}

	.alcs-showcase__card {
		height: 390px;
		min-height: 390px;
	}
}

@media only screen and (max-width: 640px) {

	.alcs-showcase__card {
		height: auto;
		min-height: 0;
	}

	.alcs-showcase__card-link {
		grid-template-columns: 1fr;
	}

	.alcs-showcase__visual {
		height: 180px;
		min-height: 180px;
	}

	.alcs-showcase__card-body {
		grid-template-rows:
			auto
			minmax(105px, auto)
			minmax(92px, auto)
			42px;
		height: auto;
	}

	.alcs-showcase__card-title {
		font-size: 22px;
	}
}

/* ======================================================
   VITRINE NOS STAGES — CARTES SIMPLES
====================================================== */

.alcs-showcase__simple-intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 28px;
	gap: 28px;
}

.alcs-showcase__simple-intro > div {
	max-width: 760px;
}

.alcs-showcase__simple-intro > div > span {
	display: block;
	margin-bottom: 8px;
	color: var(--alcs-orange);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.alcs-showcase__simple-intro h2 {
	margin: 0;
	color: #d84c00;
	font-family: Georgia, serif;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 900;
	line-height: 1.08;
}

.alcs-showcase__simple-intro p {
	margin: 12px 0 0;
	color: var(--alcs-muted);
	font-size: 14px;
	line-height: 1.6;
}

.alcs-showcase__simple-count {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	padding: 8px 14px 8px 8px;
	border: 1px solid rgba(248, 89, 3, .22);
	border-radius: 999px;
	background: #fff7f2;
	gap: 9px;
}

.alcs-showcase__simple-count strong {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--alcs-orange);
	color: #fff;
	font-size: 15px;
	font-weight: 900;
}

.alcs-showcase__simple-count span {
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

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

.alcs-showcase__simple-card {
	overflow: hidden;
	height: 330px;
	border: 1px solid #e7e7e7;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 14px 36px rgba(0, 0, 0, .07);
	transition:
		transform .18s ease,
		border-color .18s ease,
		box-shadow .18s ease;
}

.alcs-showcase__simple-card:hover {
	border-color: color-mix(
		in srgb,
		var(--alcs-card-accent) 38%,
		#ddd
	);
	box-shadow: 0 18px 42px rgba(0, 0, 0, .10);
	transform: translateY(-3px);
}

.alcs-showcase__simple-card > a {
	display: grid;
	grid-template-columns: 38% minmax(0, 62%);
	height: 100%;
	color: inherit;
	text-decoration: none !important;
}

.alcs-showcase__simple-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background:
		linear-gradient(
			145deg,
			color-mix(in srgb, var(--alcs-card-accent) 12%, #fff),
			color-mix(in srgb, var(--alcs-card-accent) 4%, #fff)
		);
}

.alcs-showcase__simple-visual img {
	width: 150px;
	height: 150px;
	object-fit: contain;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .13));
}

.alcs-showcase__simple-visual > span {
	font-size: 72px;
}

.alcs-showcase__simple-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 28px;
	gap: 24px;
}

.alcs-showcase__simple-title {
	display: -webkit-box;
	overflow: hidden;
	color: #171717;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1.08;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.alcs-showcase__simple-categories {
	padding: 16px;
	border: 1px solid #ececec;
	border-radius: 14px;
	background: color-mix(
		in srgb,
		var(--alcs-card-accent) 4%,
		#fff
	);
}

.alcs-showcase__simple-label {
	display: block;
	margin-bottom: 10px;
	color: var(--alcs-card-accent);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.alcs-showcase__simple-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.alcs-showcase__simple-pills span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 9px;
	border: 1px solid color-mix(
		in srgb,
		var(--alcs-card-accent) 18%,
		#e7e7e7
	);
	border-radius: 999px;
	background: #fff;
	color: var(--alcs-card-accent);
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
}

.alcs-showcase__simple-categories > strong {
	color: #171717;
	font-size: 13px;
	font-weight: 900;
}

@media only screen and (max-width: 820px) {

	.alcs-showcase__simple-grid {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 620px) {

	.alcs-showcase__simple-intro {
		align-items: flex-start;
		flex-direction: column;
	}

	.alcs-showcase__simple-card {
		height: auto;
	}

	.alcs-showcase__simple-card > a {
		grid-template-columns: 1fr;
	}

	.alcs-showcase__simple-visual {
		min-height: 200px;
	}

	.alcs-showcase__simple-body {
		padding: 22px;
	}

	.alcs-showcase__simple-title {
		font-size: 25px;
	}
}

/* ======================================================
   DATES ET TRI — VITRINE NOS STAGES
====================================================== */

.alcs-showcase__simple-body {
	justify-content: space-between;
}

.alcs-showcase__simple-date {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	margin-top: 13px;
	padding: 8px 11px;
	border: 1px solid color-mix(
		in srgb,
		var(--alcs-card-accent) 17%,
		#e7e7e7
	);
	border-radius: 11px;
	background: color-mix(
		in srgb,
		var(--alcs-card-accent) 5%,
		#ffffff
	);
	color: #292929;
	font-size: 12px;
	line-height: 1.35;
	gap: 7px;
}

.alcs-showcase__simple-date > span {
	flex: 0 0 auto;
}

.alcs-showcase__simple-date strong {
	overflow: hidden;
	font-weight: 900;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.alcs-showcase__simple-card--past {
	opacity: .78;
}

.alcs-showcase__simple-card--past .alcs-showcase__simple-date {
	border-color: #e2e2e2;
	background: #f5f5f5;
	color: #737373;
}

.alcs-showcase__simple-card--undated .alcs-showcase__simple-date {
	border-style: dashed;
	color: var(--alcs-card-accent);
}

@media only screen and (max-width: 620px) {

	.alcs-showcase__simple-date strong {
		white-space: normal;
	}
}
