/* ==========================================================================
   DisneyFan — piste 2a « Éditorial riche »
   Complète Bootstrap 5.3.8 (assets/vendor/bootstrap), compilé avec les mêmes tokens.
   ========================================================================== */

:root {
	--df-ink: #18203a;
	--df-paper: #f8f6f1;
	--df-white: #ffffff;
	--df-terracotta: #b4553a;
	--df-blue: #2e4a8a;
	--df-gold: #f2c46b;
	--df-gold-deep: #c99a2e;
	--df-ochre: #8a6516;
	--df-text-2: #4a4f63;
	--df-meta: #6b6f80;
	--df-body: #2c3246;
	--df-on-ink-1: #d8dcea;
	--df-on-ink-2: #c3c8da;
	--df-on-ink-3: #aab0c6;
	--df-rule: #e3ded3;
	--df-terracotta-light: #e08a6d;
	--df-sand: #f1ede4;

	--df-serif: "Fraunces", Georgia, serif;
	--df-sans: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--df-shadow: 0 10px 30px rgba(24, 32, 58, .12);
	--df-shadow-light: 0 4px 16px rgba(24, 32, 58, .08);

	--df-gutter: 48px;
	--df-section: 56px;
	--df-header-h: 77px;
	--df-admin-bar: 0px;
}

.admin-bar { --df-admin-bar: 32px; }
@media (max-width: 782px) {
	.admin-bar { --df-admin-bar: 46px; }
}
@media (max-width: 600px) {
	/* La barre d'admin n'est plus fixe sous 600px. */
	.admin-bar { --df-admin-bar: 0px; }
}

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

body {
	background: var(--df-paper);
	color: var(--df-ink);
	font-family: var(--df-sans);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--df-serif);
	font-weight: 600;
	color: inherit;
}

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

a { text-underline-offset: .18em; }

:focus-visible {
	outline: 3px solid var(--df-terracotta);
	outline-offset: 2px;
}

.df-skip-link {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 2000;
	background: var(--df-white);
	padding: 10px 16px;
	font-weight: 700;
}

/* Conteneur 1280px + marges 48px (20px sous 768px). */
.df-container {
	width: 100%;
	max-width: calc(1280px + 2 * var(--df-gutter));
	margin-inline: auto;
	padding-inline: var(--df-gutter);
}
.df-container .df-container { padding-inline: 0; }

@media (max-width: 767.98px) {
	:root {
		--df-gutter: 20px;
		--df-section: 40px;
	}
}

/* Emplacement neutre quand un article n'a pas d'image. */
.df-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(135deg, #ebe6da 0 12px, #e3ded3 12px 24px);
}

/* Étiquette de rubrique */
.df-label {
	display: block;
	margin: 0 0 6px;
	font-family: var(--df-sans);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	line-height: 1.3;
	text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Barre utilitaire
   -------------------------------------------------------------------------- */
.df-utility {
	background: var(--df-ink);
	font-size: 13px;
}
.df-utility__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 4px 24px;
	padding-block: 9px;
}
.df-utility__tagline {
	margin: 0;
	color: #e4e7f0;
}
.df-utility__link {
	color: var(--df-gold);
	font-weight: 700;
}
.df-utility__link:hover { color: var(--df-gold); }

@media (max-width: 575.98px) {
	.df-utility__tagline { display: none; }
}

/* --------------------------------------------------------------------------
   Header collant
   -------------------------------------------------------------------------- */
.df-header {
	position: sticky;
	top: var(--df-admin-bar);
	z-index: 1020;
	background: var(--df-white);
	box-shadow: 0 1px 0 var(--df-rule);
}
.df-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	padding-block: 18px;
}
.df-header__brand {
	flex: 0 0 auto;
	margin: 0;
	font-size: inherit;
	line-height: 1;
}
.df-header__nav {
	flex: 1 1 auto;
	justify-content: center;
}
.df-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.df-logo {
	display: inline-block;
	font-family: var(--df-serif);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1;
	color: var(--df-ink);
	text-decoration: none;
}
.df-logo:hover { color: var(--df-ink); text-decoration: none; }
.df-logo__dot { color: var(--df-terracotta); }
.df-logo--image { display: inline-flex; align-items: center; }
.df-logo__img {
	display: block;
	width: auto;
	max-width: 240px;
	height: 48px;
	object-fit: contain;
	object-position: left center;
}
.df-header--article .df-logo__img { height: 40px; }
.df-logo--footer .df-logo__img { height: 44px; }
@media (max-width: 991.98px) {
	.df-logo__img, .df-header--article .df-logo__img { height: 36px; max-width: 180px; }
}
.df-header--article .df-logo { font-size: 26px; }

