/* =========================================================================
   YORK FOURTH — « affiche de cérémonie » design system, prefix y4-
   Vocabulary: the vintage Fourth of July ceremony program, in French as a
   signature: estrade (header bandstand), programme (content width),
   affiche (poster hero), cortege (nav), fil (breadcrumb), rubrique
   (numbered section), tribune (grandstand card), registre/entree (dated
   feed), ouverture (article head), planche (lead image), colonne
   (reading column), lieu/horaire (time-and-place boxes), avis/astuce
   (crafted boxes), fleuron (SVG separator), socle (footer).
   Palette: marine ink + patinated brick red + cream paper, with worn gold
   for ornaments. Editorial serif (Iowan/Palatino), system sans for UI.
   No remote font, no CDN, no loud gradient. Dark mode is automatic.
   ========================================================================= */

:root {
  color-scheme: light dark;

  /* ---- 1. COLOURS · the ceremony grounds -------------------------------- */
  --papier:        #f3ecdc;  /* cream paper, the magazine page            */
  --papier-creux:  #eae0c8;  /* deeper paper, reserves, alt sections      */
  --papier-vif:    #faf5e8;  /* lightest reserve, tip boxes               */
  --encre:         #1f2d3d;  /* marine ink: text                          */
  --encre-nuit:    #16222f;  /* deepest marine: header, poster, footer    */
  --encre-douce:   #57626f;  /* captions, meta, deck                      */
  --brique:        #a8402e;  /* patinated brick: links, plaques, lettrine */
  --brique-vif:    #d9674a;  /* brick on dark grounds                     */
  --brique-eteint: #7e3122;  /* pressed / hover                           */
  --or:            #94722e;  /* worn gold: ornaments, hairline accents    */
  --filet:         #d5c8a9;  /* hairline on paper                         */
  --filet-nuit:    #33404f;  /* hairline on night                         */

  /* Dark mode: the same grounds after the fireworks. */
  --nuit-papier:   #131b24;
  --nuit-papier-creux: #1a232e;
  --nuit-texte:    #e7e0cd;
  --nuit-doux:     #a49f8d;

  /* ---- 2. TYPE · system stacks, nothing fetched ------------------------- */
  --police-titre: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --police-texte: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --police-sans: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --titre-graisse: 600;
  --titre-interlettrage: 0.004em;
  --caps-interlettrage: 0.22em;   /* plaques, kickers, edition line         */

  --corps-taille: clamp(1.02rem, 0.98rem + 0.2vw, 1.1rem);
  --corps-interligne: 1.66;
  --echelle-h1: clamp(2.2rem, 1.2rem + 3.5vw, 4rem);
  --echelle-h2: clamp(1.5rem, 1.12rem + 1.5vw, 2.25rem);
  --echelle-h3: clamp(1.12rem, 1.02rem + 0.5vw, 1.4rem);
  --echelle-h4: 1.02rem;

  /* ---- 3. RHYTHM --------------------------------------------------------- */
  --mesure:        62ch;       /* reading column                            */
  --mesure-large:  1340px;
  --marge-page:    clamp(1.1rem, 4vw, 3.8rem);
  --gouttiere:     clamp(0.9rem, 2.2vw, 2rem);
  --souffle:       clamp(2.4rem, 5.5vw, 5.2rem);
  --decalage:      clamp(1.2rem, 3vw, 3rem);

  /* ---- 4. DETAILS --------------------------------------------------------- */
  --angle:       2px;
  --filet-fin:   1px solid var(--filet);
  --vitesse:     150ms ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --papier:       var(--nuit-papier);
    --papier-creux: var(--nuit-papier-creux);
    --papier-vif:   #202a35;
    --encre:        var(--nuit-texte);
    --encre-douce:  var(--nuit-doux);
    --brique:       var(--brique-vif);
    --brique-eteint: #e88a6e;
    --or:           #c3a058;
    --filet:        #313d4b;
  }
}

