/* ==========================================================================
   IAAM — design system
   --------------------------------------------------------------------------
   Charte reprise du visuel de marque : bleu nuit profond, dégradé violet →
   bleu ciel sur les mots-clés, halos royal / indigo. Le motif de courbes de
   niveau (assets/img/topo.svg) ne sert plus qu'à graver la pastille du logo.

   Tout est piloté par les tokens ci-dessous : changer la palette ne demande
   pas de toucher au reste de la feuille.

   Sommaire
     1.  Polices
     2.  Tokens
     3.  Base
     4.  Utilitaires & décors (halos, grain)
     5.  Boutons, pastilles, liens
     6.  Barre d'annonce & en-tête
     7.  Hero & billet du prochain meetup
     10. Titres de section
     11. Programme & intervenants
     12. Mur des intervenants
     13. Meetups passés
     14. Équipe
     15. Communauté & appel à l'action
     16. Fiche meetup
     17. Contenu éditorial & gabarits génériques
     18. Commentaires
     19. Pied de page
     20. Apparitions au défilement
     21. Signature de chaque meetup
     22. Logos & liens sociaux
     23. Replays
     24. Sponsors
     25. Questions fréquentes
     26. Journal
   ========================================================================== */


/* 1. Polices --------------------------------------------------------------
   Auto-hébergées : aucune requête vers un CDN, et les fichiers préchargés
   dans functions.php sont bien ceux que la page utilise. */

