/* DEUTSCHES WOCHENBLATT — Zeitungs-Layout (Titelseite, Prototyp R1)
   Grammatik: Hierarchie NUR über Größe/Position/Weißraum/Typografie.
   Keine Karten, keine Schatten, keine runden Ecken. Linien tragen die Struktur. */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { background: var(--dw-paper); }
body {
  font-family: var(--dw-serif);
  color: var(--dw-ink);
  background: var(--dw-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; height: auto; }
.r32 { aspect-ratio: 3 / 2; object-fit: cover; }
.r43 { aspect-ratio: 4 / 3; object-fit: cover; }
.r219 { aspect-ratio: 21 / 9; object-fit: cover; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--dw-accent); outline-offset: 3px; }
html { overflow-x: clip; }
[id] { scroll-margin-top: 64px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  font-family: var(--dw-sans); font-weight: 700; font-size: 0.9rem;
  background: var(--dw-ink); color: var(--dw-paper);
  padding: 12px 18px;
}
.skip-link:focus { left: 0; }

/* Ressort-Scoping: ein Attribut färbt Kicker/Linien/Hover im Block */
[data-ressort="aktuell"]    { --dw-ressort: var(--dw-r-aktuell); }
[data-ressort="mobilitaet"] { --dw-ressort: var(--dw-r-mobilitaet); }
[data-ressort="reisen"]     { --dw-ressort: var(--dw-r-reisen); }
[data-ressort="sport"]      { --dw-ressort: var(--dw-r-sport); }
[data-ressort="genuss"]     { --dw-ressort: var(--dw-r-genuss); }
[data-ressort="gesundheit"] { --dw-ressort: var(--dw-r-gesundheit); }
[data-ressort="lifestyle"]  { --dw-ressort: var(--dw-r-lifestyle); }
[data-ressort="people"]     { --dw-ressort: var(--dw-r-people); }

/* Hover: Unterstreichung erscheint in Ressortfarbe (Headline bleibt schwarz) */
.hl a, a.hl {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.18s ease-out;
}
@media (hover: hover) {
  .hl a:hover, a.hl:hover { text-decoration-color: var(--dw-ressort, var(--dw-accent)); }
}
@media (prefers-reduced-motion: reduce) {
  .hl a, a.hl { transition: none; }
}

/* Bild-Hover: minimale Nahrung, nur mit echtem Hover + ohne reduced-motion */
figure a { display: block; overflow: hidden; }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  figure a img { transition: transform 0.24s ease-out; }
  figure a:hover img { transform: scale(1.012); }
}

.shell { max-width: var(--dw-max); margin: 0 auto; padding: 0 var(--dw-pad); }

/* ── Dienstzeile ─────────────────────────────────────────── */
.service {
  font-family: var(--dw-sans);
  font-size: var(--dw-fs-meta);
  color: var(--dw-meta);
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--dw-rule);
}
.service .ausgabe { color: var(--dw-accent); font-weight: 700; letter-spacing: 0.02em; }
.service nav a { margin-left: 18px; }
.service nav a:hover { text-decoration: underline; }

/* ── Masthead ────────────────────────────────────────────── */
.masthead { text-align: center; padding: clamp(16px, 2.8vw, 30px) 0 clamp(12px, 2vw, 20px); }
.masthead h1 {
  font-family: var(--dw-serif);
  font-weight: 900;
  font-size: clamp(2.1rem, 1rem + 5.2vw, 4.5rem);
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}
.masthead .untertitel {
  font-family: var(--dw-sans);
  font-size: clamp(0.78rem, 0.72rem + 0.2vw, 0.875rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dw-meta);
  margin-top: 12px;
}

/* ── Ressort-Navigation ──────────────────────────────────── */
.ressorts {
  border-top: 1px solid var(--dw-ink);
  border-bottom: 1px solid var(--dw-ink);
  position: sticky; top: 0; z-index: 30;
  background: var(--dw-paper);
}
.ressorts ul {
  list-style: none;
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(14px, 2.4vw, 34px);
  font-family: var(--dw-sans);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 0;
}
.ressorts a {
  display: inline-block; padding: 10px 2px 8px;
  margin: -8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease-out, color 0.15s ease-out;
}
.ressorts li[data-r="aktuell"] a    { --nav-c: var(--dw-r-aktuell); }
.ressorts li[data-r="mobilitaet"] a { --nav-c: var(--dw-r-mobilitaet); }
.ressorts li[data-r="reisen"] a     { --nav-c: var(--dw-r-reisen); }
.ressorts li[data-r="sport"] a      { --nav-c: var(--dw-r-sport); }
.ressorts li[data-r="genuss"] a     { --nav-c: var(--dw-r-genuss); }
.ressorts li[data-r="gesundheit"] a { --nav-c: var(--dw-r-gesundheit); }
.ressorts li[data-r="lifestyle"] a  { --nav-c: var(--dw-r-lifestyle); }
.ressorts li[data-r="people"] a     { --nav-c: var(--dw-r-people); }
.ressorts a:hover { color: var(--nav-c, var(--dw-accent)); border-bottom-color: var(--nav-c, var(--dw-accent)); }
.ressorts .aktiv { color: var(--nav-c, var(--dw-accent)); border-bottom-color: var(--nav-c, var(--dw-accent)); }