/* =========================================================================
   BASE
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--papier);
  color: var(--encre);
  font-family: var(--police-texte);
  font-size: var(--corps-taille);
  line-height: var(--corps-interligne);
  overflow-wrap: break-word;
}
img, svg { max-width: 100%; height: auto; display: block; }
svg.y4-glyphe { display: inline-block; vertical-align: -0.14em; }

h1, h2, h3, h4 {
  font-family: var(--police-titre);
  font-weight: var(--titre-graisse);
  letter-spacing: var(--titre-interlettrage);
  line-height: 1.14;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--echelle-h1); }
h2 { font-size: var(--echelle-h2); }
h3 { font-size: var(--echelle-h3); }
h4 { font-size: var(--echelle-h4); }

p, ul, ol { margin: 0 0 1.1em; }
a {
  color: var(--brique);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.17em;
  transition: color var(--vitesse);
}
a:hover { color: var(--brique-eteint); }
:focus-visible {
  outline: 2px solid var(--brique);
  outline-offset: 3px;
  border-radius: 1px;
}
hr { border: 0; border-top: var(--filet-fin); margin: var(--souffle) 0; }

::selection { background: var(--brique); color: #f8f2e2; }

/* Hours, routes and figures read in tabular numerals. */
.y4-horaire, .y4-lieu, .y4-avis, .y4-jour, .y4-indications,
.y4-rubrique__numero, .y4-affiche__edition {
  font-variant-numeric: tabular-nums;
}

/* =========================================================================
   SCAFFOLD
   ========================================================================= */

/* Skip link. Never remove. */
.y4-evite {
  position: absolute; left: -9999px; top: 0;
  background: var(--encre-nuit); color: var(--papier-vif);
  padding: 0.7rem 1.15rem; z-index: 60;
}
.y4-evite:focus { left: 0.6rem; top: 0.6rem; }

/* The programme: useful width of every content zone. */
.y4-programme {
  width: 100%;
  max-width: var(--mesure-large);
  margin-inline: auto;
  padding-inline: var(--marge-page);
}
.y4-scene { display: block; }