@font-face {
	font-family: "General Sans";
	src: url("../fonts/general-sans-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "General Sans";
	src: url("../fonts/general-sans-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "General Sans";
	src: url("../fonts/general-sans-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "General Sans";
	src: url("../fonts/general-sans-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "JetBrains Mono";
	src: url("../fonts/jetbrains-mono-latin.woff2") format("woff2");
	font-weight: 400 500;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "JetBrains Mono";
	src: url("../fonts/jetbrains-mono-latin-ext.woff2") format("woff2");
	font-weight: 400 500;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+20A0-20AB, U+20AD-20C0, U+2C60-2C7F, U+A720-A7FF;
}


/* 2. Tokens --------------------------------------------------------------- */

:root {
	/* Fonds, du plus profond au plus clair */
	--ink: #06070E;
	--bg: #080A13;
	--bg-raised: #0C0F1B;
	--surface: #111524;
	--surface-strong: #171C2E;

	/* Filets */
	--line: rgba(150, 170, 235, 0.16);
	--line-soft: rgba(150, 170, 235, 0.09);
	--line-strong: rgba(150, 170, 235, 0.3);

	/* Texte */
	--text: #EEF1FA;
	--text-muted: #A4ADC6;
	--text-dim: #6B7593;

	/* Marque : les couleurs du logotype */
	--violet: #6C63E8;
	--indigo: #4F46E5;
	--sky: #7FC1F0;
	--sky-soft: #A9D0F0;
	--royal: #1E40AF;
	--accent: var(--sky);

	/* Dégradés de marque */
	--grad-brand: linear-gradient(100deg, #6C63E8 0%, #A7AFF0 34%, #D8E6F7 52%, #A9D0F0 72%, #7FC1F0 100%);
	--grad-cta: linear-gradient(100deg, #6C63E8 0%, #4F7BE8 55%, #4FA8E8 100%);

	/* Typo */
	--font-sans: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	/* Rythme */
	--container: 1280px;
	--gutter: clamp(1.25rem, 4vw, 3rem);
	--section-gap: clamp(4rem, 7.5vw, 6.5rem);
	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 24px;
	--radius-pill: 999px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--shadow: 0 24px 60px -32px rgba(0, 0, 0, 0.9);
}


/* 3. Base ----------------------------------------------------------------- */

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

html {
	scroll-behavior: smooth;
	/* Compense l'en-tête collant lors d'un saut d'ancre */
	scroll-padding-top: 7.5rem;
	-webkit-text-size-adjust: 100%;
}

body {
	position: relative;
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
	line-height: 1.6;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* Grain : casse le côté « aplat numérique » des grands fonds sombres. */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3, h4 {
	margin: 0;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

p {
	margin: 0;
}

::selection {
	background: var(--violet);
	color: #fff;
}

:focus-visible {
	outline: 2px solid var(--sky);
	outline-offset: 3px;
	border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}


/* 4. Utilitaires & décors -------------------------------------------------- */

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	inset: 1rem auto auto 1rem;
	z-index: 200;
	width: auto;
	height: auto;
	clip: auto;
	padding: 0.75rem 1.25rem;
	background: var(--violet);
	color: #fff;
	border-radius: var(--radius-pill);
	font-weight: 600;
}

.site-main {
	position: relative;
	z-index: 0;
}

/* Décor de fond d'une section : les halos de la charte, rien d'autre.
   Purement visuel, hors flux, jamais lu par les lecteurs d'écran. */
.backdrop {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}

/* En haut de page, le décor est coupé net par le bas de la section : on le
   fond dans le fond pour éviter la couture horizontale. */
.hero .backdrop,
.page-hero .backdrop,
.meetup-hero .backdrop {
	-webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}

.backdrop__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(110px);
}

.backdrop__glow--violet {
	top: -22%;
	left: -12%;
	width: min(70vw, 780px);
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(108, 99, 232, 0.5), transparent 68%);
}

.backdrop__glow--royal {
	bottom: -30%;
	right: -10%;
	width: min(75vw, 900px);
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(30, 64, 175, 0.55), rgba(127, 193, 240, 0.14) 55%, transparent 72%);
}

.backdrop__glow--sky {
	top: 28%;
	right: 20%;
	width: min(40vw, 420px);
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(127, 193, 240, 0.2), transparent 70%);
}

/* Le mot « Meetup » qui précède un numéro d'édition. Dimensionné en em : il
   suit le chiffre à côté, du gros titre de fiche à la ligne de liste, sans
   qu'on ait à le régler cas par cas. */
.num__word {
	display: inline-block;
	margin-right: 0.45em;
	font-family: var(--font-mono);
	font-size: 0.42em;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	vertical-align: middle;
	color: var(--text-muted);
	-webkit-text-fill-color: var(--text-muted);
}

/* Dans une colonne de liste, la place manque pour tenir sur une ligne : on
   empile plutôt que de laisser le retour à la ligne décider. */
.meetup-row__number .num__word {
	display: block;
	margin-right: 0;
	margin-bottom: 0.1em;
	font-size: 0.38em;
}

/* Dans les repères déjà composés en mono et en petit, le mot reprend
   simplement la taille de son voisin. */
.ticket__num .num__word,
.replay-card__meta .num__word {
	font-size: 1em;
	margin-right: 0.35em;
	letter-spacing: inherit;
	color: inherit;
	-webkit-text-fill-color: currentColor;
}

/* Fragment mis en avant dans les titres (syntaxe *texte* côté admin) */
.grad {
	background: var(--grad-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.mono {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.section {
	position: relative;
	padding-block: var(--section-gap);
	scroll-margin-top: 6rem;
}

/* Filet plein cadre qui sépare deux sections */
.section--ruled {
	border-top: 1px solid var(--line-soft);
}

/* Section qui suit directement un en-tête de page : pas de double marge haute */
.section--flush {
	padding-top: 0;
}

.pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sky);
	box-shadow: 0 0 0 0 rgba(127, 193, 240, 0.6);
	animation: pulse 2.4s infinite;
	flex: none;
}

@keyframes pulse {
	70% {
		box-shadow: 0 0 0 9px rgba(127, 193, 240, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(127, 193, 240, 0);
	}
}


/* 5. Boutons, pastilles, liens --------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.9rem 1.6rem;
	border: 0;
	border-radius: var(--radius-pill);
	background: var(--grad-cta);
	color: #fff;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 10px 30px -12px rgba(79, 70, 229, 0.9);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}

.btn:hover {
	transform: translateY(-2px);
	filter: saturate(1.15) brightness(1.06);
	box-shadow: 0 16px 40px -14px rgba(79, 123, 232, 0.95);
}

.btn:active {
	transform: translateY(0);
}

.btn span[aria-hidden] {
	transition: transform 0.25s var(--ease);
}

.btn:hover span[aria-hidden] {
	transform: translateX(3px);
}

.btn--ghost {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--line);
	color: var(--text);
	box-shadow: none;
}

.btn--ghost:hover {
	background: rgba(127, 193, 240, 0.08);
	border-color: var(--line-strong);
	filter: none;
	box-shadow: none;
}

.btn--block {
	width: 100%;
}

.btn--sm {
	padding: 0.6rem 1.1rem;
	font-size: 0.875rem;
}

/* Pastille de statut : « PROCHAIN MEETUP », « REPLAY DISPONIBLE »… */
.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.4rem 0.85rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.03);
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
	white-space: nowrap;
}

.pill--live {
	border-color: rgba(127, 193, 240, 0.35);
	background: rgba(127, 193, 240, 0.08);
	color: var(--sky-soft);
}

/* Lien mono discret : « VOIR LA FICHE → » */
.link-mono {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sky);
	transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}

.link-mono:hover {
	gap: 1rem;
	color: var(--sky-soft);
}


/* 6. Barre d'annonce & en-tête --------------------------------------------- */

/* Bandeau fin tout en haut : la prochaine date, toujours visible. */
.topbar {
	position: relative;
	z-index: 60;
	background: linear-gradient(90deg, rgba(108, 99, 232, 0.18), rgba(30, 64, 175, 0.18) 55%, rgba(127, 193, 240, 0.12));
	border-bottom: 1px solid var(--line-soft);
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem 1.25rem;
	min-height: 2.5rem;
	padding-block: 0.5rem;
	color: var(--text-muted);
}

.topbar__msg {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.topbar__link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--sky-soft);
	transition: gap 0.25s var(--ease);
}

.topbar__link:hover {
	gap: 0.85rem;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(8, 10, 19, 0.7);
	backdrop-filter: blur(20px) saturate(1.4);
	-webkit-backdrop-filter: blur(20px) saturate(1.4);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-stuck {
	background: rgba(8, 10, 19, 0.92);
	border-bottom-color: var(--line-soft);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 4.5rem;
}

/* Identité : pastille dégradée + mot-clé « #IAAM » */
.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	flex: none;
}

.brand__mark {
	position: relative;
	display: block;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 10px;
	background: var(--grad-cta);
	box-shadow: 0 6px 18px -8px rgba(108, 99, 232, 0.9);
	overflow: hidden;
	flex: none;
}

/* Le même relief que le fond, en miniature dans le logo. */
.brand__mark::after {
	content: "";
	position: absolute;
	inset: -60%;
	background: url("../img/topo.svg") center / 240% no-repeat;
	opacity: 0.55;
}

.brand__text {
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.brand__hash {
	color: var(--sky);
}

/* Logo téléversé depuis l'admin : hauteur bornée, largeur libre. La règle
   exclut le logotype embarqué, qui se dimensionne lui-même — sans quoi son
   max-height l'emportait et écrasait le carré en 52 × 36. */
.brand img:not(.brand__logo) {
	max-height: 2.25rem;
	width: auto;
}

/* Logotype officiel de l'association, embarqué dans le thème. Il porte déjà le
   mot-clic : on l'affiche seul, sans redoubler le texte à côté. */
.brand__logo {
	/* Le mot-clic est gravé dans l'image : sous 44 px il devient illisible, et
	   un logotype qu'on ne lit pas ne vaut pas mieux qu'un carré de couleur. */
	width: 2.75rem;
	height: 2.75rem;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 6px 18px -8px rgba(108, 99, 232, 0.9);
}

.site-footer .brand__logo {
	width: 3.25rem;
	height: 3.25rem;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.2vw, 2.25rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	position: relative;
	display: inline-block;
	padding-block: 0.35rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
	transition: color 0.2s var(--ease);
}

.site-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--grad-brand);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease);
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list a.is-current {
	color: var(--text);
}