.df-nav {
	flex-direction: row;
	gap: 32px;
}
.df-nav .nav-link {
	padding: 8px 0;
	font-size: 15px;
	font-weight: 700;
	color: var(--df-ink);
}
.df-nav .nav-link:hover,
.df-nav .nav-link:focus-visible { color: var(--df-ink); text-decoration: none; box-shadow: inset 0 -3px 0 var(--df-rule); }
.df-nav .nav-link.active { color: var(--df-ink); box-shadow: inset 0 -3px 0 var(--df-terracotta); }
.df-nav .dropdown-menu {
	border: 0;
	box-shadow: var(--df-shadow);
	padding: 8px 0;
}
.df-nav .dropdown-item { font-weight: 600; padding: 8px 20px; }
.df-nav .dropdown-item.active,
.df-nav .dropdown-item:active { background: var(--df-sand); color: var(--df-ink); }

.df-round-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: var(--df-sand);
	color: var(--df-ink);
	transition: background-color .2s ease;
}
.df-round-btn:hover { background: var(--df-rule); }

.df-burger,
.df-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--df-ink);
}

@media (max-width: 991.98px) {
	.df-header__inner { padding-block: 12px; }
	.df-logo, .df-header--article .df-logo { font-size: 26px; }
	.df-round-btn { width: 44px; height: 44px; }
}

/* Barre de progression de lecture (collée sous le header) */
.df-progress {
	height: 4px;
	background: var(--df-rule);
}
.df-progress__bar {
	display: block;
	height: 100%;
	width: 100%;
	background: var(--df-terracotta);
	transform: scaleX(0);
	transform-origin: 0 50%;
	will-change: transform;
}

/* --------------------------------------------------------------------------
   Tiroir mobile (offcanvas)
   -------------------------------------------------------------------------- */
.df-drawer.offcanvas {
	--bs-offcanvas-width: 100vw;
	background: var(--df-paper);
	border: 0;
}
.df-drawer__header {
	justify-content: space-between;
	padding: 20px 20px 18px;
	border-bottom: 1px solid var(--df-ink);
}
.df-drawer__body { padding: 20px; }
.df-drawer__body .df-search-form { margin-bottom: 24px; }

.df-drawer__rubriques { margin: 0; }
.df-drawer__rubriques > li { border-bottom: 1px solid #d6d2c9; }
.df-drawer__rubriques > li > a {
	display: block;
	padding: 14px 0;
	font-family: var(--df-serif);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -.01em;
	color: var(--df-ink);
}
.df-drawer__rubriques > li > a.active { color: var(--df-terracotta); }
.df-drawer__sub { margin: -6px 0 12px; }
.df-drawer__sub a {
	display: block;
	min-height: 44px;
	padding: 10px 0 10px 16px;
	font-size: 16px;
	font-weight: 600;
	color: var(--df-text-2);
}
.df-drawer__links { margin: 16px 0 0; }
.df-drawer__links a {
	display: flex;
	align-items: center;
	min-height: 44px;
	font-size: 18px;
	font-weight: 600;
	color: var(--df-ink);
}
.df-drawer__child a { padding-left: 16px; font-size: 16px; }
.df-drawer__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 28px 0 0;
}
.df-drawer__chips a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--df-ink);
	border-radius: 999px;
	font-size: 16px;
	font-weight: 600;
	color: var(--df-ink);
}
.df-drawer__chips a:hover { background: var(--df-ink); color: var(--df-white); text-decoration: none; }

/* --------------------------------------------------------------------------
   Recherche
   -------------------------------------------------------------------------- */
.df-search-form {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}
.df-search-form__icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	color: var(--df-meta);
	pointer-events: none;
}
.df-search-form__input {
	flex: 1 1 auto;
	min-width: 0;
	height: 52px;
	padding: 0 18px 0 48px;
	border: 1px solid var(--df-ink);
	border-radius: 999px;
	background: var(--df-white);
	font-size: 17px;
	color: var(--df-ink);
}
.df-search-form__input::placeholder { color: var(--df-meta); }
.df-search-form__input:focus {
	outline: none;
	border-color: var(--df-terracotta);
	box-shadow: 0 0 0 3px rgba(180, 85, 58, .25);
}
.df-search-form__submit {
	flex: 0 0 auto;
	height: 52px;
	padding: 0 22px;
	border: 0;
	border-radius: 999px;
	background: var(--df-ink);
	color: var(--df-white);
	font-weight: 800;
}
.df-search-form__submit:hover { background: var(--df-terracotta); }
.df-drawer .df-search-form__submit { display: none; }

