/* ============================================================
   Eichenzell-Blog · Dorfmagazin aus dem Fuldatal
   Squelette journal-deux-col · préfixe ezb- · sans requête externe
   Voile héros EN DUR (pas de variable) : rgba(28,20,13,0.85)
   ============================================================ */

:root {
  --ezb-papier: #f6f1e3;
  --ezb-papier-hell: #fdfaf0;
  --ezb-papier-tief: #ece3cd;
  --ezb-tinte: #241d15;
  --ezb-tinte-weich: #63584a;
  --ezb-weinrot: #77202c;
  --ezb-weinrot-tief: #571420;
  --ezb-messing: #a5761d;
  --ezb-moos: #55663a;
  --ezb-nacht: #1c1510;
  --ezb-linie: #d9cfb6;
  --ezb-schrift-titel: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --ezb-schrift-text: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --ezb-schrift-ui: system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ezb-mass: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

body {
  margin: 0;
  background: var(--ezb-papier);
  color: var(--ezb-tinte);
  font-family: var(--ezb-schrift-text);
  font-size: 17px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--ezb-weinrot); text-decoration: none; }
a:hover { color: var(--ezb-weinrot-tief); text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--ezb-messing); outline-offset: 2px; border-radius: 2px; }

h1, h2, h3, h4 { font-family: var(--ezb-schrift-titel); line-height: 1.18; margin: 0 0 .45em; font-weight: 700; }
h1 { font-size: 2.35rem; letter-spacing: -0.01em; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1.1em; }
figure { margin: 1.6em 0; }
figcaption {
  font-family: var(--ezb-schrift-ui);
  font-size: .78rem;
  color: var(--ezb-tinte-weich);
  padding-top: .45em;
  border-top: 1px solid var(--ezb-linie);
  margin-top: .45em;
  line-height: 1.5;
}

/* ---------- Cadre de page ---------- */
.ezb-blatt { max-width: var(--ezb-mass); margin: 0 auto; padding: 0 22px; }
.ezb-spalten { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 40px; align-items: start; }
.ezb-obenrand {
  border-bottom: 1px solid var(--ezb-linie);
  font-family: var(--ezb-schrift-ui);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ezb-tinte-weich);
}
.ezb-obenrand .ezb-blatt { display: flex; justify-content: space-between; gap: 16px; padding: 7px 22px; }

/* ---------- Kopf / Marke ---------- */
.ezb-kopf { padding: 18px 0 14px; border-bottom: 3px double var(--ezb-tinte); }
.ezb-kopf__reihe { display: flex; align-items: center; gap: 14px; }
.ezb-marke__eichel { width: 44px; height: 44px; flex: 0 0 auto; }
.ezb-marke__name { font-family: var(--ezb-schrift-titel); font-size: 2rem; font-weight: 700; letter-spacing: -0.015em; color: var(--ezb-tinte); }
.ezb-marke__name em { font-style: normal; color: var(--ezb-weinrot); }
.ezb-marke__motto { font-family: var(--ezb-schrift-ui); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ezb-messing); margin-top: 2px; }
.ezb-leiste { margin-top: 14px; }
.ezb-leiste ul { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 22px; margin: 0; padding: 0; }
.ezb-leiste a {
  font-family: var(--ezb-schrift-ui);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--ezb-tinte);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.ezb-leiste a:hover { color: var(--ezb-weinrot); border-bottom-color: var(--ezb-weinrot); text-decoration: none; }
.ezb-leiste a[aria-current="page"] { color: var(--ezb-weinrot); border-bottom-color: var(--ezb-weinrot); }

/* ---------- Fil d'Ariane ---------- */
.breadcrumb { font-family: var(--ezb-schrift-ui); font-size: .78rem; color: var(--ezb-tinte-weich); padding: 12px 0 2px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--ezb-messing); }
.breadcrumb a { color: var(--ezb-tinte-weich); }
.breadcrumb a:hover { color: var(--ezb-weinrot); }
.breadcrumb [aria-current="page"] { color: var(--ezb-tinte); }