.site-nav__list a:hover::after,
.site-nav__list a.is-current::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nav-toggle {
	display: none;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: transparent;
	color: var(--text);
	cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	display: block;
	width: 17px;
	height: 1.5px;
	background: currentColor;
	transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle__bar {
	position: relative;
	margin-inline: auto;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bar::before {
	top: -5px;
}

.nav-toggle__bar::after {
	top: 5px;
}

[aria-expanded="true"] .nav-toggle__bar {
	background: transparent;
}

[aria-expanded="true"] .nav-toggle__bar::before {
	transform: translateY(5px) rotate(45deg);
}

[aria-expanded="true"] .nav-toggle__bar::after {
	transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 960px) {
	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: fixed;
		inset: 4.5rem 0 auto;
		display: grid;
		gap: 1.25rem;
		padding: 1.5rem var(--gutter) 2rem;
		background: rgba(8, 10, 19, 0.98);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-bottom: 1px solid var(--line);
		transform: translateY(-130%);
		transition: transform 0.4s var(--ease);
	}

	.site-nav.is-open {
		transform: translateY(0);
	}

	.site-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.site-nav__list li {
		border-bottom: 1px solid var(--line-soft);
	}

	.site-nav__list a {
		display: block;
		padding-block: 0.9rem;
		font-size: 1.125rem;
		color: var(--text);
	}

	.header-actions .btn {
		display: none;
	}
}

@media (min-width: 961px) {
	.site-nav .btn {
		display: none;
	}
}


/* 7. Hero & billet du prochain meetup -------------------------------------- */

.hero {
	position: relative;
	padding-block: clamp(3.5rem, 8vw, 7rem) 0;
	overflow: hidden;
}

/* Le hero et la section qui le suit se touchent : aucun blanc entre les deux. */
.hero + .section {
	padding-top: 0;
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2.5rem, 5vw, 4.5rem);
	align-items: center;
}

@media (min-width: 1000px) {
	.hero__inner {
		grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
	}
}

.hero__title {
	margin-top: 1.75rem;
	font-size: clamp(2.75rem, 1rem + 7vw, 6rem);
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 0.96;
	text-wrap: balance;
}

.hero__lead {
	max-width: 52ch;
	margin-top: 1.75rem;
	color: var(--text-muted);
	font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.1875rem);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2.25rem;
}

/* Sur mobile, des boutons de largeurs différentes font un bord de gauche
   irrégulier : on les aligne sur toute la colonne. */
@media (max-width: 560px) {
	.hero__actions .btn {
		width: 100%;
	}
}

/* Le hero se referme sur le mot-clic, coupé par le bord bas de la section. */
.hero-word {
	/* Sorti du flux et ancré en fond du hero : la hauteur de la section ne
	   dépend plus de lui, et le mot-clic se cale où on veut à la verticale. */
	position: absolute;
	inset: auto 0 0;
	z-index: 0;
	margin: 0;
	font-size: clamp(3.5rem, 16vw, 13rem);
}

/* Le contenu du hero passe devant le filigrane. */
.hero__inner {
	position: relative;
	z-index: 1;
}

/* Le billet : la carte qui porte la prochaine date. */
.ticket {
	position: relative;
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(160deg, rgba(108, 99, 232, 0.16), rgba(127, 193, 240, 0.05) 45%, rgba(8, 10, 19, 0.6)),
		var(--surface);
	box-shadow: var(--shadow);
	overflow: hidden;
}

/* Liseré dégradé sur l'arête haute */
.ticket::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: var(--grad-brand);
	opacity: 0.8;
}

.ticket__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.ticket__num {
	font-family: var(--font-mono);
	font-size: 0.8125rem;
	letter-spacing: 0.16em;
	color: var(--text-dim);
}

.ticket__date {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}

.ticket__day {
	font-size: clamp(3rem, 6vw, 4rem);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 0.9;
	background: var(--grad-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.ticket__month {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
	line-height: 1;
	/* Mois et année sur la même ligne que le quantième. */
	white-space: nowrap;
}

/* Les deux intervenants annoncés, sous la date. */
.ticket__talks {
	display: grid;
	gap: 0.85rem;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
}

.ticket__talk {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.ticket__talk .speaker__avatar {
	width: 2rem;
	height: 2rem;
	font-size: 0.6875rem;
}

.ticket__talk-speaker {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
}

.ticket__talk-org {
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.ticket__talk-org::before {
	content: " · ";
	color: var(--text-dim);
}

/* Le sujet, borné à deux lignes : un titre à rallonge ne doit pas pousser le
   bouton de réservation hors de vue. */
.ticket__talk-subject {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 0.2rem;
	color: var(--text-muted);
	font-size: 0.8125rem;
	line-height: 1.35;
}

/* Ligne de perforation : deux encoches + pointillé, comme un vrai billet. */
.ticket__perf {
	position: relative;
	height: 1px;
	margin-block: 1.5rem;
	background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
}

.ticket__perf::before,
.ticket__perf::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--bg);
	border: 1px solid var(--line);
	transform: translateY(-50%);
}

.ticket__perf::before {
	left: calc(-1 * clamp(1.5rem, 3vw, 2rem) - 10px);
}

.ticket__perf::after {
	right: calc(-1 * clamp(1.5rem, 3vw, 2rem) - 10px);
}

.ticket__rows {
	display: grid;
	gap: 0.85rem;
	margin: 0 0 1.5rem;
}

.ticket__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin: 0;
}

.ticket__label {
	margin: 0;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-dim);
	flex: none;
}

.ticket__value {
	margin: 0;
	font-size: 0.9375rem;
	text-align: right;
	color: var(--text);
	text-transform: capitalize;
}

.ticket__note {
	margin-top: 0.9rem;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-align: center;
	color: var(--text-dim);
}

/* Compte à rebours : rempli par le JS, retiré s'il n'y a rien à compter. */
.countdown {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.4rem;
	margin-bottom: 1.25rem;
}

.countdown[hidden] {
	display: none;
}

.countdown__cell {
	padding: 0.6rem 0.25rem;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.02);
	text-align: center;
}

.countdown__num {
	display: block;
	font-family: var(--font-mono);
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--text);
	font-variant-numeric: tabular-nums;
}

.countdown__unit {
	display: block;
	margin-top: 0.15rem;
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-dim);
}


/* 10. Titres de section ---------------------------------------------------- */

/* Libellé mono : « 01 — PROCHAIN RENDEZ-VOUS », prolongé d'un filet. */
.eyebrow {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin: 0 0 1.75rem;
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--sky);
}

.eyebrow::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--line), transparent);
}

.eyebrow__index {
	padding: 0.2rem 0.5rem;
	border: 1px solid var(--line);
	border-radius: 6px;
	color: var(--text-dim);
	font-size: 0.625rem;
}

.eyebrow--dim {
	margin-top: clamp(3rem, 6vw, 4.5rem);
	color: var(--text-dim);
}

.section__title {
	font-size: clamp(1.875rem, 1.1rem + 3.2vw, 3.5rem);
	max-width: 22ch;
	text-wrap: balance;
}