/* --- Estrade (the bandstand header) --------------------------------------- */
.y4-estrade {
  background: var(--encre-nuit);
  color: var(--papier-vif);
  border-bottom: 1px solid var(--filet-nuit);
  box-shadow: inset 0 -3px 0 var(--or);
  padding-block: clamp(0.72rem, 1.6vw, 1.1rem);
}
.y4-estrade__rang {
  display: flex; flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1.6rem;
}
.y4-banniere {
  font-family: var(--police-titre);
  font-size: clamp(1.32rem, 1.1rem + 0.95vw, 1.92rem);
  font-weight: 600;
  color: var(--papier-vif);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.y4-banniere:hover { color: #fff; }
.y4-banniere span {
  display: block;
  font-family: var(--police-sans);
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--brique-vif);
  margin-top: 0.34rem;
}
.y4-cortege ul {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 1.3rem;
  list-style: none; margin: 0; padding: 0;
}
.y4-cortege a {
  font-family: var(--police-sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--nuit-doux);
  text-decoration: none;
  padding-block: 0.25rem;
}
.y4-cortege a:hover { color: var(--brique-vif); }

/* --- Fil (breadcrumb) ------------------------------------------------------ */
.y4-fil { padding-block: clamp(0.85rem, 1.8vw, 1.3rem); }
.y4-fil ol {
  display: flex; flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  list-style: none; margin: 0; padding: 0;
  font-family: var(--police-sans);
  font-size: 0.79rem;
  color: var(--encre-douce);
}
.y4-fil li + li::before {
  content: "›";
  margin-right: 0.55rem;
  color: var(--or);
}
.y4-fil a { color: var(--encre-douce); }
.y4-fil a:hover { color: var(--brique); }
.y4-fil [aria-current="page"] { color: var(--encre); font-weight: 600; }

/* =========================================================================
   L'AFFICHE · home hero, a typographic ceremony poster (no photograph)
   ========================================================================= */

.y4-affiche {
  background: var(--encre-nuit);
  color: var(--papier-vif);
  padding-block: clamp(1.6rem, 3.6vw, 2.8rem);
}
.y4-affiche__cadre {
  border: 1px solid var(--or);
  outline: 1px solid var(--or);
  outline-offset: 4px;
  margin: 5px;
  padding: clamp(1.4rem, 3.4vw, 2.6rem) clamp(1.1rem, 3.4vw, 2.6rem);
  text-align: center;
}
.y4-affiche__kicker {
  display: flex; align-items: center; justify-content: center;
  gap: 0.9rem;
  font-family: var(--police-sans);
  font-size: 0.74rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--brique-vif);
  margin: 0 0 1.15rem;
}
.y4-affiche__kicker .y4-glyphe { color: var(--or); }
.y4-affiche__kicker::before,
.y4-affiche__kicker::after {
  content: "";
  flex: 0 1 4.2rem;
  border-top: 1px solid var(--or);
  opacity: 0.75;
}
.y4-affiche__cadre h1 {
  color: #f8f2e2;
  margin-inline: auto;
  max-width: 24ch;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.y4-affiche__deck {
  font-size: clamp(1rem, 0.94rem + 0.34vw, 1.18rem);
  line-height: 1.58;
  max-width: 60ch;
  margin: 1.1rem auto 0;
  color: var(--nuit-doux);
}
/* Double rule + edition line: the poster signature. */
.y4-affiche__edition {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.55rem 1rem;
  max-width: 46rem;
  margin: 1.4rem auto 0;
  padding-top: 0.85rem;
  border-top: 3px double rgba(214, 201, 169, 0.5);
  font-family: var(--police-sans);
  font-size: 0.73rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--brique-vif);
}
.y4-affiche__edition .y4-glyphe { color: var(--or); }
.y4-affiche__edition em {
  font-style: normal;
  color: var(--nuit-doux);
  letter-spacing: 0.08em;
}

/* =========================================================================
   RUBRIQUES (sections), numbered 01 to 06
   ========================================================================= */

.y4-rubrique { padding-block: clamp(1.9rem, 4.4vw, 3.5rem); }
.y4-rubrique--creux { background: var(--papier-creux); }
.y4-rubrique__tete {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 2rem;
  border-bottom: var(--filet-fin);
  padding-bottom: 0.6rem;
  margin-bottom: clamp(1.2rem, 2.6vw, 1.9rem);
}
.y4-rubrique__numero {
  font-family: var(--police-sans);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--brique);
  margin-right: 0.7rem;
}
.y4-rubrique__titre { font-size: var(--echelle-h2); }
.y4-rubrique__note {
  margin: 0;
  color: var(--encre-douce);
  font-size: 0.92rem;
  max-width: 44ch;
}

/* Fleuron: the SVG ornament between the great sections. */
.y4-fleuron {
  display: flex;
  justify-content: center;
  padding-block: clamp(0.4rem, 1.2vw, 1rem);
  color: var(--or);
}

/* The plaque: small-caps kicker above titles. */
.y4-plaque {
  font-family: var(--police-sans);
  font-size: 0.72rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--brique);
  margin: 0 0 0.55rem;
}

/* =========================================================================
   LES TRIBUNES · asymmetric mosaic of grandstand cards
   ========================================================================= */

.y4-tribunes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gouttiere);
  list-style: none; margin: 0; padding: 0;
}
.y4-tribune { margin: 0; }
.y4-tribune--plein   { grid-column: span 6; }
.y4-tribune--large   { grid-column: span 4; }
.y4-tribune--moitie  { grid-column: span 3; }
.y4-tribune--petit   { grid-column: span 2; }
.y4-tribune--decale  { transform: translateY(var(--decalage)); }
.y4-tribune--decale2 { transform: translateY(calc(var(--decalage) * 0.5)); }
.y4-tribunes--denses { padding-bottom: var(--decalage); }