.df-search-modal .modal-content {
	border: 0;
	background: var(--df-paper);
	box-shadow: var(--df-shadow);
}
.df-search-modal .modal-header { border-bottom: 0; padding: 24px 28px 0; }
.df-search-modal .modal-body { padding: 16px 28px 28px; }
.df-search-modal__title {
	margin: 0;
	font-family: var(--df-serif);
	font-size: 28px;
	font-weight: 600;
}
@media (min-width: 576px) {
	.df-search-modal .modal-dialog { margin-top: 12vh; }
}

/* --------------------------------------------------------------------------
   Titres de section, grilles, cartes
   -------------------------------------------------------------------------- */
.df-section { padding-block: var(--df-section); }
.df-section + .df-section { padding-top: 0; }

.df-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}
.df-section__head--rule::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: var(--df-ink);
}
.df-section__title {
	margin: 0;
	font-size: 36px;
	line-height: 1.1;
	letter-spacing: -.02em;
}
.df-section__more {
	flex: 0 0 auto;
	font-size: 15px;
	font-weight: 700;
	color: var(--df-blue);
}
.df-section__more:hover { color: var(--df-blue); }

.df-grid { display: grid; gap: 28px 24px; }
.df-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.df-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.df-latest + .df-grid { margin-top: 40px; }

@media (max-width: 991.98px) {
	.df-grid--3, .df-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575.98px) {
	.df-grid--3 { grid-template-columns: minmax(0, 1fr); }
	.df-grid--4 { gap: 14px; }
}

/* Carte de base */
.df-card { position: relative; }
.df-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--df-rule);
}
.df-card__media img,
.df-card__media .df-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}
.df-card:hover .df-card__media img { transform: scale(1.03); }
.df-card__body { padding-top: 14px; }
.df-card__title {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.25;
	letter-spacing: -.01em;
}
.df-card__title a { color: inherit; }
.df-card__meta {
	margin: 0;
	font-size: 13px;
	color: var(--df-meta);
}
.df-card__excerpt {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
	color: var(--df-text-2);
}

/* Grille « Derniers articles » : 1.3fr 1fr 1fr, grande carte sur 2 rangées */
.df-latest {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 28px 24px;
}
.df-latest > .df-card--large { grid-row: span 2; }
.df-card--large .df-card__media { aspect-ratio: auto; height: 380px; min-height: 380px; }
.df-card--large .df-card__title { font-size: 32px; line-height: 1.12; letter-spacing: -.02em; }