.section__lead {
	max-width: 64ch;
	margin-top: 1.75rem;
	color: var(--text-muted);
	font-size: clamp(1rem, 0.97rem + 0.3vw, 1.125rem);
}

.section__lead strong {
	color: var(--text);
	font-weight: 600;
}


/* 11. Programme & intervenants --------------------------------------------- */

.next-meetup__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
	align-items: end;
}

@media (min-width: 1000px) {
	.next-meetup__head {
		grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
		gap: clamp(2.5rem, 5vw, 5rem);
	}
}

.next-meetup__number {
	margin-bottom: 0.5rem;
	font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.04em;
	font-variant-numeric: tabular-nums;
	background: var(--grad-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.next-meetup__title {
	font-size: clamp(1.75rem, 1rem + 3vw, 3rem);
	text-wrap: balance;
}

/* Fiche QUAND / OÙ */
.facts {
	display: grid;
	gap: 1.25rem;
	margin: 0;
}

.facts__row {
	padding-top: 1rem;
	border-top: 1px solid var(--line-soft);
}

.facts__label {
	margin: 0 0 0.4rem;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.facts__value {
	margin: 0;
	font-size: 1rem;
	color: var(--text);
}

/* Image d'annonce : l'affiche du meetup, celle qu'on partage. Cadrée en 16/9
   par le format « iaam-annonce », donc aucune surprise de hauteur. */
.meetup-visual {
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	overflow: hidden;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	background: var(--surface);
}

.meetup-visual img {
	display: block;
	width: 100%;
	height: auto;
}

/* Seule la carte impose un format : trois cartes côte à côte doivent s'aligner. */
.meetup-visual--card img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/* En tête de fiche, le visuel est le premier objet de la page. */
.meetup-visual--hero {
	margin-top: 0;
	margin-bottom: clamp(1rem, 2vw, 1.5rem);
	box-shadow: var(--shadow);
}

/* Dans la carte de l'édition mise en avant, il s'insère entre le numéro et le
   titre : plus serré, sans cadre propre. */
.meetup-visual--card {
	margin: 0 0 1.25rem;
	border: 0;
	border-radius: var(--radius);
}

.programme {
	margin-top: clamp(2.5rem, 5vw, 4rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01) 60%);
	overflow: hidden;
}

.programme__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.programme__item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.75rem 2rem;
	padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
	border-bottom: 1px solid var(--line-soft);
	transition: background 0.3s var(--ease);
}

.programme__item:hover {
	background: rgba(127, 193, 240, 0.035);
}

@media (min-width: 760px) {
	.programme__item {
		grid-template-columns: 8.5rem minmax(0, 1fr);
	}
}

/* Puce + filet vertical de la timeline */
.programme__time {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-mono);
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	color: var(--sky);
	font-variant-numeric: tabular-nums;
}

.programme__time::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sky);
	box-shadow: 0 0 12px rgba(127, 193, 240, 0.9);
	flex: none;
}

@media (min-width: 760px) {
	.programme__item:not(:last-child) .programme__time::after {
		content: "";
		position: absolute;
		left: 3.5px;
		top: 1.4rem;
		bottom: calc(-1 * clamp(1.5rem, 3vw, 2rem) - 0.9rem);
		width: 1px;
		background: linear-gradient(var(--line-strong), transparent);
	}
}

.programme__kind {
	margin-bottom: 0.5rem;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.programme__title {
	font-size: clamp(1.0625rem, 1rem + 0.65vw, 1.375rem);
	font-weight: 500;
	letter-spacing: -0.015em;
	line-height: 1.25;
}

.programme__note {
	margin-top: 0.35rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.programme + .replay-grid,
.programme__list + .replay-grid {
	margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.programme__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2.25rem);
	background: rgba(255, 255, 255, 0.015);
}

/* Intervenant : pastille d'initiales + identité */
.speaker {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-top: 1.25rem;
}

.speaker__avatar {
	display: grid;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--violet), var(--indigo));
	font-family: var(--font-mono);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: #fff;
	flex: none;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* Trois teintes de marque réparties selon le nom : la grille reste vivante
   sans jamais sortir de la charte. */