/* ---------- Vorspann (héros bande, compact) ---------- */
.ezb-vorspann { position: relative; overflow: hidden; color: #f4eddd; }
.ezb-vorspann__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ezb-vorspann__schleier { position: absolute; inset: 0; background: rgba(28,20,13,0.85); }
.ezb-vorspann__inhalt { position: relative; padding: 24px 0 20px; max-width: 900px; }
.ezb-vorspann__kicker {
  font-family: var(--ezb-schrift-ui);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #d8b563;
  margin: 0 0 7px;
}
.ezb-vorspann__zeile { font-family: var(--ezb-schrift-ui); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: #cfc4ad; margin: 0 0 10px; }
.ezb-vorspann h1, .ezb-vorspann .ezb-vorspann__titel { font-size: 1.9rem; color: #fdf8ec; margin: 0 0 10px; }
.ezb-vorspann__titel a { color: #fdf8ec; }
.ezb-vorspann__titel a:hover { color: #e9cf94; text-decoration: none; }
.ezb-vorspann__lead { font-size: 0.98rem; line-height: 1.55; color: #e7ddc8; max-width: 64ch; margin: 0 0 12px; }
.ezb-vorspann__zahlen { display: flex; flex-wrap: wrap; gap: 6px 30px; margin: 0; padding: 9px 0 0; border-top: 1px solid rgba(244,237,221,.28); }
.ezb-vorspann__zahl { font-family: var(--ezb-schrift-ui); }
.ezb-vorspann__zahl b { display: block; font-family: var(--ezb-schrift-titel); font-size: 1.25rem; color: #e9cf94; }
.ezb-vorspann__zahl span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: #cfc4ad; }

/* ---------- Rubrikkacheln (visibles < 700px) ---------- */
.ezb-kachelband { padding: 16px 0 8px; }
.ezb-kachelband__titelzeile { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.ezb-kachelband__titelzeile h2 { margin: 0; font-size: 1.2rem; }
.ezb-kachelband__titelzeile .ezb-strich { flex: 1; border-top: 1px solid var(--ezb-linie); }
.ezb-kacheln { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ezb-kachel {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  min-height: 132px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 1px 0 var(--ezb-linie);
  border-top: 3px solid var(--ezb-tinte);
}
.ezb-kachel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.ezb-kachel:hover img { transform: scale(1.04); }
.ezb-kachel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,20,13,0) 34%, rgba(28,20,13,.88) 100%); }
.ezb-kachel__text { position: relative; z-index: 1; padding: 12px; color: #fdf8ec; }
.ezb-kachel__text h3 { margin: 0 0 3px; font-size: 1.02rem; }
.ezb-kachel__text h3 a { color: #fdf8ec; }
.ezb-kachel__text h3 a:hover { color: #e9cf94; text-decoration: none; }
.ezb-kachel__text p { margin: 0; font-family: var(--ezb-schrift-ui); font-size: .72rem; line-height: 1.45; color: #ded3ba; }
.ezb-kachel--aktuelles { border-top-color: var(--ezb-weinrot); }
.ezb-kachel--vereine { border-top-color: var(--ezb-moos); }
.ezb-kachel--wirtschaft { border-top-color: var(--ezb-messing); }
.ezb-kachel--ausfluege { border-top-color: #33566b; }
.ezb-kachel--geschichte { border-top-color: #5a4a7a; }
.ezb-kachel--archiv { border-top-color: var(--ezb-tinte); }

/* ---------- Leitartikel ---------- */
.ezb-leitartikel { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: 26px; padding: 26px 0; border-bottom: 1px solid var(--ezb-linie); }
.ezb-leitartikel__bild { border-radius: 3px; overflow: hidden; align-self: start; }
.ezb-leitartikel__bild img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ezb-leitartikel__kicker { font-family: var(--ezb-schrift-ui); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ezb-weinrot); margin: 2px 0 8px; }
.ezb-leitartikel__datum { font-family: var(--ezb-schrift-ui); font-size: .78rem; color: var(--ezb-messing); letter-spacing: .08em; margin: 0 0 10px; }
.ezb-leitartikel h2 { font-size: 1.7rem; margin-bottom: 10px; }
.ezb-leitartikel__lead { color: var(--ezb-tinte-weich); font-size: 1.02rem; }
.ezb-weiter { font-family: var(--ezb-schrift-ui); font-size: .8rem; font-weight: 600; letter-spacing: .06em; white-space: nowrap; }
.ezb-weiter::after { content: " →"; }

/* ---------- Fluss (flux daté) ---------- */
.ezb-fluss { padding: 24px 0 8px; }
.ezb-fluss__kopf { display: flex; align-items: baseline; gap: 14px; border-bottom: 3px double var(--ezb-tinte); padding-bottom: 10px; margin-bottom: 6px; }
.ezb-fluss__kopf h2 { margin: 0; font-size: 1.3rem; }
.ezb-fluss__kopf .ezb-strich { flex: 1; border-top: 1px solid var(--ezb-linie); align-self: center; }
.ezb-fluss ul { list-style: none; margin: 0; padding: 0; }
.ezb-fluss-eintrag {
  display: grid;
  grid-template-columns: 108px minmax(0,1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ezb-linie);
}
.ezb-fluss-eintrag img { width: 108px; height: 82px; object-fit: cover; border-radius: 3px; }
.ezb-fluss-eintrag__datum { font-family: var(--ezb-schrift-ui); font-size: .74rem; font-weight: 600; letter-spacing: .1em; color: var(--ezb-messing); margin: 0 0 4px; }
.ezb-fluss-eintrag__rubrik { font-family: var(--ezb-schrift-ui); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ezb-tinte-weich); margin: 0 0 5px; }
.ezb-fluss-eintrag h3 { margin: 0 0 5px; font-size: 1.12rem; }
.ezb-fluss-eintrag p { margin: 0; font-size: .9rem; color: var(--ezb-tinte-weich); }

/* ---------- Randspalte (marge journal) ---------- */
.ezb-amrand { display: grid; gap: 22px; position: sticky; top: 18px; }
.ezb-kasten { background: var(--ezb-papier-hell); border: 1px solid var(--ezb-linie); border-radius: 3px; padding: 16px 16px 8px; }
.ezb-kasten__titel { font-family: var(--ezb-schrift-ui); font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ezb-weinrot); margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--ezb-linie); }
.ezb-kasten ul { list-style: none; margin: 0; padding: 0 0 8px; }
.ezb-kasten--dunkel { background: var(--ezb-nacht); border-color: var(--ezb-nacht); color: #e7ddc8; }
.ezb-kasten--dunkel .ezb-kasten__titel { color: #e9cf94; border-bottom-color: rgba(244,237,221,.2); }
.ezb-archiv-eintrag { display: grid; grid-template-columns: 64px minmax(0,1fr); gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(244,237,221,.14); }
.ezb-archiv-eintrag:last-child { border-bottom: 0; }
.ezb-archiv-eintrag img { width: 64px; height: 48px; object-fit: cover; border-radius: 2px; }
.ezb-archiv-eintrag__datum { font-family: var(--ezb-schrift-ui); font-size: .68rem; letter-spacing: .12em; color: #b7a06a; margin: 0 0 3px; }
.ezb-archiv-eintrag a { color: #f0e7d2; font-size: .92rem; }
.ezb-archiv-eintrag a:hover { color: #e9cf94; }
.ezb-sonntagsfrage { border-left: 4px solid var(--ezb-weinrot); background: var(--ezb-papier-tief); border-radius: 0 3px 3px 0; padding: 14px 16px 10px; }
.ezb-sonntagsfrage__titel { font-family: var(--ezb-schrift-titel); font-size: 1.1rem; margin: 0 0 6px; color: var(--ezb-weinrot); }
.ezb-sonntagsfrage p { font-size: .9rem; color: var(--ezb-tinte-weich); margin: 0 0 8px; }
.ezb-kompakt { list-style: none; margin: 0; padding: 0 0 8px; }
.ezb-kompakt li { display: flex; gap: 10px; align-items: baseline; padding: 8px 0; border-bottom: 1px dashed var(--ezb-linie); font-size: .93rem; }
.ezb-kompakt li:last-child { border-bottom: 0; }
.ezb-kompakt .ezb-punkt { color: var(--ezb-messing); flex: 0 0 auto; }

/* ---------- Zeitstrahl (chronique) ---------- */
.ezb-zeitstrahl { padding: 26px 0; }
.ezb-zeitstrahl__bahn { display: flex; gap: 10px; overflow-x: auto; padding: 18px 0 6px; position: relative; }
.ezb-zeitstrahl__bahn::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 1px solid var(--ezb-linie); }
.ezb-jahrknopf {
  position: relative;
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px solid var(--ezb-weinrot);
  background: var(--ezb-papier-hell);
  color: var(--ezb-weinrot);
  font-family: var(--ezb-schrift-titel);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ezb-jahrknopf:hover { background: var(--ezb-weinrot); color: #fdf8ec; text-decoration: none; }
.ezb-jahrknopf--heute { background: var(--ezb-weinrot); color: #fdf8ec; }

/* ---------- Articles ---------- */
.ezb-artikel { max-width: 760px; margin: 0 auto; }
.ezb-artikel__kopf { padding: 26px 0 18px; border-bottom: 3px double var(--ezb-tinte); margin-bottom: 22px; }
.ezb-artikel__rubrik { font-family: var(--ezb-schrift-ui); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.ezb-artikel__rubrik a { color: var(--ezb-weinrot); }
.ezb-artikel__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; font-family: var(--ezb-schrift-ui); font-size: .78rem; color: var(--ezb-tinte-weich); margin: 0 0 14px; }
.ezb-artikel__meta time { color: var(--ezb-messing); font-weight: 600; letter-spacing: .06em; }
.ezb-artikel__dek { font-size: 1.12rem; line-height: 1.55; color: var(--ezb-tinte-weich); font-style: italic; margin: 0; }
.ezb-artikel__aufmacher img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 3px; }
.ezb-artikel__text { font-size: 1.03rem; }
.ezb-artikel__text > p:first-of-type::first-letter {
  font-family: var(--ezb-schrift-titel);
  font-size: 3.1em;
  line-height: .82;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--ezb-weinrot);
  font-weight: 700;
}
.ezb-artikel__text h2 {
  font-size: 1.3rem;
  margin-top: 1.6em;
  padding-top: .5em;
  border-top: 1px solid var(--ezb-linie);
}
.ezb-artikel__text h2::before { content: "§ "; color: var(--ezb-messing); font-size: .9em; }
.ezb-artikel__hinweis {
  font-family: var(--ezb-schrift-ui);
  font-size: .74rem;
  color: var(--ezb-tinte-weich);
  background: var(--ezb-papier-tief);
  border-radius: 3px;
  padding: 10px 14px;
  margin: 0 0 1.4em;
}
.ezb-unterschrift { display: flex; gap: 14px; align-items: center; border-top: 1px solid var(--ezb-linie); border-bottom: 1px solid var(--ezb-linie); padding: 14px 0; margin: 26px 0; }
.ezb-unterschrift img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.ezb-unterschrift p { margin: 0; font-size: .9rem; }
.ezb-unterschrift b { font-family: var(--ezb-schrift-ui); font-size: .8rem; letter-spacing: .04em; }
.ezb-mehr { padding: 8px 0 26px; }
.ezb-mehr h2 { font-size: 1.2rem; }
.ezb-mehr ul { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; }
.ezb-mehr-eintrag img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 3px; margin-bottom: 8px; }
.ezb-mehr-eintrag h3 { font-size: .98rem; margin: 0 0 4px; }
.ezb-mehr-eintrag p { font-family: var(--ezb-schrift-ui); font-size: .72rem; color: var(--ezb-messing); margin: 0; letter-spacing: .08em; }

/* ---------- Rubriques & pages ---------- */
.ezb-rubrikkopf { padding: 22px 0 20px; border-bottom: 3px double var(--ezb-tinte); margin-bottom: 8px; }
.ezb-rubrikkopf__band { position: relative; border-radius: 3px; overflow: hidden; min-height: 190px; display: flex; align-items: flex-end; margin-bottom: 18px; }
.ezb-rubrikkopf__band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ezb-rubrikkopf__band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,20,13,.05) 30%, rgba(28,20,13,.82) 100%); }
.ezb-rubrikkopf__band h1 { position: relative; z-index: 1; color: #fdf8ec; padding: 16px 18px; margin: 0; font-size: 1.8rem; }
.ezb-rubrikintro { max-width: 74ch; }
.ezb-seitenliste { list-style: none; margin: 0; padding: 4px 0 0; }
.ezb-seitenliste li { padding: 12px 0; border-bottom: 1px solid var(--ezb-linie); display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 6px 18px; align-items: baseline; }
.ezb-seitenliste time { font-family: var(--ezb-schrift-ui); font-size: .76rem; color: var(--ezb-messing); font-weight: 600; letter-spacing: .08em; white-space: nowrap; }
.ezb-seitenliste a { font-family: var(--ezb-schrift-titel); font-size: 1.06rem; }

/* ---------- Jahrgang / Chronik ---------- */
.ezb-chronik { max-width: 860px; margin: 0 auto; }
.ezb-jahrgang__zahl {
  font-family: var(--ezb-schrift-titel);
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--ezb-weinrot);
  float: right;
  margin: 0 0 8px 22px;
  user-select: none;
}
.ezb-jahrgangsband { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 22px; align-items: start; margin: 22px 0; }
.ezb-jahrgangsband img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; }
.ezb-wiederaufgelegt { background: var(--ezb-papier-hell); border: 1px solid var(--ezb-linie); border-left: 4px solid var(--ezb-messing); border-radius: 0 3px 3px 0; padding: 14px 18px 6px; margin: 20px 0; }
.ezb-wiederaufgelegt h2 { font-size: 1.1rem; margin-bottom: 8px; }
.ezb-wiederaufgelegt ul { list-style: none; margin: 0; padding: 0 0 10px; }
.ezb-wiederaufgelegt li { padding: 7px 0; border-bottom: 1px dashed var(--ezb-linie); font-size: .95rem; }
.ezb-wiederaufgelegt li:last-child { border-bottom: 0; }
.ezb-themenfelder { list-style: none; margin: 0 0 1.2em; padding: 0; }
.ezb-themenfelder li { display: flex; gap: 12px; align-items: baseline; padding: 8px 0; border-bottom: 1px solid var(--ezb-linie); font-size: .95rem; }
.ezb-themenfelder .ezb-zaehler { font-family: var(--ezb-schrift-ui); font-size: .72rem; font-weight: 700; color: var(--ezb-papier-hell); background: var(--ezb-weinrot); border-radius: 2px; padding: 2px 8px; flex: 0 0 auto; }

/* ---------- Dienstseiten & 404 ---------- */
.ezb-dienst { max-width: 720px; margin: 0 auto; padding-bottom: 30px; }
.ezb-dienst h1 { border-bottom: 3px double var(--ezb-tinte); padding-bottom: 14px; }
.ezb-kontaktkarte { background: var(--ezb-nacht); color: #e7ddc8; border-radius: 3px; padding: 20px 22px; margin: 18px 0; }
.ezb-kontaktkarte a { color: #e9cf94; font-family: var(--ezb-schrift-ui); font-size: 1.05rem; font-weight: 600; }
.ezb-fehlerseite { text-align: center; padding: 70px 0 90px; }
.ezb-fehlerseite .ezb-fehlercode { font-family: var(--ezb-schrift-titel); font-size: 5rem; font-weight: 700; color: var(--ezb-weinrot); line-height: 1; }
.ezb-fehlerliste { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; padding: 0; font-family: var(--ezb-schrift-ui); font-size: .85rem; }

/* ---------- Fusszeile ---------- */
.ezb-fusszeile { background: var(--ezb-nacht); color: #cfc4ad; margin-top: 44px; }
.ezb-fusszeile .ezb-blatt { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding: 34px 22px; }
.ezb-fusszeile h2 { font-size: .8rem; font-family: var(--ezb-schrift-ui); letter-spacing: .2em; text-transform: uppercase; color: #e9cf94; margin-bottom: 12px; }
.ezb-fusszeile ul { list-style: none; margin: 0; padding: 0; }
.ezb-fusszeile li { margin-bottom: 7px; font-size: .88rem; }
.ezb-fusszeile a { color: #e7ddc8; }
.ezb-fusszeile a:hover { color: #e9cf94; }
.ezb-fusszeile__marke { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ezb-fusszeile__marke img { width: 34px; height: 34px; }
.ezb-fusszeile__marke b { font-family: var(--ezb-schrift-titel); font-size: 1.15rem; color: #f0e7d2; }
.ezb-fusszeile__grund { border-top: 1px solid rgba(244,237,221,.15); font-family: var(--ezb-schrift-ui); font-size: .72rem; padding: 14px 22px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.ezb-fusszeile__grund .ezb-blatt { display: block; padding: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .ezb-spalten { grid-template-columns: 1fr; }
  .ezb-amrand { position: static; }
  .ezb-kacheln { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  h1 { font-size: 1.75rem; }
  .ezb-marke__name { font-size: 1.5rem; }
  .ezb-obenrand .ezb-blatt { justify-content: center; }
  .ezb-vorspann h1, .ezb-vorspann__titel { font-size: 1.5rem; }
  .ezb-vorspann__zahlen { gap: 6px 20px; }
  .ezb-kacheln { grid-template-columns: repeat(2, 1fr); }
  .ezb-leitartikel { grid-template-columns: 1fr; }
  .ezb-fluss-eintrag { grid-template-columns: 76px minmax(0,1fr); gap: 12px; }
  .ezb-fluss-eintrag img { width: 76px; height: 60px; }
  .ezb-mehr ul { grid-template-columns: 1fr; }
  .ezb-fusszeile .ezb-blatt { grid-template-columns: 1fr 1fr; }
  .ezb-jahrgangsband { grid-template-columns: 1fr; }
  .ezb-jahrgang__zahl { font-size: 3.4rem; float: none; margin: 0 0 6px; }
  .ezb-artikel__text > p:first-of-type::first-letter { font-size: 2.6em; }
}
@media (max-width: 460px) {
  .ezb-kacheln { grid-template-columns: 1fr 1fr; }
  .ezb-fusszeile .ezb-blatt { grid-template-columns: 1fr; }
}