@media (min-width: 992px) {
	/* La grande carte occupe toute la hauteur des deux rangées. */
	.df-latest > .df-card--large { display: flex; flex-direction: column; }
	.df-latest > .df-card--large .df-card__media { flex: 1 1 auto; }
}
@media (max-width: 991.98px) {
	.df-latest { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.df-latest > .df-card--large { grid-column: 1 / -1; grid-row: auto; }
	.df-card--large .df-card__media { height: auto; min-height: 0; aspect-ratio: 16 / 10; }
	.df-card--large .df-card__title { font-size: 28px; }
}
@media (max-width: 575.98px) {
	.df-latest { grid-template-columns: minmax(0, 1fr); }
	.df-card--large .df-card__title { font-size: 26px; }
}

/* Carte blanche (Collection & goodies) */
.df-card--boxed {
	background: var(--df-white);
	box-shadow: var(--df-shadow-light);
}
.df-card--boxed .df-card__media { aspect-ratio: 1 / 1; }
.df-card--boxed .df-card__body { padding: 16px 18px 20px; }
.df-card--boxed .df-card__title { font-size: 18px; }

/* Carte sur fond nuit (À lire ensuite) */
.df-card--dark .df-card__media { aspect-ratio: 16 / 9; background: #232c4d; }
.df-card--dark .df-card__title { color: var(--df-white); }
.df-card--dark .df-placeholder { background: repeating-linear-gradient(135deg, #232c4d 0 12px, #1d2544 12px 24px); }

/* Mini-carte (À la une aussi) */
.df-mini {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 16px;
	align-items: center;
	padding: 14px 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
}
.df-mini:first-of-type { border-top: 0; }
.df-mini__media { display: block; width: 72px; height: 72px; overflow: hidden; }
.df-mini__media img,
.df-mini__media .df-placeholder { width: 72px; height: 72px; object-fit: cover; }
.df-mini .df-placeholder { background: repeating-linear-gradient(135deg, #3a4670 0 8px, #323d63 8px 16px); }
.df-mini .df-label { font-size: 10px; margin-bottom: 4px; }
.df-mini__title {
	margin: 0;
	font-size: 17px;
	line-height: 1.25;
	color: var(--df-white);
}
.df-mini__title a { color: inherit; }

/* --------------------------------------------------------------------------
   Accueil : hero
   -------------------------------------------------------------------------- */
.df-home-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 600px;
	background: var(--df-ink);
	color: var(--df-white);
	overflow: hidden;
}
.df-home-hero__media {
	position: absolute;
	inset: 0;
	margin: 0;
}
.df-home-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.df-home-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(14, 19, 38, .88) 0%, rgba(14, 19, 38, .55) 50%, rgba(14, 19, 38, .15) 100%);
	pointer-events: none;
}
.df-home-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 64px;
	align-items: end;
	padding-block: 64px;
}
.df-pill {
	display: inline-block;
	margin-bottom: 20px;
	padding: 6px 12px;
	background: var(--df-terracotta);
	color: var(--df-white);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.df-pill:hover { color: var(--df-white); text-decoration: none; }
.df-home-hero__title {
	margin: 0 0 20px;
	font-size: 68px;
	line-height: 1;
	letter-spacing: -.02em;
}
.df-home-hero__title a { color: var(--df-white); }
.df-home-hero__chapeau {
	max-width: 560px;
	margin: 0 0 28px;
	font-size: 20px;
	line-height: 1.5;
	color: var(--df-on-ink-1);
}
.df-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 20px;
}
.df-btn-light {
	display: inline-block;
	padding: 14px 24px;
	background: var(--df-white);
	color: var(--df-ink);
	font-size: 15px;
	font-weight: 800;
}
.df-btn-light:hover { background: var(--df-gold); color: var(--df-ink); text-decoration: none; }
.df-home-hero__meta {
	margin: 0;
	font-size: 14px;
	color: var(--df-on-ink-2);
}

.df-home-hero__also {
	padding: 4px 24px 8px;
	background: rgba(14, 19, 38, .6);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-top: 3px solid var(--df-gold);
}
.df-home-hero__also-title {
	margin: 16px 0 4px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--df-gold);
}

@media (max-width: 1199.98px) {
	.df-home-hero__title { font-size: 56px; }
}
@media (max-width: 991.98px) {
	.df-home-hero { min-height: 0; }
	.df-home-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; padding-top: 160px; padding-bottom: 48px; }
	.df-home-hero::after { background: linear-gradient(0deg, rgba(14, 19, 38, .92) 0%, rgba(14, 19, 38, .6) 60%, rgba(14, 19, 38, .2) 100%); }
	.df-home-hero__title { font-size: 44px; line-height: 1.05; }
}
@media (max-width: 575.98px) {
	.df-home-hero__title { font-size: 36px; }
	.df-home-hero__chapeau { font-size: 18px; }
}

/* Tuiles de rubriques */
.df-tiles {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	padding-top: var(--df-section);
	padding-bottom: 24px;
}
.df-tile {
	display: flex;
	flex-direction: column;
	box-shadow: var(--df-shadow);
	color: var(--df-white);
	text-decoration: none;
	overflow: hidden;
}
.df-tile:hover { color: var(--df-white); text-decoration: none; }
.df-tile__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.df-tile__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}
.df-tile:hover .df-tile__img { transform: scale(1.03); }
.df-tile__band {
	display: block;
	flex: 1 1 auto;
	padding: 20px 24px 22px;
}
.df-tile__name {
	display: block;
	font-family: var(--df-serif);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -.01em;
}
.df-tile:hover .df-tile__name { text-decoration: underline; text-decoration-thickness: 2px; }
.df-tile__desc {
	display: block;
	margin-top: 6px;
	font-size: 15px;
	color: rgba(255, 255, 255, .88);
}
@media (max-width: 991.98px) {
	.df-tiles { grid-template-columns: minmax(0, 1fr); gap: 16px; }
	.df-tile { display: grid; grid-template-columns: 40% 1fr; }
	.df-tile__media { aspect-ratio: auto; min-height: 120px; }
	.df-tile__band { display: flex; flex-direction: column; justify-content: center; }
	.df-tile__name { font-size: 24px; }
}