.speaker__avatar--b {
	background: linear-gradient(145deg, #4F7BE8, var(--royal));
}

.speaker__avatar--c {
	background: linear-gradient(145deg, var(--sky), #4F7BE8);
	color: #0A1020;
}

.speaker__name {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 600;
}

.speaker__role {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.8125rem;
}

.venue {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.venue__thumb {
	display: grid;
	place-items: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 12px;
	border: 1px solid var(--line);
	background:
		repeating-linear-gradient(0deg, transparent 0 9px, rgba(150, 170, 235, 0.09) 9px 10px),
		repeating-linear-gradient(90deg, transparent 0 9px, rgba(150, 170, 235, 0.09) 9px 10px),
		var(--surface);
	flex: none;
}

.venue__pin {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sky);
	box-shadow: 0 0 12px var(--sky);
}

.venue__label {
	margin: 0 0 0.3rem;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.venue__name {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
}


/* 12. Mur des intervenants ------------------------------------------------- */

.wall {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
	gap: 0.75rem;
	margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
	padding: 0;
	list-style: none;
}

.wall__item {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.9rem 1rem;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.015);
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.wall__item:hover {
	border-color: var(--line-strong);
	background: var(--surface);
	transform: translateY(-2px);
}

.wall__body {
	min-width: 0;
}

.wall__name {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.wall__org {
	margin: 0.15rem 0 0;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-dim);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/* 13. Meetups passés ------------------------------------------------------- */

/* Grille de la section : la dernière édition en carte à gauche, les autres en
   lignes à droite. */
.meetups {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	align-items: start;
}

@media (min-width: 1100px) {
	.meetups {
		grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	}
}

.meetup-featured {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(1.5rem, 3vw, 2.25rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(165deg, rgba(108, 99, 232, 0.14), rgba(127, 193, 240, 0.04) 50%, transparent),
		var(--surface);
	box-shadow: var(--shadow);
	overflow: hidden;
}

/* Filet supérieur à la teinte de l'édition. */
.meetup-featured::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 2px;
	background: var(--accent-color, var(--violet));
	opacity: 0.9;
}

.meetup-featured__top {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.meetup-featured__number {
	font-size: clamp(2.25rem, 4vw, 3rem);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 1;
	background: var(--grad-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.meetup-featured__date {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.meetup-featured__title {
	font-size: clamp(1.1875rem, 1rem + 0.9vw, 1.625rem);
	font-weight: 500;
	line-height: 1.25;
}

.meetup-featured__title a:hover {
	color: var(--sky-soft);
}

.meetup-featured__speakers {
	display: grid;
	gap: 1rem;
	margin: 1.75rem 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line-soft);
}

.meetup-featured__speakers .speaker {
	margin-top: 0;
}

.meetup-featured .link-mono {
	margin-top: auto;
	padding-top: 1.5rem;
	border-top: 1px solid var(--line-soft);
	width: 100%;
}

.meetup-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line-soft);
}

.meetup-row {
	position: relative;
	display: grid;
	grid-template-columns: 3.25rem minmax(0, 1fr) 1.25rem;
	align-items: center;
	gap: 0.75rem clamp(1rem, 2.2vw, 2rem);
	padding: clamp(1rem, 2.2vw, 1.4rem) 0.75rem;
	border-bottom: 1px solid var(--line-soft);
	transition: background 0.3s var(--ease), padding-inline 0.3s var(--ease);
}

/* Filet dégradé qui apparaît à gauche au survol */
.meetup-row::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--accent-color, var(--violet));
	transform: scaleY(0);
	transition: transform 0.3s var(--ease);
}

.meetup-row:hover::before {
	transform: scaleY(1);
}

@media (min-width: 900px) {
	.meetup-row {
		grid-template-columns: 4rem 7rem minmax(0, 1fr) 1.25rem;
	}
}

.meetup-row:hover {
	background: var(--accent-wash, rgba(127, 193, 240, 0.045));
	padding-inline: 1.25rem 0.75rem;
}

.meetup-row__number {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--text-dim);
	font-variant-numeric: tabular-nums;
	transition: color 0.3s var(--ease);
}

.meetup-row:hover .meetup-row__number {
	color: var(--accent-color, var(--sky));
}

.meetup-row__date {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-dim);
}

@media (max-width: 899px) {
	.meetup-row__date {
		display: none;
	}
}

.meetup-row__title {
	display: block;
	font-size: clamp(0.9375rem, 0.9rem + 0.35vw, 1.125rem);
	font-weight: 500;
	line-height: 1.3;
}

.meetup-row__speakers {
	display: block;
	margin-top: 0.3rem;
	color: var(--text-dim);
	font-size: 0.8125rem;
}

.meetup-row__arrow {
	justify-self: end;
	color: var(--text-dim);
	transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.meetup-row:hover .meetup-row__arrow {
	color: var(--accent-color, var(--sky));
	transform: translateX(4px);
}


/* 14. Équipe --------------------------------------------------------------- */

.team {
	display: grid;
	/* auto-fill, pas auto-fit : une équipe d'une seule personne garde une carte
	   de taille normale au lieu de s'étirer sur toute la largeur. */
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1rem;
	margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
	padding: 0;
	list-style: none;
}

.team-card {
	padding: clamp(1.5rem, 3vw, 2rem);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.015);
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.team-card:hover {
	border-color: var(--line-strong);
	background: var(--surface);
	transform: translateY(-3px);
}

.team-card__avatar {
	display: grid;
	place-items: center;
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1.25rem;
	border-radius: 50%;
	background: var(--grad-cta);
	font-family: var(--font-mono);
	font-size: 1rem;
	font-weight: 500;
	color: #fff;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* Photo d'un membre : même gabarit que la pastille d'initiales, pour que les
   deux cohabitent dans la même rangée sans décaler les cartes. */
.team-card__photo {
	width: 3.5rem;
	height: 3.5rem;
	margin-bottom: 1.25rem;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 0 1px var(--line) inset;
}

/* Les bénévoles sont plus nombreux : cartes resserrées, sans présentation. */
.team--compact {
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	margin-top: 1.5rem;
}

.team--compact .team-card {
	padding: 1.25rem;
}

.team--compact .team-card__avatar,
.team--compact .team-card__photo {
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 0.85rem;
	font-size: 0.75rem;
}

.team--compact .team-card__name {
	font-size: 1rem;
}

.team-card__link {
	margin-top: 1rem;
}

.team-card__name {
	font-size: 1.125rem;
	font-weight: 600;
}

.team-card__role {
	margin-top: 0.3rem;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--sky);
}

.team-card__text {
	margin-top: 1rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
}


/* 15. Communauté & appel à l'action ---------------------------------------- */

.channels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.channel {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: clamp(1.5rem, 3vw, 1.85rem);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.015);
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.channel:hover {
	border-color: var(--line-strong);
	background: var(--surface);
	transform: translateY(-3px);
}

.channel__name {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 1.125rem;
	font-weight: 600;
}

.channel__arrow {
	color: var(--text-dim);
	transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.channel:hover .channel__arrow {
	color: var(--sky);
	transform: translate(3px, -3px);
}

.channel__text {
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.cta {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	padding: clamp(2rem, 4vw, 3rem);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(110deg, rgba(108, 99, 232, 0.22), rgba(30, 64, 175, 0.16) 55%, rgba(127, 193, 240, 0.1)),
		var(--surface);
	overflow: hidden;
}

.cta > * {
	position: relative;
}

.cta__title {
	font-size: clamp(1.375rem, 1.1rem + 1.3vw, 2rem);
	max-width: 20ch;
}

.cta__text {
	margin-top: 0.75rem;
	max-width: 48ch;
	color: var(--text-muted);
	font-size: 0.9375rem;
}


/* Bloc « dernier meetup » : le titre prend toute la largeur, les faits passent
   en pastilles sous lui, et chaque captation porte son intervenant. */
.dernier__head {
	max-width: 52rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.dernier__title {
	font-size: clamp(1.75rem, 1rem + 3vw, 3rem);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.03em;
	text-wrap: balance;
}

.dernier__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

/* Repli quand le nombre de captations ne correspond pas au nombre
   d'intervenants : la liste reste à part plutôt que d'apparier au hasard. */
.dernier__speakers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem 2rem;
	margin-top: clamp(1.5rem, 3vw, 2rem);
	padding-top: 1.5rem;
	border-top: 1px solid var(--line-soft);
}

.dernier__speakers .speaker {
	margin-top: 0;
}

/* Rang du talk dans la soirée, au-dessus de son titre. */
.replay-item__rang {
	display: block;
	margin-bottom: 0.35rem;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent-color, var(--sky));
}

/* Légende d'une captation : le titre du talk, puis qui le donne. Les colonnes
   s'étirent pour que les intervenants s'alignent, quel que soit le nombre de
   lignes pris par les titres au-dessus. */
.replay-grid {
	align-items: stretch;
}

.replay-item {
	display: flex;
	flex-direction: column;
}

.replay-item__caption {
	display: flex;
	flex: 1;
	flex-direction: column;
	margin-top: 0.9rem;
}

.replay-item__caption .replay-item__title {
	display: block;
	margin: 0;
	font-family: inherit;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.015em;
	text-transform: none;
	color: var(--text);
}

.replay-item__caption .speaker {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 0.85rem;
}

.replay-item__caption .speaker__name,
.replay-item__caption .speaker__role {
	display: block;
}

#dernier .replay {
	border-color: var(--accent-color, var(--line));
}

#dernier .section__more {
	margin-top: clamp(2rem, 4vw, 2.75rem);
}

/* 16. Fiche meetup --------------------------------------------------------- */

.meetup-hero {
	position: relative;
	padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 4vw, 3rem);
	overflow: hidden;
}