.y4-tribune__cadre {
  position: relative;
  overflow: hidden;
  border-radius: var(--angle);
  border: var(--filet-fin);
  background: var(--papier-creux);
}
.y4-tribune__cadre::after {     /* night tint on hover; link stays on the title */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22, 34, 47, 0) 58%, rgba(22, 34, 47, 0.26));
  opacity: 0;
  transition: opacity var(--vitesse);
}
.y4-tribune:hover .y4-tribune__cadre::after,
.y4-tribune:focus-within .y4-tribune__cadre::after { opacity: 1; }
.y4-tribune__cadre--pano     { aspect-ratio: 21 / 9; }
.y4-tribune__cadre--paysage  { aspect-ratio: 4 / 3; }
.y4-tribune__cadre--carre    { aspect-ratio: 1 / 1; }
.y4-tribune__cadre--portrait { aspect-ratio: 3 / 4; }
.y4-tribune__vue {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}
.y4-tribune:hover .y4-tribune__vue { transform: scale(1.02); }

.y4-tribune__cartel { padding-top: 0.7rem; }
.y4-tribune__titre { margin: 0 0 0.3rem; }
.y4-tribune__lien {
  color: var(--encre);
  text-decoration: none;
  background-image: linear-gradient(var(--brique), var(--brique));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 96%;
  transition: background-size var(--vitesse), color var(--vitesse);
}
.y4-tribune__lien:hover { color: var(--brique); background-size: 100% 2px; }
.y4-tribune__note {
  margin: 0;
  color: var(--encre-douce);
  font-size: 0.92rem;
  line-height: 1.5;
}
.y4-tribune__indication {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--police-sans);
  font-size: 0.7rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid currentColor;
  border-radius: var(--angle);
  padding: 0.14rem 0.5rem;
}

/* =========================================================================
   LE REGISTRE · dated feed on the home
   ========================================================================= */

.y4-registre {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: calc(var(--gouttiere) * 1.5);
}
.y4-entree {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.05rem;
  padding-block: 1.1rem;
  border-bottom: var(--filet-fin);
  margin: 0;
}
.y4-registre .y4-entree:nth-last-child(-n+2) { border-bottom: 0; }
.y4-entree__vue {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--angle);
  border: var(--filet-fin);
}
.y4-jour {
  margin: 0 0 0.3rem;
  font-family: var(--police-sans);
  font-size: 0.72rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--brique);
}
.y4-entree h3 { margin: 0 0 0.3rem; }
.y4-entree h3 a { color: var(--encre); text-decoration: none; }
.y4-entree h3 a:hover { color: var(--brique); text-decoration: underline; }
.y4-entree p { margin: 0; color: var(--encre-douce); font-size: 0.93rem; }

/* =========================================================================
   ARTICLES · ouverture, planche, colonne
   ========================================================================= */

.y4-ouverture {
  padding-block: clamp(0.4rem, 1.5vw, 1.1rem) clamp(1.3rem, 3vw, 2.1rem);
  max-width: 56rem;
}
.y4-ouverture__chapo {
  font-size: clamp(1.07rem, 1rem + 0.48vw, 1.3rem);
  line-height: 1.56;
  color: var(--encre-douce);
  max-width: 58ch;
  margin: 0.9rem 0 0;
}
.y4-indications {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  list-style: none; margin: 1.05rem 0 0; padding: 0;
  font-family: var(--police-sans);
  font-size: 0.79rem;
  color: var(--encre-douce);
  border-top: var(--filet-fin);
  padding-top: 0.8rem;
}
.y4-indications a { color: var(--encre-douce); }
.y4-indications a:hover { color: var(--brique); }

.y4-planche { margin: 0; }
.y4-planche__vue {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--angle);
  border: var(--filet-fin);
}