/* Bandeau « Le saviez-vous ? » */
.df-fact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: var(--df-ink);
	color: var(--df-white);
	margin-block: var(--df-section);
}
.df-fact__media {
	position: relative;
	min-height: 360px;
	background: repeating-linear-gradient(135deg, #232c4d 0 14px, #1d2544 14px 28px);
}
.df-fact__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.df-fact__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px;
}
.df-fact__kicker {
	margin: 0 0 14px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--df-gold);
}
.df-fact__text {
	max-width: 520px;
	margin: 0 0 20px;
	font-family: var(--df-serif);
	font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -.01em;
}
.df-fact__link { font-weight: 700; color: var(--df-gold); }
.df-fact__link:hover { color: var(--df-gold); }
@media (max-width: 767.98px) {
	.df-fact { grid-template-columns: minmax(0, 1fr); }
	.df-fact__media { min-height: 220px; }
	.df-fact__body { padding: 36px var(--df-gutter); }
	.df-fact__text { font-size: 28px; }
}

/* Bandeau Quiz */
.df-quiz-band {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 32px;
	align-items: center;
	margin-bottom: var(--df-section);
	padding: 40px 48px;
	background: var(--df-gold-deep);
}
.df-quiz-band__kicker {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--df-ink);
}
.df-quiz-band__title {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -.02em;
}
.df-quiz-band__title a { color: var(--df-ink); }
.df-quiz-band__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.df-quiz-card {
	position: relative;
	padding: 20px 22px 24px;
	background: var(--df-ink);
	transition: transform .2s ease;
}
.df-quiz-card:hover { transform: translateY(-2px); }
.df-quiz-card .df-label { margin-bottom: 8px; }
.df-quiz-card__title {
	margin: 0;
	font-size: 20px;
	line-height: 1.25;
}
.df-quiz-card__title a { color: var(--df-white); }
@media (max-width: 991.98px) {
	.df-quiz-band { grid-template-columns: minmax(0, 1fr); padding: 32px 28px; }
}
@media (max-width: 575.98px) {
	.df-quiz-band { padding: 28px 20px; }
	.df-quiz-band__cards { grid-template-columns: minmax(0, 1fr); }
	.df-quiz-band__title { font-size: 32px; }
}

/* --------------------------------------------------------------------------
   Fil d'Ariane
   -------------------------------------------------------------------------- */
.df-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
	font-size: 13px;
}
.df-breadcrumbs li + li::before {
	content: "/";
	padding: 0 6px;
}
.df-breadcrumbs a { color: inherit; }
.df-breadcrumbs .is-current { font-weight: 700; }
.df-breadcrumbs--light { color: var(--df-on-ink-1); }
.df-breadcrumbs--light .is-current { color: var(--df-gold); }

/* --------------------------------------------------------------------------
   Vue article
   -------------------------------------------------------------------------- */
.df-article-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 520px;
	background: var(--df-ink);
	color: var(--df-white);
	overflow: hidden;
}
.df-article-hero__media {
	position: absolute;
	inset: 0;
	margin: 0;
}
.df-article-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.df-article-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(14, 19, 38, .9) 0%, rgba(14, 19, 38, .3) 60%, rgba(14, 19, 38, 0) 100%);
	pointer-events: none;
}
.df-article-hero > .df-container { position: relative; z-index: 1; }
.df-article-hero__content {
	max-width: 900px;
	padding-block: 48px;
}
.df-article-hero__title {
	margin: 0 0 22px;
	font-size: 60px;
	line-height: 1.02;
	letter-spacing: -.02em;
	color: var(--df-white);
}

.df-byline {
	display: flex;
	align-items: center;
	gap: 12px;
}
.df-byline__avatar {
	width: 40px;
	height: 40px;
	border: 2px solid var(--df-gold);
	border-radius: 50%;
	object-fit: cover;
}
.df-byline p { margin: 0; }
.df-byline__name { font-size: 14px; font-weight: 700; }
.df-byline__name a { color: var(--df-white); }
.df-byline__dates { font-size: 13px; color: var(--df-on-ink-2); }

