/* =========================================================================
   PICKET THILL FIELD NOTES — « carnet de terrain » design system, prefix pt-
   Vocabulary: the naturalist's journal and the river, in French as a
   signature: berge (content bank = width), couverture (notebook cover =
   header), boite (fly box = nav), frontispice (typographic title page =
   hero), cours (numbered reach = section), fiche (observation card = card),
   etiquette (specimen label = card caption), journal/sortie (outing log =
   dated feed), ouverture (article head), planche (plate = lead image),
   colonne (reading column), releve (measurement table), station (data
   post, dark box), note (field note box), derive (the drift = read next),
   index (back of book = footer), symbole (inline SVG glyphs: dry fly,
   feather, rod, track), ornement (rule separator).
   Palette: willow green + river ochre + pebble grey + cream paper.
   No blue, no remote font, no gradient device, no photo hero on the home:
   the frontispice is pure typography, like a naturalist's title page.
   Dark mode is automatic. ========================================================================= */

:root {
  color-scheme: light dark;

  /* ---- 1. COULEURS · la riviere et le papier --------------------------- */
  --papier:        #f7f2e3;  /* cream paper of the field journal           */
  --papier-creux:  #ece5cf;  /* reserves, alternated sections              */
  --papier-vif:    #fbf8ec;  /* lightest reserve, notes, even table rows   */
  --encre:         #26291f;  /* pebble-black ink: text                     */
  --encre-nuit:    #1e221a;  /* willow night: header, footer, stations     */
  --encre-douce:   #5e6353;  /* pebble grey: captions, meta, chapo         */
  --saule:         #416636;  /* willow green: links, strong (>=4.5:1)      */
  --saule-fonce:   #2f4f27;  /* pressed / hover                            */
  --ocre:          #8f651c;  /* river ochre: accent, lettrines, plaques    */
  --ocre-clair:    #c69a4e;  /* ochre on night grounds                     */
  --galet:         #83887a;  /* pebble: quiet indications                  */
  --filet:         #d8d0b2;  /* hairline on paper                          */
  --filet-nuit:    #3a4030;  /* hairline on night                          */

  /* Dark mode: the same journal by headlamp. */
  --nuit-papier:   #161a11;
  --nuit-creux:    #1e2416;
  --nuit-vif:      #242b1b;
  --nuit-texte:    #e9e6d2;
  --nuit-doux:     #a9ae95;

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

  --titre-graisse: 600;
  --titre-interlettre: 0.004em;
  --caps-interlettrage: 0.22em;

  --corps-taille: clamp(1.02rem, 0.97rem + 0.22vw, 1.13rem);
  --corps-interligne: 1.67;
  --echelle-h1: clamp(2.3rem, 1.1rem + 4.1vw, 4.6rem);
  --echelle-h2: clamp(1.5rem, 1.1rem + 1.5vw, 2.3rem);
  --echelle-h3: clamp(1.13rem, 1.02rem + 0.55vw, 1.44rem);
  --echelle-h4: 1.05rem;

  /* ---- 3. RYTHME --------------------------------------------------------- */
  --mesure:        62ch;
  --mesure-large:  1360px;
  --marge-page:    clamp(1.1rem, 4vw, 4rem);
  --gouttiere:     clamp(0.9rem, 2.2vw, 2rem);
  --souffle:       clamp(2.4rem, 5.5vw, 5.2rem);
  --remous-h:      clamp(1.2rem, 3vw, 3.2rem);

  /* ---- 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-creux);
    --papier-vif:   var(--nuit-vif);
    --encre:        var(--nuit-texte);
    --encre-douce:  var(--nuit-doux);
    --saule:        #a5c98f;
    --saule-fonce:  #c0dcae;
    --ocre:         var(--ocre-clair);
    --galet:        #7d8271;
    --filet:        #3c4433;
  }
}

/* =========================================================================
   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.pt-symbole { display: inline-block; vertical-align: -0.12em; }

h1, h2, h3, h4 {
  font-family: var(--police-titre);
  font-weight: var(--titre-graisse);
  letter-spacing: var(--titre-interlettre);
  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.12em; }
a {
  color: var(--saule);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--vitesse);
}
a:hover { color: var(--saule-fonce); }
:focus-visible {
  outline: 2px solid var(--ocre);
  outline-offset: 3px;
  border-radius: 1px;
}
hr { border: 0; border-top: var(--filet-fin); margin: var(--souffle) 0; }

::selection { background: var(--ocre); color: #fbf8ec; }

/* Measurements: temperatures, sizes, dates read in tabular numerals. */
.pt-releve, .pt-station, .pt-note, .pt-quand, .pt-mentions,
.pt-cours__numero, .pt-frontispice__edition {
  font-variant-numeric: tabular-nums;
}

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

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

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

/* --- Couverture (the notebook's cover, header) --------------------------- */
.pt-couverture {
  background: var(--encre-nuit);
  color: var(--nuit-texte);
  border-bottom: 3px double var(--ocre-clair);
  padding-block: clamp(0.8rem, 1.7vw, 1.2rem);
}
.pt-couverture__rang {
  display: flex; flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1.6rem;
}
.pt-couverture__mot {
  font-family: var(--police-titre);
  font-size: clamp(1.32rem, 1.1rem + 1vw, 1.95rem);
  color: var(--nuit-texte);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.pt-couverture__mot:hover { color: #fff; }
.pt-couverture__mot span {
  display: block;
  font-family: var(--police-texte);
  font-size: 0.62rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--ocre-clair);
  margin-top: 0.34rem;
}
.pt-boite ul {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  list-style: none; margin: 0; padding: 0;
}
.pt-boite a {
  color: var(--nuit-doux);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.045em;
  padding-block: 0.25rem;
  transition: color var(--vitesse);
}
.pt-boite a:hover { color: var(--ocre-clair); }

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

/* =========================================================================
   FRONTISPICE · the home hero, a pure typographic title page like a
   naturalist's journal: rules above and below, centered composition,
   deliberately short so the reaches grid starts above the fold.
   ========================================================================= */

.pt-frontispice { border-bottom: var(--filet-fin); }
.pt-frontispice__cadre {
  border-top: 3px double var(--ocre);
  border-bottom: 3px double var(--ocre);
  text-align: center;
  max-width: 64rem;
  margin-inline: auto;
  padding: clamp(2rem, 4.6vw, 3.4rem) var(--marge-page) clamp(1.8rem, 4.2vw, 3rem);
}
.pt-frontispice__surtitre {
  display: flex; align-items: center; justify-content: center;
  gap: 0.8rem;
  font-size: 0.74rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--ocre);
  margin: 0 0 1.1rem;
}
.pt-frontispice__surtitre::before, .pt-frontispice__surtitre::after {
  content: "";
  width: clamp(2rem, 6vw, 4.5rem);
  border-top: 1px solid currentColor;
  opacity: 0.65;
}
.pt-frontispice__surtitre .pt-symbole { color: var(--galet); }
.pt-frontispice h1 {
  max-width: 21ch;
  margin-inline: auto;
  color: var(--encre);
}
.pt-frontispice__deck {
  font-size: clamp(1rem, 0.94rem + 0.34vw, 1.19rem);
  line-height: 1.58;
  max-width: 60ch;
  margin: 1.05rem auto 0;
  color: var(--encre-douce);
  text-wrap: pretty;
}
.pt-frontispice__edition {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.55rem 1.1rem;
  margin: 1.5rem auto 0;
  max-width: 46rem;
  border-top: var(--filet-fin);
  padding-top: 0.85rem;
  font-size: 0.76rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--galet);
}
.pt-frontispice__edition .pt-symbole { color: var(--ocre); }
.pt-frontispice__edition em {
  font-style: normal;
  color: var(--encre);
  letter-spacing: 0.08em;
}

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