.y4-colonne {
  max-width: var(--mesure);
  padding-block: clamp(1.5rem, 3.4vw, 2.5rem) clamp(1.9rem, 4.4vw, 3.2rem);
}
.y4-colonne > * + * { margin-top: 0.9em; }
.y4-colonne h2 {
  margin-top: 1.75em;
  padding-bottom: 0.26rem;
  border-bottom: var(--filet-fin);
}
.y4-colonne h3 { margin-top: 1.35em; }
.y4-colonne ul, .y4-colonne ol { padding-left: 1.4rem; }
.y4-colonne li + li { margin-top: 0.45em; }
.y4-colonne strong { color: var(--encre); font-weight: 700; }
@media (prefers-color-scheme: dark) {
  .y4-colonne strong { color: #fff; }
}

/* Lettrine: the opening letter of a piece, as on a ceremony program. */
.y4-colonne > p:first-of-type::first-letter {
  font-family: var(--police-titre);
  font-weight: 600;
  float: left;
  font-size: 3.05em;
  line-height: 0.82;
  padding-right: 0.12em;
  padding-top: 0.06em;
  color: var(--brique);
}

/* Quote: exergue. */
.y4-exergue {
  margin: 1.6em 0;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 3px solid var(--or);
  font-size: 1.14em;
  font-style: italic;
  color: var(--encre);
}

/* Lieu: the time-and-place box, paper with a gold rule. */
.y4-lieu {
  margin: 1.7em 0;
  background: var(--papier-vif);
  border: var(--filet-fin);
  border-left: 3px solid var(--or);
  border-radius: var(--angle);
  padding: 1rem 1.25rem;
  font-size: 0.96em;
}
.y4-lieu h3, .y4-lieu h4 {
  font-family: var(--police-sans);
  font-size: 0.76rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--or);
  margin: 0 0 0.55rem;
}
.y4-lieu ul, .y4-lieu p { margin: 0; }
.y4-lieu li + li { margin-top: 0.4em; }

/* Horaire: the schedule table, program-of-the-day style. */
.y4-horaire {
  overflow-x: auto;
  margin: 1.5em 0;
  border: var(--filet-fin);
  border-radius: var(--angle);
}
.y4-horaire table {
  border-collapse: collapse;
  width: 100%;
  min-width: 32rem;
  font-size: 0.93em;
}
.y4-horaire th, .y4-horaire td {
  text-align: left;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--filet);
  vertical-align: top;
}
.y4-horaire caption {
  caption-side: top;
  text-align: left;
  padding: 0.6rem 0.85rem;
  font-family: var(--police-sans);
  font-size: 0.75rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--brique);
  border-bottom: 1px solid var(--filet);
}
.y4-horaire thead th {
  background: var(--encre-nuit);
  color: var(--papier-vif);
  font-family: var(--police-sans);
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
}
.y4-horaire tr:last-child td { border-bottom: 0; }
.y4-horaire tbody tr:nth-child(even) { background: var(--papier-vif); }
.y4-horaire td:first-child { white-space: nowrap; font-weight: 600; }

/* Avis: the notice card, ink ground, bright brick heading. */
.y4-avis {
  margin: 1.7em 0;
  background: var(--encre-nuit);
  color: var(--nuit-texte);
  border-radius: var(--angle);
  padding: 1.15rem 1.3rem 1.25rem;
  border: 1px solid var(--filet-nuit);
}
.y4-avis h3, .y4-avis h4 {
  font-family: var(--police-sans);
  font-size: 0.77rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--brique-vif);
  margin: 0 0 0.7rem;
}
.y4-avis p, .y4-avis ul { margin: 0; font-size: 0.96rem; }
.y4-avis strong { color: #fff; font-variant-numeric: tabular-nums; }
.y4-avis p + p, .y4-avis ul { margin-top: 0.5rem; }
.y4-avis a { color: var(--brique-vif); }

/* Astuce: the light tip card with the brick filet. */
.y4-astuce {
  margin: 1.7em 0;
  background: var(--papier-vif);
  border: var(--filet-fin);
  border-left: 3px solid var(--brique);
  border-radius: var(--angle);
  padding: 1rem 1.25rem;
  font-size: 0.96em;
}
.y4-astuce h3, .y4-astuce h4 {
  font-family: var(--police-sans);
  font-size: 0.76rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--brique);
  margin: 0 0 0.5rem;
}
.y4-astuce p, .y4-astuce ul { margin: 0; }
.y4-astuce strong { color: var(--brique); }