@media (max-width: 991.98px) {
	.df-article-hero { min-height: 440px; }
	.df-article-hero__title { font-size: 44px; line-height: 1.05; }
}
@media (max-width: 575.98px) {
	.df-article-hero { min-height: 400px; }
	.df-article-hero__content { padding-block: 32px; }
	.df-article-hero__title { font-size: 34px; }
}

.df-article-body {
	display: grid;
	grid-template-columns: 240px minmax(0, 720px) 1fr;
	gap: 56px;
	padding-block: var(--df-section);
}
.df-article-body__toc { position: relative; }
@media (max-width: 1199.98px) {
	.df-article-body { grid-template-columns: minmax(0, 720px); justify-content: center; }
	.df-article-body__toc { display: none; }
}

/* Sommaire */
.df-toc {
	position: sticky;
	top: calc(var(--df-admin-bar) + var(--df-header-h) + 24px);
	max-height: calc(100vh - var(--df-header-h) - 48px);
	overflow-y: auto;
}
.df-toc__title {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--df-terracotta);
}
.df-toc ol { margin: 0; }
.df-toc a {
	display: block;
	padding: 5px 0 5px 12px;
	border-left: 3px solid var(--df-rule);
	font-size: 14px;
	line-height: 1.35;
	color: var(--df-meta);
}
.df-toc a:hover { color: var(--df-ink); text-decoration: none; }
.df-toc a.is-active {
	border-left-color: var(--df-terracotta);
	color: var(--df-ink);
	font-weight: 700;
}

/* Contenu */
.df-chapeau {
	margin: 0 0 28px;
	font-family: var(--df-serif);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--df-ink);
}
.entry-content {
	font-size: 18px;
	line-height: 1.7;
	color: var(--df-body);
}
.entry-content > * { margin-top: 0; margin-bottom: 1.4em; }
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	scroll-margin-top: calc(var(--df-admin-bar) + var(--df-header-h) + 16px);
	color: var(--df-ink);
}
.entry-content h2 {
	margin: 1.6em 0 .6em;
	font-size: 34px;
	line-height: 1.15;
	letter-spacing: -.02em;
}
.entry-content h3 {
	margin: 1.4em 0 .5em;
	font-size: 26px;
	line-height: 1.2;
}
.entry-content h4 { font-size: 21px; }
.entry-content a {
	color: var(--df-terracotta);
	text-decoration: underline;
	text-decoration-thickness: 1px;
}
.entry-content a:hover { text-decoration-thickness: 2px; }
.entry-content ul,
.entry-content ol { padding-left: 1.3em; }
.entry-content li { margin-bottom: .4em; }
.entry-content li::marker { color: var(--df-terracotta); }
.entry-content blockquote:not([class*="is-style-"]),
.entry-content .wp-block-quote:not([class*="is-style-"]) {
	margin-inline: 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--df-terracotta);
	font-family: var(--df-serif);
	font-size: 22px;
	line-height: 1.45;
	color: var(--df-ink);
}
.entry-content figure { margin-inline: 0; }
.entry-content figcaption,
.entry-content .wp-element-caption {
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.4;
	color: var(--df-meta);
}
.entry-content table {
	width: 100%;
	font-size: 16px;
	border-collapse: collapse;
}
.entry-content th,
.entry-content td { padding: 10px 12px; border-bottom: 1px solid var(--df-rule); }
.entry-content th { background: var(--df-sand); color: var(--df-ink); text-align: left; }
.entry-content .alignwide { margin-inline: calc(-1 * min(56px, 4vw)); }
.entry-content hr { border: 0; border-top: 1px solid var(--df-rule); opacity: 1; }

/* Galerie 2 colonnes, images 4:5, gap 12px */
.entry-content .wp-block-gallery.has-nested-images {
	--wp--style--unstable-gallery-gap: 12px;
	gap: 12px;
}
.entry-content .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image),
.entry-content .wp-block-gallery.has-nested-images.columns-2 figure.wp-block-image:not(#individual-image) {
	width: calc(50% - 6px);
}
.entry-content .wp-block-gallery.has-nested-images.columns-default img,
.entry-content .wp-block-gallery.has-nested-images.columns-2 img {
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
@media (max-width: 575.98px) {
	.entry-content { font-size: 17px; }
	.entry-content h2 { font-size: 28px; }
	.df-chapeau { font-size: 21px; }
}

/* Style de bloc « Le saviez-vous » (groupe ou citation) */
.is-style-le-saviez-vous {
	margin-inline: 0;
	padding: 28px 32px;
	border: 0;
	background: var(--df-ink);
	color: var(--df-white);
	font-family: var(--df-serif);
	font-size: 23px;
	font-style: normal;
	line-height: 1.4;
}
.is-style-le-saviez-vous::before {
	content: "Le saviez-vous ?";
	display: block;
	margin-bottom: 10px;
	font-family: var(--df-sans);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--df-gold);
}
:is(.is-style-le-saviez-vous, .is-style-le-saviez-vous > .wp-block-group__inner-container) > * { margin: 0 0 .6em; color: inherit; }
:is(.is-style-le-saviez-vous, .is-style-le-saviez-vous > .wp-block-group__inner-container) > :last-child { margin-bottom: 0; }
.is-style-le-saviez-vous a { color: var(--df-gold); }
.is-style-le-saviez-vous cite {
	display: block;
	margin-top: 10px;
	font-family: var(--df-sans);
	font-size: 14px;
	font-style: normal;
	color: var(--df-on-ink-3);
}