.pt-cours { padding-block: clamp(1.9rem, 4.4vw, 3.6rem); }
.pt-cours--creux { background: var(--papier-creux); }
.pt-cours__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);
}
.pt-cours__numero {
  font-family: var(--police-texte);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--ocre);
  margin-right: 0.7rem;
}
.pt-cours__titre { font-size: var(--echelle-h2); }
.pt-cours__note {
  margin: 0;
  color: var(--encre-douce);
  font-size: 0.92rem;
  max-width: 42ch;
}

/* Ornement: a rule separator between the great sections. */
.pt-ornement {
  display: flex;
  justify-content: center;
  padding-block: clamp(0.4rem, 1.2vw, 1rem);
  color: var(--galet);
}

/* Plaque: small-caps kicker above titles. */
.pt-plaque {
  font-size: 0.73rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--ocre);
  margin: 0 0 0.55rem;
}

/* =========================================================================
   FICHES · asymmetric observation-card mosaic
   ========================================================================= */

.pt-fiches {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gouttiere);
  list-style: none; margin: 0; padding: 0;
}
.pt-fiche { margin: 0; }
.pt-fiche--plein   { grid-column: span 6; }
.pt-fiche--large   { grid-column: span 4; }
.pt-fiche--moitie  { grid-column: span 3; }
.pt-fiche--petit   { grid-column: span 2; }
.pt-fiche--remous  { transform: translateY(var(--remous-h)); }
.pt-fiche--remous2 { transform: translateY(calc(var(--remous-h) * 0.5)); }
.pt-fiches--denses { padding-bottom: var(--remous-h); }