/* ── Kicker / Meta-Grammatik ─────────────────────────────── */
.kicker {
  font-family: var(--dw-sans);
  font-size: var(--dw-fs-kicker);
  font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dw-ressort, var(--dw-accent));
  margin-bottom: 10px;
}
.kicker .format { color: var(--dw-meta); font-weight: 500; }
.byline {
  font-family: var(--dw-sans);
  font-size: var(--dw-fs-meta);
  color: var(--dw-meta);
  margin-top: 10px;
}
.credit {
  font-family: var(--dw-sans);
  font-size: 0.72rem;
  color: var(--dw-meta);
  margin-top: 6px;
}
.vorspann {
  font-size: var(--dw-fs-body);
  line-height: 1.5;
  color: var(--dw-ink-soft);
  margin-top: 12px;
}

/* ── Bildbühne (Sol-Spec nach Ben-Direktive "bildlastiger Hero") ── */
.bildbuehne {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  padding-top: clamp(18px, 2.5vw, 30px);
}
.bildbuehne > * { min-width: 0; }
.bb-haupt, .bb-teaser {
  position: relative; display: block; overflow: hidden;
  background: #14120F;
}
/* TNW-Mosaik (Ben-Direktive): 1 groß links, rechts 2 klein + 1 breit */
.bb-haupt { grid-column: 1 / 8; height: clamp(480px, 42vw, 580px); }
.bb-neben {
  grid-column: 8 / 13;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 14px;
}
.bb-teaser.breit { grid-column: 1 / 3; }
.bb-teaser.klein { height: clamp(190px, 16.5vw, 230px); }
.bb-teaser.klein .bb-text { padding: 16px; }
.bb-teaser.klein h3 { font-size: clamp(1.02rem, 1.25vw, 1.25rem); line-height: 1.12; margin-top: 7px; }
.bb-teaser.klein .bb-kicker { font-size: 0.66rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }
.bb-teaser.klein .bb-credit { display: none; }
.bb-haupt img, .bb-teaser img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .bb-haupt img, .bb-teaser img { transition: transform 0.24s ease-out; }
  .bb-haupt:hover img, .bb-teaser:hover img { transform: scale(1.012); }
}
.bb-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(12, 10, 8, 0.90) 0%,
    rgba(12, 10, 8, 0.68) 30%,
    rgba(12, 10, 8, 0.20) 58%,
    rgba(12, 10, 8, 0) 76%);
}
.bb-teaser .bb-scrim {
  background: linear-gradient(to top,
    rgba(12, 10, 8, 0.94) 0%,
    rgba(12, 10, 8, 0.72) 30%,
    rgba(12, 10, 8, 0.22) 58%,
    rgba(12, 10, 8, 0) 76%);
}
.bb-text {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px;
}
.bb-teaser .bb-text { padding: 23px; }
.bb-kicker {
  font-family: var(--dw-serif);
  font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #F7F3E9;
}
.bb-kicker .bb-linie {
  display: block; width: 28px; height: 2px;
  background: var(--dw-ressort, var(--dw-accent));
  margin-bottom: 8px;
}
.bb-kicker .bb-lz { color: rgba(247, 243, 233, 0.75); }
.bb-haupt h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700; line-height: 0.98; letter-spacing: -0.025em;
  color: #F7F3E9;
  margin-top: 12px; max-width: 20ch;
}
.bb-vorspann {
  display: block;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.19rem);
  line-height: 1.4; color: rgba(247, 243, 233, 0.9);
  margin-top: 12px; max-width: 52ch;
}
.bb-teaser h3 {
  font-size: clamp(1.5625rem, 2.2vw, 2.125rem);
  font-weight: 700; line-height: 1.03;
  color: #F7F3E9;
  margin-top: 9px;
}
.bb-credit {
  position: absolute; right: 12px; bottom: 8px;
  font-family: var(--dw-sans); font-size: 0.66rem;
  color: rgba(247, 243, 233, 0.7);
}
.bb-teaser .unterzeile-papier { display: none; }