/* Style de bloc « CTA TousChezMickey »
   Thème classique : WordPress enveloppe le contenu du groupe dans .wp-block-group__inner-container.
   La grille s'applique donc au groupe ou à ce conteneur, selon le cas. */
.is-style-cta-tcm {
	background: var(--df-white);
	box-shadow: var(--df-shadow);
	border-top: 4px solid var(--df-gold-deep);
	padding: 24px 28px;
}
.is-style-cta-tcm:has(.wp-block-image) {
	padding: 0;
	border-top: 0;
}
.is-style-cta-tcm:has(> .wp-block-image),
.is-style-cta-tcm > .wp-block-group__inner-container:has(> .wp-block-image) {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
}
:is(.is-style-cta-tcm, .is-style-cta-tcm > .wp-block-group__inner-container) > .wp-block-image {
	margin: 0;
	min-height: 100%;
}
:is(.is-style-cta-tcm, .is-style-cta-tcm > .wp-block-group__inner-container) > .wp-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
:is(.is-style-cta-tcm, .is-style-cta-tcm > .wp-block-group__inner-container):has(> .wp-block-image) > :not(.wp-block-image) {
	margin: 0;
	padding: 24px 28px;
	border-top: 4px solid var(--df-gold-deep);
}
.is-style-cta-tcm h2,
.is-style-cta-tcm h3,
.is-style-cta-tcm h4 {
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 1.25;
	color: var(--df-ink);
}
.is-style-cta-tcm p {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--df-text-2);
}
.is-style-cta-tcm .wp-block-buttons { margin: 0; }
.entry-content .is-style-cta-tcm .wp-block-button__link {
	display: inline-block;
	padding: 12px 20px;
	border-radius: 0;
	background: var(--df-terracotta);
	color: var(--df-white);
	font-family: var(--df-sans);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
}
.entry-content .is-style-cta-tcm .wp-block-button__link:hover { background: #9a4630; color: var(--df-white); }
@media (max-width: 575.98px) {
	.is-style-cta-tcm:has(.wp-block-image) { border-top: 4px solid var(--df-gold-deep); }
	.is-style-cta-tcm:has(> .wp-block-image),
	.is-style-cta-tcm > .wp-block-group__inner-container:has(> .wp-block-image) { grid-template-columns: minmax(0, 1fr); }
	:is(.is-style-cta-tcm, .is-style-cta-tcm > .wp-block-group__inner-container) > .wp-block-image { aspect-ratio: 16 / 9; }
	:is(.is-style-cta-tcm, .is-style-cta-tcm > .wp-block-group__inner-container):has(> .wp-block-image) > :not(.wp-block-image) { border-top: 0; }
}

/* Boutons de blocs génériques */
.entry-content .wp-block-button__link {
	border-radius: 0;
	background: var(--df-ink);
	color: var(--df-white);
	font-weight: 800;
	text-decoration: none;
}

/* Étiquettes de l'article */
.df-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 40px 0 0;
}
.df-tags a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 14px;
	border: 1px solid var(--df-ink);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: var(--df-ink);
}
.df-tags a:hover { background: var(--df-ink); color: var(--df-white); text-decoration: none; }

/* À lire ensuite */
.df-next {
	padding-block: var(--df-section);
	background: var(--df-ink);
	color: var(--df-white);
}
.df-next__title {
	margin: 0 0 28px;
	font-size: 36px;
	letter-spacing: -.02em;
}