.meetup-hero__back {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-dim);
	transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}

.meetup-hero__back:hover {
	color: var(--sky);
	gap: 1rem;
}

.meetup-hero__number {
	margin-bottom: 1.25rem;
	font-size: clamp(3rem, 2rem + 5vw, 6rem);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 1;
	background: var(--grad-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.meetup-hero__title {
	font-size: clamp(1.75rem, 1rem + 3.2vw, 3.25rem);
	max-width: 26ch;
	text-wrap: balance;
}

.meetup-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem 0.75rem;
	margin-top: 1.75rem;
}

.talks {
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01) 60%);
	overflow: hidden;
}

.talk {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem clamp(1.5rem, 3vw, 2.5rem);
	padding: clamp(1.5rem, 3vw, 2rem);
	border-bottom: 1px solid var(--line-soft);
	align-items: center;
	transition: background 0.3s var(--ease);
}

.talk:last-child {
	border-bottom: 0;
}

.talk:hover {
	background: rgba(127, 193, 240, 0.035);
}

@media (min-width: 900px) {
	.talk {
		grid-template-columns: 16rem minmax(0, 1fr) auto;
	}
}

.talk__speaker {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.talk__org {
	margin: 0.3rem 0 0;
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.talk__title {
	font-size: clamp(1.0625rem, 1rem + 0.75vw, 1.5rem);
	font-weight: 500;
	line-height: 1.25;
}

/* Une soirée porte jusqu'à deux talks, donc jusqu'à deux captations : seule,
   la vidéo prend toute la largeur ; à deux, elles se partagent la ligne. */
.replay-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
	gap: clamp(1rem, 2.5vw, 1.75rem);
}

.replay-item {
	margin: 0;
}

.replay-item__title {
	margin-top: 0.85rem;
	font-family: var(--font-mono);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.replay {
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	background: var(--surface);
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

/* Sans vidéo, un cadre 16/9 laisserait un grand vide : on se contente de la
   hauteur du message. */
.replay--empty {
	aspect-ratio: auto;
	min-height: 16rem;
}

.replay iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.replay__empty {
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 0.6rem;
	height: 100%;
	padding: 2rem;
	text-align: center;
}

.replay__icon {
	color: var(--text-dim);
}

.replay__title {
	color: var(--text-muted);
	font-size: 1.0625rem;
}

.replay__note {
	color: var(--text-dim);
	font-size: 0.9375rem;
}

.meetup-nav {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	padding-top: clamp(2rem, 4vw, 2.5rem);
	border-top: 1px solid var(--line-soft);
}

@media (min-width: 800px) {
	.meetup-nav {
		grid-template-columns: 1fr 1fr;
	}
}

.meetup-nav__link {
	display: block;
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.4;
	transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.meetup-nav__link:hover {
	border-color: var(--line-strong);
	background: var(--surface);
	color: var(--text);
}

.meetup-nav__label {
	display: block;
	margin-bottom: 0.4rem;
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.meetup-nav__link--next {
	text-align: right;
	grid-column: -2;
}


/* 17. Contenu éditorial & gabarits génériques ------------------------------ */

.prose {
	max-width: 72ch;
	color: var(--text-muted);
	font-size: clamp(1rem, 0.97rem + 0.25vw, 1.0625rem);
}

.prose > * + * {
	margin-top: 1.25em;
}

.prose h2,
.prose h3 {
	margin-top: 2em;
	color: var(--text);
	font-weight: 600;
}

.prose h2 {
	font-size: 1.625rem;
}

.prose h3 {
	font-size: 1.3125rem;
}

.prose strong {
	color: var(--text);
	font-weight: 600;
}

.prose a {
	color: var(--sky);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(127, 193, 240, 0.4);
}

.prose a:hover {
	text-decoration-color: currentColor;
}

.prose ul,
.prose ol {
	padding-left: 1.25rem;
}

.prose li + li {
	margin-top: 0.5rem;
}

.prose li::marker {
	color: var(--sky);
}

.prose blockquote {
	margin-inline: 0;
	padding-left: 1.5rem;
	border-left: 2px solid var(--violet);
	color: var(--text);
}

.prose img {
	border-radius: var(--radius);
}

.prose code {
	padding: 0.15em 0.4em;
	border-radius: 6px;
	background: var(--surface-strong);
	font-family: var(--font-mono);
	font-size: 0.875em;
	color: var(--sky-soft);
}

.prose pre {
	padding: 1.25rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg-raised);
	overflow-x: auto;
}

.prose pre code {
	background: none;
	padding: 0;
	color: var(--text);
}

.page-hero {
	position: relative;
	padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem);
	overflow: hidden;
}

.page-hero__title {
	font-size: clamp(2rem, 1.1rem + 3.2vw, 3.5rem);
	text-wrap: balance;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1rem;
	margin-top: 2.5rem;
}

.card {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.5rem;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.015);
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.card:hover {
	border-color: var(--line-strong);
	background: var(--surface);
	transform: translateY(-3px);
}

.card__title {
	font-size: 1.1875rem;
	font-weight: 600;
}

.card__meta {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.card__excerpt {
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.card .link-mono {
	margin-top: auto;
	padding-top: 1rem;
}

.search-form {
	display: flex;
	gap: 0.75rem;
	max-width: 520px;
	margin-top: 2rem;
}

.search-form__field {
	flex: 1;
	padding: 0.85rem 1.25rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-pill);
	background: var(--surface);
	color: var(--text);
	font: inherit;
}

.search-form__field::placeholder {
	color: var(--text-dim);
}

.pagination {
	margin-top: 3rem;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 2.75rem;
	height: 2.75rem;
	padding-inline: 0.75rem;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-pill);
	color: var(--text-muted);
	font-family: var(--font-mono);
	font-size: 0.8125rem;
	transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.pagination .page-numbers:hover {
	border-color: var(--line-strong);
	color: var(--text);
}

.pagination .page-numbers.current {
	background: var(--grad-cta);
	border-color: transparent;
	color: #fff;
}


/* 18. Commentaires --------------------------------------------------------- */

.comments-area {
	max-width: 72ch;
	margin-top: 3.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--line-soft);
}

.comments-area__title {
	margin-bottom: 2rem;
	font-size: 1.5rem;
}

.comment-list {
	list-style: none;
	margin: 0 0 3rem;
	padding: 0;
}

.comment-list .comment-body {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--line-soft);
	color: var(--text-muted);
}

.comment-list .fn {
	color: var(--text);
	font-style: normal;
	font-weight: 600;
}

.comment-form p {
	display: grid;
	gap: 0.5rem;
	margin-block: 1.25rem;
}

.comment-form label {
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 0.85rem 1.25rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	color: var(--text);
	font: inherit;
}

.comment-form .comment-form-cookies-consent {
	grid-template-columns: auto 1fr;
	align-items: center;
}

.comment-form .form-submit {
	display: block;
}


/* 19. Pied de page --------------------------------------------------------- */

.site-footer {
	position: relative;
	margin-top: clamp(4rem, 9vw, 7rem);
	border-top: 1px solid var(--line-soft);
	background: var(--ink);
	overflow: hidden;
}

.site-footer__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
	padding-block: clamp(3rem, 6vw, 4.5rem);
}

/* Palier intermédiaire : l'identité prend toute la largeur et les colonnes de
   liens se rangent deux par deux. Les serrer à côté d'elle casserait
   « Politique de confidentialité » sur trois lignes. */
@media (min-width: 620px) {
	.site-footer__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(2rem, 4vw, 3.5rem);
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (min-width: 1040px) {
	.site-footer__inner {
		grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr));
	}

	.site-footer__brand {
		grid-column: auto;
	}
}