.pt-fiche__cadre {
  position: relative;
  overflow: hidden;
  border-radius: var(--angle);
  border: var(--filet-fin);
  background: var(--papier-creux);
}
/* River shade rises on hover; the link stays on the title. */
.pt-fiche__cadre::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30, 34, 26, 0) 58%, rgba(30, 34, 26, 0.28));
  opacity: 0;
  transition: opacity var(--vitesse);
}
.pt-fiche:hover .pt-fiche__cadre::after,
.pt-fiche:focus-within .pt-fiche__cadre::after { opacity: 1; }
.pt-fiche__cadre--pano     { aspect-ratio: 21 / 9; }
.pt-fiche__cadre--paysage  { aspect-ratio: 4 / 3; }
.pt-fiche__cadre--carre    { aspect-ratio: 1 / 1; }
.pt-fiche__cadre--portrait { aspect-ratio: 3 / 4; }
.pt-fiche__cadre--haut     { aspect-ratio: 2 / 3; }
.pt-fiche__vue {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}
.pt-fiche:hover .pt-fiche__vue { transform: scale(1.02); }

.pt-fiche__etiquette { padding-top: 0.7rem; }
.pt-fiche__titre { margin: 0 0 0.3rem; }
.pt-fiche__lien {
  color: var(--encre);
  text-decoration: none;
  background-image: linear-gradient(var(--ocre), var(--ocre));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 96%;
  transition: background-size var(--vitesse), color var(--vitesse);
}
.pt-fiche__lien:hover { color: var(--ocre); background-size: 100% 2px; }
.pt-fiche__note {
  margin: 0;
  color: var(--encre-douce);
  font-size: 0.92rem;
  line-height: 1.5;
}
.pt-fiche__indication {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.71rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--galet);
  border: 1px solid currentColor;
  border-radius: var(--angle);
  padding: 0.14rem 0.5rem;
}

/* =========================================================================
   LE JOURNAL · the dated outing log on the home
   ========================================================================= */

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

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

.pt-ouverture {
  padding-block: clamp(0.4rem, 1.5vw, 1.1rem) clamp(1.3rem, 3vw, 2.1rem);
  max-width: 56rem;
}
.pt-ouverture__chapo {
  font-size: clamp(1.08rem, 1rem + 0.5vw, 1.32rem);
  line-height: 1.55;
  color: var(--encre-douce);
  max-width: 58ch;
  margin: 0.9rem 0 0;
}
.pt-mentions {
  display: flex; flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  list-style: none; margin: 1.05rem 0 0; padding: 0;
  font-size: 0.81rem;
  color: var(--encre-douce);
  border-top: var(--filet-fin);
  padding-top: 0.8rem;
}
.pt-mentions a { color: var(--encre-douce); }
.pt-mentions a:hover { color: var(--saule); }

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

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

/* Lettrine: the opening letter of a field entry, in river ochre. */
.pt-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(--ocre);
}

/* Note: a field note boxed on lighter paper. */
.pt-note {
  margin: 1.7em 0;
  background: var(--papier-vif);
  border: var(--filet-fin);
  border-left: 3px solid var(--saule);
  border-radius: var(--angle);
  padding: 1rem 1.25rem;
  font-size: 0.96em;
}
.pt-note h4 {
  font-family: var(--police-texte);
  font-size: 0.78rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--saule);
  margin: 0 0 0.5rem;
}
.pt-note p, .pt-note ul { margin: 0; }
.pt-note p + p, .pt-note ul { margin-top: 0.5rem; }
.pt-note strong { color: var(--saule-fonce); }