/* Commentaires */
.df-comments {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--df-rule);
}
.df-comments__title { font-size: 28px; margin-bottom: 20px; }
.df-comments__list .comment-body { padding: 16px 0; border-bottom: 1px solid var(--df-rule); }
.df-comments__list .children { list-style: none; padding-left: 24px; }
.df-comments .avatar { border-radius: 50%; margin-right: 10px; }
.df-comments .comment-meta { font-size: 14px; color: var(--df-meta); }
.df-comments .fn { font-style: normal; font-weight: 700; color: var(--df-ink); }
.df-comments textarea,
.df-comments input[type="text"],
.df-comments input[type="email"],
.df-comments input[type="url"] {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--df-ink);
	background: var(--df-white);
}
.df-comments label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.df-comments .comment-form-cookies-consent label { display: inline; font-weight: 400; }

/* --------------------------------------------------------------------------
   Archives, recherche, auteur, pages
   -------------------------------------------------------------------------- */
.df-archive-head {
	padding-block: 48px;
	color: var(--df-white);
}
.df-archive-head__kicker {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .8);
}
.df-archive-head__title {
	margin: 0;
	font-size: 48px;
	line-height: 1.05;
	letter-spacing: -.02em;
	color: var(--df-white);
}
.df-archive-head__desc {
	max-width: 720px;
	margin-top: 14px;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, .9);
}
.df-archive-head__desc p:last-child { margin-bottom: 0; }
.df-archive-head__desc a { color: var(--df-white); text-decoration: underline; }
.df-archive-head__search { max-width: 640px; margin-top: 24px; }
.df-archive-head .df-search-form__input { border-color: transparent; }
.df-archive-head .df-search-form__submit { background: var(--df-terracotta); }
.df-archive-head .df-search-form__submit:hover { background: var(--df-white); color: var(--df-ink); }
.df-archive-head .df-breadcrumbs--light .is-current { color: var(--df-white); }

.df-author-head__inner {
	display: flex;
	align-items: center;
	gap: 28px;
}
.df-author-head__avatar {
	flex: 0 0 auto;
	width: 96px;
	height: 96px;
	border: 3px solid var(--df-gold);
	border-radius: 50%;
	object-fit: cover;
}

@media (max-width: 575.98px) {
	.df-archive-head { padding-block: 36px; }
	.df-archive-head__title { font-size: 36px; }
	.df-author-head__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
	.df-search-form__submit { padding: 0 16px; }
}

.df-empty {
	max-width: 720px;
	margin-bottom: 8px;
	font-size: 18px;
	color: var(--df-text-2);
}
.df-empty__title { font-size: 32px; color: var(--df-ink); }
.df-empty .df-search-form { margin-top: 20px; }
.df-empty + .df-tiles { padding-top: 32px; }

.df-page {
	max-width: 720px;
	margin-inline: auto;
	padding-block: var(--df-section);
}
.df-page__thumb { margin: 0 0 32px; }
.df-page__thumb img { width: 100%; }

/* Pagination */
.df-pagination { margin-top: 48px; }
.df-pagination .pagination { gap: 6px; }
.df-pagination .page-link {
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-left: 0 !important;
}
.df-pagination .page-link.dots { border-color: transparent; background: transparent; }

.df-page-links { margin-top: 24px; font-weight: 700; }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */
.df-footer {
	padding-block: var(--df-section);
	background: var(--df-ink);
	color: var(--df-on-ink-1);
	font-size: 14px;
}
.df-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 32px;
}
.df-logo--footer {
	font-size: 30px;
	color: var(--df-white);
}
.df-logo--footer:hover { color: var(--df-white); }
.df-logo--footer .df-logo__dot { color: var(--df-terracotta-light); }
.df-footer__disclaimer {
	max-width: 320px;
	margin: 14px 0 0;
	color: var(--df-on-ink-3);
	line-height: 1.5;
}
.df-footer__title {
	margin: 0 0 10px;
	font-weight: 800;
	color: var(--df-white);
}
.df-footer__list { margin: 0; }
.df-footer__list li { margin-bottom: 6px; }
.df-footer a { color: var(--df-on-ink-1); }
.df-footer a:hover { color: var(--df-white); }
.df-footer .df-footer__tcm { color: var(--df-gold); font-weight: 700; }
@media (max-width: 991.98px) {
	.df-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.df-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
	.df-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
	.df-footer__list a { display: inline-block; padding-block: 6px; }
}

/* Accessibilité : texte réservé aux lecteurs d'écran (WordPress) */
.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;
}