.site-footer__tagline {
	max-width: 36ch;
	margin-top: 1.25rem;
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.footer-col__title {
	margin-bottom: 1.1rem;
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.footer-col ul {
	display: grid;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-col a {
	color: var(--text-muted);
	font-size: 0.9375rem;
	transition: color 0.2s var(--ease);
}

.footer-col a:hover {
	color: var(--sky);
}

/* Logotype géant en filigrane : en bas du hero et en bas du pied de page, même
   traitement, deux échelles. */
.hero-word,
.footer-word {
	position: relative;
	font-weight: 700;
	letter-spacing: -0.06em;
	line-height: 0.8;
	text-align: center;
	background: linear-gradient(180deg, rgba(150, 170, 235, 0.18), rgba(150, 170, 235, 0.02) 85%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	user-select: none;
	pointer-events: none;
}

.footer-word {
	margin-top: 0.5rem;
	font-size: clamp(4rem, 17vw, 15rem);
}

.site-footer__bottom {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1.5rem;
	border-top: 1px solid var(--line-soft);
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-dim);
}


/* 20. Apparitions au défilement -------------------------------------------- */

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Sans JavaScript, tout doit rester visible */
.no-js .reveal {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
	}
}


/* 21. Signature de chaque meetup -------------------------------------------
   Chaque édition porte sa teinte, prise dans la famille de la marque et fixée
   par son numéro (voir iaam_meetup_accent()). Les composants la lisent via
   --accent-color, avec repli sur le violet : rien ne casse si la classe manque. */

.accent-1 { --accent-color: #6C63E8; --accent-wash: rgba(108, 99, 232, 0.09); }
.accent-2 { --accent-color: #4F46E5; --accent-wash: rgba(79, 70, 229, 0.09); }
.accent-3 { --accent-color: #3B6FE0; --accent-wash: rgba(59, 111, 224, 0.09); }
.accent-4 { --accent-color: #2F8FDE; --accent-wash: rgba(47, 143, 222, 0.09); }
.accent-5 { --accent-color: #4FB0E8; --accent-wash: rgba(79, 176, 232, 0.1); }
.accent-6 { --accent-color: #7FC1F0; --accent-wash: rgba(127, 193, 240, 0.1); }

/* Sur une fiche, la teinte irrigue le halo, le numéro et les repères. */
.meetup-hero .backdrop__glow--violet {
	background: radial-gradient(circle, var(--accent-color, var(--violet)), transparent 68%);
	opacity: 0.45;
}

.meetup-hero__number,
.meetup-hero .programme__time {
	color: var(--accent-color, var(--sky));
}

.meetup-hero__number {
	background: none;
	-webkit-background-clip: initial;
	background-clip: initial;
}

.talk:hover {
	background: var(--accent-wash, rgba(127, 193, 240, 0.035));
}


/* 22. Logos & liens sociaux ------------------------------------------------ */

.icon {
	display: block;
	flex: none;
}

/* Le « m » de Meetup est cerné d'un contour nuageux : à taille nominale égale,
   il paraît deux fois plus petit que le « in » de LinkedIn. */
.icon--meetup {
	transform: scale(1.3);
}

.social {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.social__btn {
	display: grid;
	place-items: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid var(--line-soft);
	border-radius: 10px;
	color: var(--text-muted);
	background: rgba(255, 255, 255, 0.02);
	transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

/* Au survol seulement, la pastille prend la couleur de la plateforme : la
   barre reste calme au repos, et l'intention est claire au passage. */
.social__btn:hover {
	transform: translateY(-2px);
	border-color: currentColor;
	background: rgba(255, 255, 255, 0.05);
}

.social__btn--linkedin:hover { color: #4DA3E8; }
.social__btn--youtube:hover  { color: #FF5B72; }
.social__btn--meetup:hover   { color: #FF6B84; }
.social__btn--globe:hover    { color: var(--sky); }

@media (max-width: 960px) {
	.social--header {
		display: none;
	}
}

@media (min-width: 961px) {
	.social--nav {
		display: none;
	}
}

.channel {
	position: relative;
}

.channel__badge {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	margin-bottom: 0.5rem;
	border: 1px solid var(--line-soft);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-muted);
	transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.channel--linkedin:hover .channel__badge { color: #4DA3E8; border-color: currentColor; }
.channel--youtube:hover .channel__badge  { color: #FF5B72; border-color: currentColor; }
.channel--meetup:hover .channel__badge   { color: #FF6B84; border-color: currentColor; }
.channel--globe:hover .channel__badge    { color: var(--sky); border-color: currentColor; }

.footer-social {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}


/* 23. Replays -------------------------------------------------------------- */

.replays {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1rem;
	margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
	padding: 0;
	list-style: none;
}

.replay-card__link {
	display: block;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.015);
	overflow: hidden;
	transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.replay-card__link:hover {
	border-color: var(--accent-color, var(--line-strong));
	background: var(--surface);
	transform: translateY(-3px);
}

.replay-card__thumb {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--surface-strong);
	overflow: hidden;
}

.replay-card__thumb img {
	width: 100%;
	height: 100%;
	/* Les vignettes YouTube en 4/3 portent des bandes noires : on recadre. */
	object-fit: cover;
	filter: saturate(0.85) brightness(0.85);
	transition: filter 0.4s var(--ease), transform 0.6s var(--ease);
}

.replay-card__link:hover .replay-card__thumb img {
	filter: none;
	transform: scale(1.04);
}

.replay-card__play {
	position: absolute;
	inset: auto auto 0.75rem 0.75rem;
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--accent-color, var(--violet));
	color: #fff;
	box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.9);
}

.replay-card__body {
	display: block;
	padding: 1rem 1.15rem 1.25rem;
}

.replay-card__meta {
	display: block;
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-color, var(--text-dim));
}

.replay-card__title {
	display: block;
	margin-top: 0.5rem;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	color: var(--text);
}


/* 24. Sponsors ------------------------------------------------------------- */

.sponsors {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1rem;
	margin: clamp(2rem, 4vw, 3rem) 0 0;
	padding: 0;
	list-style: none;
}

.sponsor-tile {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	height: 100%;
	padding: 1.25rem;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.015);
	text-align: center;
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}

.sponsor-tile:hover {
	border-color: var(--line-strong);
	background: var(--surface);
	transform: translateY(-3px);
}

/* Cadre neutre : les logos arrivent en couleurs et en formats très différents,
   le cadre leur donne la même respiration. */
.sponsor-tile__frame {
	display: grid;
	place-items: center;
	min-height: 4.5rem;
	padding: 0.5rem;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
}

.sponsor-tile__frame--lg {
	min-height: 7rem;
	min-width: 12rem;
	padding: 1.25rem;
}

.sponsor-tile__logo {
	max-height: 3rem;
	width: auto;
	object-fit: contain;
	/* Les logos couleur sur fond sombre jurent : on les apaise, la couleur
	   revient au survol. */
	filter: grayscale(1) brightness(1.6);
	opacity: 0.75;
	transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}

.sponsor-tile:hover .sponsor-tile__logo,
.sponsor-tile__frame--lg .sponsor-tile__logo {
	filter: none;
	opacity: 1;
}

.sponsor-tile__frame--lg .sponsor-tile__logo {
	max-height: 4.5rem;
}

.sponsor-tile__wordmark {
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--text);
}

.sponsor-tile__name {
	margin-top: 0.35rem;
	font-size: 0.9375rem;
	font-weight: 600;
}

.sponsor-tile__baseline {
	color: var(--text-muted);
	font-size: 0.8125rem;
	line-height: 1.4;
}

.sponsor-tile__tier {
	font-family: var(--font-mono);
	font-size: 0.5625rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-dim);
}

.sponsor-hero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3rem);
}


/* 25. Questions fréquentes ------------------------------------------------- */

.faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
}

@media (min-width: 900px) {
	.faq-layout {
		grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
		gap: clamp(2rem, 5vw, 4rem);
	}
}

.faq {
	border-top: 1px solid var(--line-soft);
}

.faq__item {
	border-bottom: 1px solid var(--line-soft);
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1.15rem;
	font-size: clamp(1rem, 0.95rem + 0.4vw, 1.1875rem);
	font-weight: 500;
	color: var(--text);
	cursor: pointer;
	list-style: none;
	transition: color 0.25s var(--ease);
}

.faq__question::-webkit-details-marker {
	display: none;
}

.faq__question:hover {
	color: var(--sky-soft);
}

/* Le « + » qui bascule en « − » : deux traits, une rotation. */
.faq__sign {
	position: relative;
	width: 14px;
	height: 14px;
	flex: none;
}

.faq__sign::before,
.faq__sign::after {
	content: "";
	position: absolute;
	inset: 50% 0 auto;
	height: 1.5px;
	background: var(--sky);
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.faq__sign::after {
	transform: rotate(90deg);
}

[open] .faq__sign::after {
	transform: rotate(0);
	opacity: 0;
}

.faq__answer {
	padding-bottom: 1.35rem;
	max-width: 62ch;
	color: var(--text-muted);
	font-size: 0.9375rem;
}


/* 26. Journal -------------------------------------------------------------- */

.section__more {
	margin-top: 2rem;
}

.post-lead {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: center;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
	padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
	border-bottom: 1px solid var(--line-soft);
}

@media (min-width: 900px) {
	.post-lead {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	}
}

.post-lead__media img {
	width: 100%;
	border-radius: var(--radius-lg);
}

.post-lead__title {
	margin-top: 0.75rem;
	font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.5rem);
	text-wrap: balance;
}

.post-lead__title a:hover {
	color: var(--sky-soft);
}

.post-lead .link-mono {
	margin-top: 1.5rem;
}

.article__title {
	max-width: 22ch;
}

.article__media {
	margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.article__media img {
	width: 100%;
	border-radius: var(--radius-lg);
}

.article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2.5rem;
}

.article__tags a {
	display: inline-flex;
	padding: 0.4rem 0.85rem;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-pill);
	font-family: var(--font-mono);
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
	transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.article__tags a:hover {
	border-color: var(--line-strong);
	color: var(--sky);
}