/* Textlage unter der Bildbühne — eigene Zeitungslage */
.textlage {
  margin-top: 30px;
  border-top: 3px solid var(--dw-ink);
  border-bottom: 1px solid var(--dw-rule);
  padding: 26px 0;
  display: grid; grid-template-columns: repeat(12, 1fr);
}
.textlage > * { min-width: 0; }
.tl-woche { grid-column: 1 / -1; }
.tl-woche > h2 { font-family: var(--dw-serif); font-size: clamp(1.5rem, 1.2rem + 0.9vw, 1.8rem); font-weight: 700; margin-bottom: 16px; }
.tl-woche .teaserreihe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 980px) and (min-width: 621px) {
  .tl-woche .teaserreihe { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .tl-woche .teaserreihe article:nth-child(odd) { border-left: 0; padding-left: 0; }
}
.tl-woche .teaserreihe article { padding: 0 18px; border-left: 1px solid var(--dw-rule); }
.tl-woche .teaserreihe article:first-child { padding-left: 0; border-left: 0; }
.tl-woche .teaserreihe h3 { font-size: clamp(1.05rem, 1rem + 0.3vw, 1.19rem); font-weight: 600; line-height: 1.28; }
.teaserreihe .tr-bild { aspect-ratio: 16 / 9; object-fit: cover; margin-bottom: 10px; }
/* Listen-Eintrag mit Mini-Thumbnail (Papa-Referenz: Bild an jeder Meldung) */
.mit-bild { display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: start; }
.mit-bild img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.tl-woche .teaserreihe p { font-family: var(--dw-sans); font-size: 0.88rem; color: var(--dw-ink-soft); line-height: 1.45; margin-top: 7px; }
.tl-meist { grid-column: span 2; border-left: 1px solid var(--dw-ink); padding-left: var(--dw-gap); }
.tl-ruhe { grid-column: span 2; border-left: 1px solid var(--dw-rule); padding-left: var(--dw-gap); }
.tl-meist h3, .tl-ruhe h3 {
  font-family: var(--dw-sans); font-size: var(--dw-fs-kicker); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 2px solid var(--dw-ink); padding-bottom: 6px; margin-bottom: 8px;
}
.tl-meist ol { list-style: none; counter-reset: tlm; }
.tl-meist li { counter-increment: tlm; display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--dw-rule); }
.tl-meist li:last-child { border-bottom: 0; }
.tl-meist li::before { content: counter(tlm); font-family: var(--dw-serif); font-weight: 900; font-size: 1.2rem; color: var(--dw-accent); line-height: 1; }
.tl-meist h4, .tl-ruhe h4 { font-size: 0.9rem; font-weight: 600; line-height: 1.3; }
.tl-ruhe .eintrag { padding: 9px 0; border-bottom: 1px solid var(--dw-rule); }
.tl-ruhe .eintrag:last-child { border-bottom: 0; }
.tl-ruhe .lesedauer { font-family: var(--dw-sans); font-size: 0.7rem; color: var(--dw-meta); display: block; margin-top: 3px; }

@media (max-width: 1023px) and (min-width: 768px) {
  .bb-haupt { grid-column: 1 / -1; }
  .bb-neben { grid-column: 1 / -1; grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .bb-teaser { min-height: 240px; }
  .bb-teaser.klein { height: auto; min-height: 220px; }
}
@media (max-width: 767px) {
  .bildbuehne { grid-template-columns: 1fr; gap: 22px; }
  .bb-haupt { grid-column: 1 / -1; height: clamp(380px, 110vw, 480px); }
  .bb-haupt .bb-text { padding: 22px; }
  .bb-haupt h2 { font-size: clamp(2.25rem, 9vw, 2.875rem); overflow-wrap: break-word; hyphens: auto; }
  .bb-neben { grid-column: 1 / -1; grid-template-rows: none; }
  /* Nebenteaser mobil: Bild über Text (kein Overlay-Kartenstapel).
     Gleiche Markup-Quelle wie Desktop — nur CSS schaltet um (kein doppeltes h3). */
  .bb-teaser { background: none; overflow: visible; }
  .bb-teaser img { position: static; aspect-ratio: 3 / 2; height: auto; }
  .bb-teaser .bb-scrim, .bb-teaser .bb-credit { display: none; }
  .bb-teaser .bb-text { position: static; padding: 10px 0 0; }
  .bb-teaser .bb-text .bb-kicker { color: var(--dw-ressort, var(--dw-accent)); }
  .bb-teaser .bb-text .bb-lz { color: var(--dw-meta); }
  .bb-teaser .bb-text h3 { color: var(--dw-ink); font-size: 1.35rem; line-height: 1.15; }
  .textlage { grid-template-columns: 1fr; row-gap: 24px; }
  .tl-woche, .tl-meist, .tl-ruhe { grid-column: 1 / -1; border-left: 0; padding: 0; }
  .tl-woche .teaserreihe { grid-template-columns: 1fr; gap: 14px; }
  .tl-woche .teaserreihe article { padding: 0; border-left: 0; }
}

/* ── Titelseite: 6 + 3 + 3 (Alt-Layout, von der Bildbühne abgelöst) ── */
.titelseite {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  padding: clamp(20px, 3vw, 36px) 0 clamp(24px, 3vw, 40px);
}
.titelseite > * { min-width: 0; }
.aufmacher { grid-column: 1 / span 6; padding-right: var(--dw-gap); }
.nebenspalte { grid-column: 7 / span 3; padding: 0 var(--dw-gap); border-left: 1px solid var(--dw-rule); }
.wochenspalte { grid-column: 10 / span 3; padding-left: var(--dw-gap); border-left: 1px solid var(--dw-rule); }

.aufmacher h2 {
  font-size: var(--dw-fs-aufmacher);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.012em;
  margin-top: 14px;
}
.aufmacher figure { margin: 0; }

.nebenstueck { padding-bottom: 20px; }
.nebenstueck + .nebenstueck { border-top: 1px solid var(--dw-rule); padding-top: 20px; }
.nebenstueck h3 { font-size: var(--dw-fs-second); font-weight: 700; line-height: 1.15; margin-top: 10px; }
.nebenstueck .vorspann { font-size: 1.02rem; margin-top: 8px; }

/* Die Woche in Kürze */
.wochenspalte .spaltenkopf,
.spaltenkopf {
  font-family: var(--dw-sans);
  font-size: var(--dw-fs-kicker);
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 2px solid var(--dw-ink);
  padding-bottom: 7px; margin-bottom: 4px;
}
.kurzmeldung { padding: 11px 0; border-bottom: 1px solid var(--dw-rule); }
.kurzmeldung:last-child { border-bottom: 0; }
.kurzmeldung .ort {
  font-family: var(--dw-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--dw-meta);
  display: block; margin-bottom: 3px;
}
.kurzmeldung h4 { font-size: var(--dw-fs-brief); font-weight: 600; line-height: 1.25; }

.meistgelesen { margin-top: 30px; }
.meistgelesen ol { list-style: none; counter-reset: mg; }
.meistgelesen li { counter-increment: mg; display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--dw-rule); }
.meistgelesen li:last-child { border-bottom: 0; }
.meistgelesen li::before {
  content: counter(mg);
  font-family: var(--dw-serif); font-weight: 900; font-size: 1.5rem;
  color: var(--dw-accent); line-height: 1;
}
.meistgelesen h4 { font-size: 0.98rem; font-weight: 600; line-height: 1.3; }