/* Station: the data post, willow night ground, ochre heading, tabular data. */
.pt-station {
  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);
}
.pt-station h2, .pt-station h3, .pt-station h4 {
  font-family: var(--police-texte);
  font-size: 0.78rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--ocre-clair);
  margin: 0 0 0.7rem;
  border: 0;
  padding: 0;
}
.pt-station p, .pt-station ul { margin: 0; font-size: 0.95rem; color: var(--nuit-texte); }
.pt-station strong { color: #fff; font-variant-numeric: tabular-nums; }
.pt-station p + p, .pt-station ul { margin-top: 0.5rem; }

/* Releve: the measurement table, notebook style. */
.pt-releve {
  overflow-x: auto;
  margin: 1.5em 0;
  border: var(--filet-fin);
  border-radius: var(--angle);
}
.pt-releve table {
  border-collapse: collapse;
  width: 100%;
  min-width: 34rem;
  font-size: 0.92em;
}
.pt-releve th, .pt-releve td {
  text-align: left;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--filet);
  vertical-align: top;
}
.pt-releve caption {
  caption-side: top;
  text-align: left;
  padding: 0.6rem 0.85rem;
  font-size: 0.76rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--ocre);
  border-bottom: 1px solid var(--filet);
}
.pt-releve thead th {
  background: var(--encre-nuit);
  color: var(--nuit-texte);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--police-texte);
}
.pt-releve tr:last-child td { border-bottom: 0; }
.pt-releve tbody tr:nth-child(even) { background: var(--papier-vif); }

/* Exergue: a quotation set off by the ochre rule. */
.pt-exergue {
  margin: 1.6em 0;
  padding: 0.2rem 0 0.2rem 1.4rem;
  border-left: 3px solid var(--ocre);
  font-family: var(--police-titre);
  font-size: 1.15em;
  color: var(--saule-fonce);
}
@media (prefers-color-scheme: dark) { .pt-exergue { color: #c0dcae; } }

/* Derive: read next, the drift carries on. */
.pt-derive {
  margin-top: 2.3em;
  padding-top: 1.15rem;
  border-top: 3px double var(--filet);
}
.pt-derive h2 {
  font-size: 1.18rem;
  border-bottom: 0;
  margin: 0 0 0.55rem;
}
.pt-derive ul { list-style: none; margin: 0; padding: 0; }
.pt-derive li { padding: 0.3rem 0; }
.pt-derive li::before {
  content: "·";
  color: var(--ocre);
  margin-right: 0.55rem;
  font-weight: 700;
}

/* =========================================================================
   L'INDEX (footer)
   ========================================================================= */

.pt-index {
  margin-top: var(--souffle);
  background: var(--encre-nuit);
  color: var(--nuit-texte);
  border-top: 3px double var(--ocre-clair);
}
.pt-index__rang {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--gouttiere) * 1.5);
  padding-block: clamp(1.9rem, 4.4vw, 3rem);
}
.pt-index h2 {
  font-family: var(--police-texte);
  font-size: 0.78rem;
  letter-spacing: var(--caps-interlettrage);
  text-transform: uppercase;
  color: var(--ocre-clair);
  margin-bottom: 0.7rem;
}
.pt-index ul { list-style: none; margin: 0; padding: 0; }
.pt-index li { padding-block: 0.22rem; }
.pt-index a { color: var(--nuit-doux); text-decoration: none; transition: color var(--vitesse); }
.pt-index a:hover { color: var(--ocre-clair); text-decoration: underline; }
.pt-index__bas {
  border-top: 1px solid var(--filet-nuit);
  padding-block: 1.05rem;
  font-size: 0.79rem;
  color: var(--nuit-doux);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.55rem 0.9rem;
}
.pt-index__bas .pt-symbole { color: var(--ocre-clair); }

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

@media (max-width: 1080px) {
  .pt-fiche--large  { grid-column: span 6; }
  .pt-fiche--moitie { grid-column: span 3; }
  .pt-fiche--petit  { grid-column: span 3; }
  .pt-fiche--remous, .pt-fiche--remous2 { transform: none; }
  .pt-fiches--denses { padding-bottom: 0; }
}

@media (max-width: 760px) {
  .pt-fiches { grid-template-columns: repeat(2, 1fr); }
  .pt-fiche--large, .pt-fiche--moitie, .pt-fiche--petit { grid-column: span 2; }
  .pt-journal { grid-template-columns: 1fr; }
  .pt-sortie { grid-template-columns: 118px 1fr; }
  .pt-index__rang { grid-template-columns: 1fr; }
  .pt-cours__tete { flex-direction: column; gap: 0.3rem; }
  .pt-frontispice h1 { max-width: 24ch; }
  .pt-colonne > p:first-of-type::first-letter {
    font-size: 2.7em;
    float: none;
    padding: 0;
    color: inherit;
    font-family: inherit;
  }
}

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

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

/* Print: the journal on paper. */
@media print {
  .pt-couverture, .pt-index, .pt-evite, .pt-fil, .pt-ornement { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .pt-colonne { max-width: none; }
  .pt-station { background: #fff; color: #000; border: 1pt solid #000; }
  .pt-frontispice__cadre { border-color: #000; }
}