/* Read next. */
.y4-suite {
  margin-top: 2.3em;
  padding-top: 1.15rem;
  border-top: 3px double var(--filet);
}
.y4-suite h2 {
  font-size: 1.18rem;
  border-bottom: 0;
  margin: 0 0 0.55rem;
}
.y4-suite ul { list-style: none; margin: 0; padding: 0; }
.y4-suite li { padding: 0.3rem 0; }
.y4-suite li::before {
  content: "·";
  color: var(--brique);
  margin-right: 0.55rem;
  font-weight: 700;
}

/* =========================================================================
   LE SOCLE (footer)
   ========================================================================= */

.y4-socle {
  margin-top: var(--souffle);
  background: var(--encre-nuit);
  color: var(--nuit-texte);
  box-shadow: inset 0 3px 0 var(--or);
}
.y4-socle__rang {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--gouttiere) * 1.5);
  padding-block: clamp(1.9rem, 4.4vw, 3rem);
}
.y4-socle h2 {
  font-family: var(--police-sans);
  font-size: 0.77rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--brique-vif);
  margin-bottom: 0.7rem;
}
.y4-socle ul { list-style: none; margin: 0; padding: 0; }
.y4-socle li { padding-block: 0.22rem; }
.y4-socle a {
  font-family: var(--police-sans);
  font-size: 0.87rem;
  color: var(--nuit-doux);
  text-decoration: none;
}
.y4-socle a:hover { color: var(--brique-vif); text-decoration: underline; }
.y4-socle__bas {
  border-top: 1px solid var(--filet-nuit);
  padding-block: 1.05rem;
  font-family: var(--police-sans);
  font-size: 0.78rem;
  color: var(--nuit-doux);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.55rem 0.9rem;
}
.y4-socle__bas .y4-glyphe { color: var(--or); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1080px) {
  .y4-tribune--large  { grid-column: span 6; }
  .y4-tribune--moitie { grid-column: span 3; }
  .y4-tribune--petit  { grid-column: span 3; }
  .y4-tribune--decale, .y4-tribune--decale2 { transform: none; }
  .y4-tribunes--denses { padding-bottom: 0; }
}

@media (max-width: 760px) {
  .y4-tribunes { grid-template-columns: repeat(2, 1fr); }
  .y4-tribune--large, .y4-tribune--moitie, .y4-tribune--petit { grid-column: span 2; }
  .y4-registre { grid-template-columns: 1fr; }
  .y4-entree { grid-template-columns: 118px 1fr; }
  .y4-socle__rang { grid-template-columns: 1fr; }
  .y4-rubrique__tete { flex-direction: column; gap: 0.3rem; }
  .y4-colonne > p:first-of-type::first-letter {
    font-size: 2.7em;
    float: none;
    padding: 0;
    color: inherit;
    font-family: inherit;
  }
}

@media (max-width: 480px) {
  .y4-entree { grid-template-columns: 1fr; }
  .y4-cortege ul { gap: 0.35rem 0.95rem; }
}

/* Motion courtesy. */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  .y4-tribune:hover .y4-tribune__vue { transform: none; }
}

/* Print: a ceremony program on paper. */
@media print {
  .y4-estrade, .y4-socle, .y4-evite, .y4-fil, .y4-fleuron { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .y4-colonne { max-width: none; }
  .y4-affiche { background: #fff; color: #000; }
  .y4-affiche__cadre h1, .y4-affiche__deck { color: #000; }
  .y4-avis { background: #fff; color: #000; border: 1pt solid #000; }
}