/* ── Neu seit Redaktionsschluss ──────────────────────────── */
.redaktionsschluss {
  border-top: 1px solid var(--dw-rule);
  border-bottom: 1px solid var(--dw-rule);
  padding: 12px 0;
  display: flex; gap: 22px; align-items: baseline; flex-wrap: wrap;
  font-family: var(--dw-sans); font-size: var(--dw-fs-meta);
}
.redaktionsschluss .label { color: var(--dw-accent); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: var(--dw-fs-kicker); white-space: nowrap; }
.redaktionsschluss a { color: var(--dw-ink-soft); }
.redaktionsschluss a:hover { text-decoration: underline; }
.redaktionsschluss .sep { color: var(--dw-rule); }
.redaktionsschluss .zeit { font-size: 0.72rem; color: var(--dw-meta); font-weight: 700; margin-right: 5px; }
.kontrastplus { filter: contrast(1.13); }
.nur-mobil { display: none; }

/* ── Das große Stück ─────────────────────────────────────── */
/* TNW-Transfer B (Sol): EIN dunkles Inverted-Modul als Beilagen-Moment.
   Full-bleed via margin/padding-Trick; Dunkelanteil ≤ ~15 % der Seite. */
.grosses-stueck {
  padding: clamp(30px, 4vw, 52px) 0 clamp(34px, 4vw, 56px);
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  background: #26241F;
  color: #F4F0E7;
}
.grosses-stueck .rahmen { border-top: 3px solid #625E55; padding-top: 26px; }
.grosses-stueck figure img { filter: brightness(1.12) contrast(1.02); }
.grosses-stueck .kicker { color: #C5BFB3; }
.grosses-stueck .kicker .format { color: #C5BFB3; }
.grosses-stueck .vorspann { color: #F4F0E7; }
.grosses-stueck .byline, .grosses-stueck .credit { color: #C5BFB3; }
.grosses-stueck .seite { border-left-color: #625E55; }
@media (hover: hover) {
  .grosses-stueck .hl a:hover { text-decoration-color: #F4F0E7; }
}
.grosses-stueck figure { position: relative; }
.grosses-stueck .unterzeile {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--dw-gap);
  padding-top: 24px;
}
.grosses-stueck .unterzeile > * { min-width: 0; }
.grosses-stueck h2 { font-size: clamp(1.9rem, 1.15rem + 2.6vw, 3.375rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.01em; margin-top: 12px; }
.grosses-stueck .vorspann { font-size: 1.15rem; margin-top: 0; }
.grosses-stueck .seite { border-left: 1px solid var(--dw-rule); padding-left: var(--dw-gap); align-self: end; }
@media (max-width: 620px) {
  .grosses-stueck .unterzeile { grid-template-columns: 1fr; }
  .grosses-stueck .seite { border-left: 0; padding-left: 0; }
}

/* ── Ressortblöcke ───────────────────────────────────────── */
.ressortblock { padding: clamp(22px, 3vw, 34px) 0; }
.ressortblock .blockkopf {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 2px solid var(--dw-ink);
  padding-top: 10px; margin-bottom: 22px;
  position: relative;
}
/* Ressortfarbe: nur die ersten 72px der schwarzen Linie (Sol Pepp §1) */
.ressortblock .blockkopf::before {
  content: '';
  position: absolute; top: -2px; left: 0;
  width: 72px; height: 2px;
  background: var(--dw-ressort, var(--dw-accent));
}
.ressortblock .blockkopf h2 { color: var(--dw-ressort, var(--dw-ink)); }
/* TNW-Transfer A (Sol-bestätigt): übergroße Serif-Ressorttitel statt kleiner Versalien */
.ressortblock .blockkopf h2 {
  font-family: var(--dw-serif);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: 0.02em; text-transform: uppercase;
  line-height: 1;
}
.ressortblock .blockkopf a {
  font-family: var(--dw-sans); font-size: var(--dw-fs-meta); color: var(--dw-accent);
}
.ressortblock .blockkopf a:hover { text-decoration: underline; }
.ressortblock .profil { font-style: italic; color: var(--dw-meta); font-size: 0.95rem; margin: -14px 0 20px; }

.ressortgrid { display: grid; grid-template-columns: repeat(12, 1fr); }
.ressortgrid > * { min-width: 0; }
.ressortgrid .haupt { grid-column: span 5; padding-right: var(--dw-gap); }
.ressortgrid .neben { grid-column: span 4; padding: 0 var(--dw-gap); border-left: 1px solid var(--dw-rule); }
.ressortgrid .liste { grid-column: span 3; padding-left: var(--dw-gap); border-left: 1px solid var(--dw-rule); }

.ressortblock .vorspann { font-size: 1.125rem; line-height: 1.45; }

/* Rhythmus-Varianten (Sol R2: nicht viermal dasselbe Gerüst) */
.ressortgrid.g633 .haupt { grid-column: span 6; }
.ressortgrid.g633 .neben { grid-column: span 3; }
.ressortgrid.g453 .haupt { grid-column: span 4; }
.ressortgrid.g453 .neben { grid-column: span 5; }
.ressortgrid.g75 .haupt { grid-column: span 7; }
.ressortgrid.g75 .neben { grid-column: span 5; }
.ressortgrid.g75 .neben .nachrichten { border-top: 1px solid var(--dw-rule); margin-top: 18px; padding-top: 14px; }
.ressortgrid.g75 .neben .nachrichten .eintrag { padding: 0 0 12px; border-bottom: 1px solid var(--dw-rule); margin-bottom: 12px; }
.ressortgrid.g75 .neben .nachrichten .eintrag:last-child { border-bottom: 0; margin-bottom: 0; }
.ressortgrid.g75 .neben .nachrichten h4 { font-size: 1.02rem; font-weight: 600; line-height: 1.3; margin-top: 4px; }

.ressortgrid .haupt h3 { font-size: clamp(1.45rem, 1.1rem + 1vw, 1.85rem); font-weight: 700; line-height: 1.14; margin-top: 10px; }
.ressortgrid .neben h3 { font-size: 1.18rem; font-weight: 700; line-height: 1.2; margin-top: 10px; }
.ressortgrid .neben .zweit { border-top: 1px solid var(--dw-rule); margin-top: 18px; padding-top: 16px; }
.ressortgrid .liste .eintrag { padding: 0 0 14px; border-bottom: 1px solid var(--dw-rule); margin-bottom: 14px; }
.ressortgrid .liste .eintrag:last-child { border-bottom: 0; margin-bottom: 0; }
.ressortgrid .liste h4 { font-size: 1.02rem; font-weight: 600; line-height: 1.3; margin-top: 4px; }
.ressortgrid .liste .kicker { margin-bottom: 4px; }

/* ── Wochenbrief-Bühne: volle Breite, nach den Rubriken (Ben) ── */
.wochenbrief-buehne {
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  background: var(--dw-accent);
  color: #F7F5F0;
  padding-top: clamp(36px, 5vw, 60px);
  padding-bottom: clamp(38px, 5vw, 64px);
  margin-top: 14px;
}
.wochenbrief-buehne .inner { max-width: 760px; margin: 0 auto; text-align: center; }
.wochenbrief-buehne .wb-kicker {
  font-family: var(--dw-sans); font-size: var(--dw-fs-kicker); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247, 245, 240, 0.75);
}
.wochenbrief-buehne h2 {
  font-family: var(--dw-serif); font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem);
  line-height: 1.15; margin-top: 14px;
}
.wochenbrief-buehne .wb-sub { font-family: var(--dw-sans); font-size: 0.95rem; color: rgba(247, 245, 240, 0.8); margin-top: 12px; }
.wochenbrief-buehne .wb-cta {
  display: inline-block; margin-top: 22px;
  font-family: var(--dw-sans); font-weight: 700; font-size: 1rem;
  background: #F7F5F0; color: var(--dw-ink);
  padding: 14px 30px;
}
.wochenbrief-buehne .wb-cta:hover { background: #FFFFFF; }
@media print { .wochenbrief-buehne { display: none; } }

/* ── Dossier-Band (eigener Modultyp — bricht die Sektions-Monotonie) ── */
.dossier-band { padding: clamp(22px, 3vw, 34px) 0; }
.dossier-band .rahmen {
  border-top: 2px solid var(--dw-ink);
  position: relative;
  display: grid; grid-template-columns: 7fr 5fr; gap: var(--dw-gap);
  padding-top: 18px;
}
.dossier-band .rahmen::before {
  content: ''; position: absolute; top: -2px; left: 0;
  width: 72px; height: 2px; background: var(--dw-ressort, var(--dw-accent));
}
.dossier-band .rahmen > * { min-width: 0; }
.dossier-band h3 { font-size: clamp(1.5rem, 1.15rem + 1.2vw, 2.1rem); font-weight: 700; line-height: 1.12; margin-top: 8px; }
.dossier-band .stationen {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px 0;
  margin-top: 16px; font-family: var(--dw-sans); font-size: 0.95rem; font-weight: 600;
}
.dossier-band .stationen li { display: flex; align-items: baseline; }
.dossier-band .stationen li + li::before {
  content: '→'; margin: 0 12px; color: var(--dw-ressort, var(--dw-accent)); font-weight: 400;
}
.dossier-band .stationen a:hover { text-decoration: underline; text-underline-offset: 3px; }
.dossier-band .beschreibung { font-family: var(--dw-sans); font-size: 0.95rem; color: var(--dw-ink-soft); line-height: 1.5; margin-top: 10px; }
@media (max-width: 980px) {
  .dossier-band .rahmen { grid-template-columns: 1fr; }
  .dossier-band figure { order: -1; }
}

/* ── Wochenbrief-Slim (Mid-Page, nach dem großen Stück) ───── */
.service nav a.brief-cta { color: var(--dw-accent); font-weight: 700; }

/* ── In Ruhe gelesen (Deeply-read statt reiner Klickliste) ── */
.stilleliste { margin-top: 30px; }
.stilleliste .eintrag { padding: 12px 0; border-bottom: 1px solid var(--dw-rule); }
.stilleliste .eintrag:last-child { border-bottom: 0; }
.stilleliste h4 { font-size: 0.98rem; font-weight: 600; line-height: 1.3; }
.stilleliste .lesedauer { font-family: var(--dw-sans); font-size: 0.75rem; color: var(--dw-meta); display: block; margin-top: 3px; }

/* ── Ausgabenleiste / Archiv ─────────────────────────────── */
.ausgabenleiste { border-top: 3px solid var(--dw-ink); padding: 26px 0 30px; }
.ausgabenleiste .inner { display: grid; grid-template-columns: repeat(12, 1fr); }
.ausgabenleiste .inner > * { min-width: 0; }
.ausgabenleiste .aktuelle { grid-column: span 5; padding-right: var(--dw-gap); }
.ausgabenleiste .archiv { grid-column: span 4; padding: 0 var(--dw-gap); border-left: 1px solid var(--dw-rule); }
.ausgabenleiste .brief { grid-column: span 3; padding-left: var(--dw-gap); border-left: 1px solid var(--dw-rule); }
.ausgabenleiste h3 { font-family: var(--dw-sans); font-size: var(--dw-fs-kicker); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
.ausgabenleiste .nummer { font-family: var(--dw-serif); font-size: 1.9rem; font-weight: 900; line-height: 1.1; }
.ausgabenleiste p { font-family: var(--dw-sans); font-size: 0.92rem; color: var(--dw-ink-soft); line-height: 1.5; margin-top: 8px; }
.ausgabenleiste .archiv ul { list-style: none; }
.ausgabenleiste .archiv li { padding: 8px 0; border-bottom: 1px solid var(--dw-rule); font-size: 0.98rem; }
.ausgabenleiste .archiv li:last-child { border-bottom: 0; }
.ausgabenleiste .archiv .nr { font-family: var(--dw-sans); font-weight: 700; color: var(--dw-accent); margin-right: 8px; font-size: 0.85rem; }
.ausgabenleiste .brief a.cta {
  display: inline-block; margin-top: 10px;
  font-family: var(--dw-sans); font-weight: 700; font-size: 0.9rem;
  color: var(--dw-paper); background: var(--dw-ink);
  padding: 10px 18px;
}
.ausgabenleiste .brief a.cta:hover { background: var(--dw-accent); }

/* ── Artikelseite ────────────────────────────────────────── */
.leseprogress {
  position: fixed; top: 0; left: 0; z-index: 60;
  height: 3px; width: 0;
  background: var(--dw-ressort, var(--dw-accent));
}
.masthead-klein { padding: clamp(14px, 2vw, 22px) 0 clamp(10px, 1.5vw, 16px); }
.masthead-klein h1, .masthead-klein .masthead-titel { font-size: clamp(1.5rem, 1rem + 2.2vw, 2.4rem); }
.masthead .masthead-titel {
  font-family: var(--dw-serif); font-weight: 900;
  letter-spacing: 0.025em; line-height: 1; text-transform: uppercase;
}
.masthead-klein .untertitel { margin-top: 7px; font-size: 0.68rem; }
.artikel-kopf { max-width: 860px; margin: 0 auto; padding: clamp(26px, 4vw, 48px) 0 8px; }
.artikel-kopf h1 { font-size: clamp(2.1rem, 1.3rem + 2.8vw, 3.5rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.012em; margin-top: 14px; }
.artikel-kopf .vorspann { font-size: clamp(1.19rem, 1.1rem + 0.4vw, 1.4rem); line-height: 1.45; margin-top: 16px; }
.vertrauenszeile {
  font-family: var(--dw-sans); font-size: var(--dw-fs-meta);
  color: var(--dw-accent); font-weight: 600;
  margin-top: 12px;
}
.vertrauenszeile a { text-decoration: underline; text-underline-offset: 3px; }
.artikel-meta {
  display: flex; flex-wrap: wrap; gap: 6px 22px; align-items: baseline;
  border-top: 1px solid var(--dw-rule); border-bottom: 1px solid var(--dw-rule);
  margin-top: 22px; padding: 10px 0;
  font-family: var(--dw-sans); font-size: var(--dw-fs-meta); color: var(--dw-meta);
}
.artikel-meta .autor { color: var(--dw-ink); font-weight: 700; }
.artikel-meta .aktionen { margin-left: auto; display: flex; gap: 14px; }
.artikel-meta .aktion {
  cursor: pointer; background: none; border: 0;
  padding: 12px 6px; margin: -10px -4px;
  font: inherit; color: var(--dw-meta);
}
.artikel-meta .aktion:hover { color: var(--dw-ink); text-decoration: underline; text-underline-offset: 3px; }
.mehr-zum-thema {
  border-top: 1px solid var(--dw-rule); border-bottom: 1px solid var(--dw-rule);
  padding: 13px 0; margin: 2.2em 0;
  font-family: var(--dw-sans); font-size: 0.95rem;
}
.mehr-zum-thema .label { font-size: var(--dw-fs-kicker); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dw-ressort, var(--dw-accent)); margin-right: 14px; }
.mehr-zum-thema a { font-weight: 600; }
.mehr-zum-thema a:hover { text-decoration: underline; text-underline-offset: 3px; }
.wochenbrief-band {
  border-top: 2px solid var(--dw-ink);
  margin-top: 34px; padding: 22px 0 6px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.wochenbrief-band .text h3 { font-family: var(--dw-serif); font-size: 1.35rem; font-weight: 700; }
.wochenbrief-band .text p { font-family: var(--dw-sans); font-size: 0.95rem; color: var(--dw-ink-soft); margin-top: 4px; }
.wochenbrief-band a.cta {
  font-family: var(--dw-sans); font-weight: 700; font-size: 0.9rem;
  color: var(--dw-paper); background: var(--dw-ink);
  padding: 11px 20px; white-space: nowrap;
}
.wochenbrief-band a.cta:hover { background: var(--dw-accent); }
.artikel-hero { max-width: 1060px; margin: 26px auto 0; }
.artikel-body { max-width: 680px; margin: 0 auto; padding: clamp(26px, 3vw, 40px) 0 30px; }
.artikel-body { font-size: var(--dw-fs-body); }
.artikel-body p { font-size: 1em; line-height: 1.64; margin-bottom: 1.35em; }
.artikel-body > p:first-of-type::first-letter {
  font-family: var(--dw-serif); font-weight: 900;
  font-size: 3.4em; line-height: 0.8;
  float: left; padding: 0.08em 0.12em 0 0;
  color: var(--dw-ressort, var(--dw-accent));
}
.artikel-body h2 {
  font-size: 1.5rem; font-weight: 700; line-height: 1.2;
  margin: 1.6em 0 0.7em;
}
.pullquote {
  border-left: 4px solid var(--dw-ressort, var(--dw-accent));
  margin: 2em 0; padding: 4px 0 4px 24px;
}
.pullquote p { font-size: 1.5rem; line-height: 1.3; font-weight: 600; font-style: italic; margin-bottom: 0.3em; }
.pullquote cite { font-family: var(--dw-sans); font-size: var(--dw-fs-meta); color: var(--dw-meta); font-style: normal; }
.faktenkasten {
  background: var(--dw-surface);
  border-top: 2px solid var(--dw-ink); border-bottom: 1px solid var(--dw-rule);
  padding: 18px 22px 14px; margin: 2em 0;
}
.faktenkasten h3 { font-family: var(--dw-sans); font-size: var(--dw-fs-kicker); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.faktenkasten dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; font-size: 1rem; line-height: 1.45; }
.faktenkasten dt { font-family: var(--dw-sans); font-weight: 700; font-size: 0.85rem; color: var(--dw-meta); text-transform: uppercase; letter-spacing: 0.06em; padding-top: 2px; }
.pruefvermerk {
  border: 1px solid var(--dw-rule);
  border-left: 4px solid var(--dw-accent); /* Markenblau — Vertrauen ist Markenaussage, nicht Ressortfarbe (Sol) */
  padding: 18px 22px; margin: 2.2em 0;
  background: var(--dw-surface-trust);
}
.pruefvermerk h3 {
  font-family: var(--dw-sans); font-size: var(--dw-fs-kicker); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--dw-accent);
  margin-bottom: 10px;
}
.pruefvermerk ul { list-style: none; }
.pruefvermerk li { font-family: var(--dw-sans); font-size: 0.95rem; line-height: 1.5; padding: 4px 0; border-bottom: 1px dotted var(--dw-rule); display: flex; justify-content: space-between; gap: 18px; }
.pruefvermerk li:last-child { border-bottom: 0; }
.pruefvermerk li strong { font-weight: 700; }
.ausgabe-leiste-artikel { border-top: 2px solid var(--dw-ink); padding: 20px 0 8px; margin-top: 10px; }

/* ── Footer ──────────────────────────────────────────────── */
.fusszeile {
  border-top: 1px solid var(--dw-ink);
  padding: 18px 0 40px;
  font-family: var(--dw-sans); font-size: var(--dw-fs-meta); color: var(--dw-meta);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.fusszeile a { margin-right: 16px; }
.fusszeile a:hover { text-decoration: underline; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .titelseite { grid-template-columns: repeat(6, 1fr); }
  .aufmacher { grid-column: 1 / -1; padding-right: 0; }
  .nebenspalte { grid-column: 1 / span 3; border-left: 0; padding: 26px var(--dw-gap) 0 0; border-top: 1px solid var(--dw-ink); margin-top: 26px; }
  .wochenspalte { grid-column: 4 / span 3; padding-left: var(--dw-gap); border-top: 1px solid var(--dw-ink); margin-top: 26px; padding-top: 26px; }
  .nebenspalte { padding-top: 26px; }
  .ressortgrid { grid-template-columns: repeat(6, 1fr); row-gap: 24px; }
  .ressortgrid .haupt { grid-column: 1 / -1; padding-right: 0; }
  .ressortgrid .neben { grid-column: 1 / span 3; border-left: 0; padding-left: 0; }
  .ressortgrid .liste { grid-column: 4 / span 3; }
  .ausgabenleiste .inner { grid-template-columns: 1fr; row-gap: 24px; }
  .ausgabenleiste .aktuelle, .ausgabenleiste .archiv, .ausgabenleiste .brief { grid-column: 1 / -1; border-left: 0; padding: 0; }
}
@media (max-width: 620px) {
  .titelseite { grid-template-columns: 1fr; }
  .nebenspalte, .wochenspalte { grid-column: 1 / -1; padding-left: 0; padding-right: 0; }
  .wochenspalte { border-top: 1px solid var(--dw-ink); }
  .ressortgrid { grid-template-columns: 1fr; }
  .ressortgrid .neben, .ressortgrid .liste { grid-column: 1 / -1; border-left: 0; padding-left: 0; }
  .service { font-size: 0.72rem; }
  .service nav a { margin-left: 10px; }
  .nur-mobil { display: inline; }
  .nur-desktop { display: none; }
  .masthead h1 { line-height: 0.96; }
  /* Ressortnav: eine scrollbare Zeile statt zweizeiligem Block (Sol R2) */
  .ressorts ul {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 14px var(--dw-pad);
  }
  .ressorts ul::-webkit-scrollbar { display: none; }
  .ressorts li { flex: 0 0 auto; }
}

/* Druck als Zeitungssignal */
@media print {
  .ressorts { position: static; }
  .redaktionsschluss, .ausgabenleiste .brief, .wochenbrief-band,
  .artikel-meta .aktionen, .leseprogress, .skip-link { display: none; }
  .grosses-stueck { background: none; color: var(--dw-ink); margin-inline: 0; padding-inline: 0; }
  .grosses-stueck .kicker, .grosses-stueck .kicker .format,
  .grosses-stueck .byline, .grosses-stueck .credit { color: #444; }
  .grosses-stueck .vorspann { color: var(--dw-ink); }
  .grosses-stueck .rahmen { border-top-color: var(--dw-ink); }
  .bb-scrim { background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1)); }
}
