/* MedalNow — Redaktionelles Layout */

@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('assets/fonts/newsreader.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial'), local('Helvetica Neue');
  size-adjust: 104.3%;
  ascent-override: 106.2%;
  descent-override: 30.9%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Newsreader Fallback';
  src: local('Times New Roman'), local('Times');
  size-adjust: 101.9%;
  ascent-override: 114.2%;
  descent-override: 26.1%;
  line-gap-override: 0%;
}

:root {
  --paper: #ffffff;
  --ink: #000000;
  --ink-soft: #4a4a4a;
  --ink-quiet: #6b6b6b;
  --hair: #d8d8d8;
  --wash: #f4f4f4;
  --accent: #c8102e;

  --font-ui: 'Inter', 'Inter Fallback', system-ui, sans-serif;
  --font-head: 'Newsreader', 'Newsreader Fallback', Georgia, serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 44px);
  --head-h: 60px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.62;
  font-synthesis-weight: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--accent); }

img { max-width: 100%; height: auto; display: block; border-radius: 2px; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; z-index: 60;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Kopf ---------- */

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--paper);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--head-h);
}
.brand {
  display: inline-flex; align-items: baseline; gap: 10px;
  text-decoration: none;
}
.brand__mark {
  font-family: var(--font-head);
  font-weight: 600; font-size: 20px; letter-spacing: -0.03em;
  border-bottom: 3px solid var(--accent);
  line-height: 1.1;
}
.brand__name {
  font-family: var(--font-head);
  font-size: 21px; font-weight: 600; letter-spacing: -0.02em;
}
.brand__name em { font-style: normal; color: var(--accent); }

.nav__list {
  display: flex; gap: 22px; list-style: none; margin: 0; padding: 0;
  font-size: 14.5px;
}
.nav__link { text-decoration: none; color: var(--ink-soft); }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"] { font-weight: 600; }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--ink);
}
.burger__box { display: block; width: 22px; margin-inline: auto; }
.burger__box span {
  display: block; height: 1.5px; background: currentColor; margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] .burger__box span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__box span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__box span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Ressorts */
.rubrics { background: var(--paper); padding-bottom: 12px; }
.rubrics__list {
  display: flex; gap: 8px; list-style: none; margin: 0; padding: 0 0 2px;
  overflow-x: auto; scrollbar-width: none;
}
.rubrics__list::-webkit-scrollbar { display: none; }
.rubric-chip {
  display: inline-block; white-space: nowrap;
  font: 600 12.5px/1 var(--font-ui);
  letter-spacing: .09em; text-transform: uppercase;
  padding: 11px 16px; border-radius: 0 10px 0 10px;
  background: var(--wash); color: var(--ink-soft);
  text-decoration: none; border: 0; cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.rubric-chip:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.rubric-chip[aria-current="true"], .rubric-chip.is-active {
  background: var(--ink); color: var(--paper);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font: 600 14px/1 var(--font-ui);
  letter-spacing: .02em;
  padding: 14px 24px;
  border-radius: 0 14px 0 14px;
  text-decoration: none; cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.btn--primary { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.btn--ghost { background: none; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }

/* ---------- Bausteine ---------- */

.kicker {
  display: inline-block;
  font: 600 11.5px/1 var(--font-ui);
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.byline {
  font-size: 13px; color: var(--ink-quiet);
  letter-spacing: .01em;
}
.byline b { font-weight: 600; color: var(--ink-soft); }

.section { padding-block: 74px; }
.section--airy { padding-block: 104px; }
.section--tight { padding-block: 52px; }
.section--wash { background: var(--wash); }

.section__head { margin-bottom: 32px; max-width: 46em; }
.section__title { font-size: clamp(1.55rem, 3vw, 2.3rem); }
.section__intro { margin-top: 12px; color: var(--ink-soft); font-size: 16px; max-width: 40em; }

.eyebrow {
  font: 600 12px/1 var(--font-ui); letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-quiet); margin-bottom: 14px;
}

/* ---------- Titelseite ---------- */

.titelseite { padding-top: 26px; padding-bottom: 78px; }
.titelseite__grid {
  display: grid; gap: 42px;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
}
.aufmacher__figure { margin: 26px 0 0; }
.aufmacher__figure img { width: 100%; }
.aufmacher__caption {
  margin-top: 9px; font-size: 12.5px; color: var(--ink-quiet); line-height: 1.5;
}
.aufmacher__title {
  font-size: clamp(2.15rem, 4.4vw, 3.5rem);
  line-height: 1.03; letter-spacing: -0.022em;
}
.aufmacher__lead {
  margin-top: 18px; font-size: 19px; line-height: 1.55;
  color: var(--ink-soft); max-width: 34em;
}
.aufmacher__meta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }

.titelseite__side { display: flex; flex-direction: column; gap: 26px; padding-top: 4px; }
.side-article { padding-bottom: 24px; }
.side-article + .side-article { border-top: 1px solid var(--hair); padding-top: 24px; }
.side-article:last-child { padding-bottom: 0; }
.side-article__title { font-size: 1.22rem; line-height: 1.2; }
.side-article__title a { text-decoration: none; }
.side-article__title a:hover { text-decoration: underline; text-decoration-color: var(--accent); }
.side-article__lead { margin-top: 8px; font-size: 15px; color: var(--ink-soft); }
.side-article__meta { margin-top: 10px; }

/* ---------- Langtext ---------- */

.longread__grid {
  display: grid; gap: 46px;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: start;
}
.longread__title { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
.longread__body { margin-top: 22px; max-width: 36em; font-size: 17.5px; }
.longread__body h3 { font-size: 1.32rem; margin-top: 30px; margin-bottom: 10px; }
.dateline { font-weight: 600; letter-spacing: .02em; }
.pullquote {
  margin: 30px 0; padding-left: 20px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-head); font-size: 1.42rem; line-height: 1.28;
}
.pullquote footer { margin-top: 10px; font-family: var(--font-ui); font-size: 13px; color: var(--ink-quiet); }
.longread__aside { position: sticky; top: calc(var(--head-h) + 18px); }
.longread__figure { margin: 0; }
.longread__figure figcaption { margin-top: 9px; font-size: 12.5px; color: var(--ink-quiet); }

.factbox { margin-top: 26px; background: var(--wash); padding: 22px; border-radius: 0 18px 0 18px; }
.factbox h3 { font-size: 1.05rem; margin-bottom: 12px; }
.factbox dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: 14.5px; }
.factbox dt { color: var(--ink-quiet); }
.factbox dd { margin: 0; font-weight: 600; }


.formkurve { background: var(--paper); padding: 24px; border-radius: 0 20px 0 20px; }
.formkurve h3 { font-size: 1.05rem; }
.formkurve__note { margin-top: 8px; font-size: 13px; color: var(--ink-quiet); }
.formkurve__list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 16px; }
.formkurve__team { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 8px; }
.formkurve__row { display: flex; gap: 6px; }
.mark {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  font: 700 12px/1 var(--font-ui);
  border-radius: 0 9px 0 9px;
}
.mark--s { background: var(--ink); color: var(--paper); }
.mark--u { background: var(--wash); color: var(--ink); }
.mark--n { background: none; color: var(--ink-quiet); box-shadow: inset 0 0 0 1px var(--hair); }
.formkurve__legend { margin-top: 22px; font-size: 13px; color: var(--ink-quiet); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.formkurve__legend .mark { width: 22px; height: 22px; font-size: 11px; }

/* ---------- Tabellen ---------- */

.table-scroll { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; }
.table-scroll:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

table.data {
  width: 100%; border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  font-size: 15px; min-width: 620px;
}
table.data caption {
  text-align: left; font-size: 13px; color: var(--ink-quiet);
  padding-bottom: 12px;
}
table.data thead th {
  text-align: right; font: 600 12px/1.3 var(--font-ui);
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-quiet);
  padding: 0 8px 10px; white-space: nowrap;
  border-bottom: 1px solid var(--ink);
}
table.data thead th:first-child, table.data thead th.left { text-align: left; }
table.data tbody th, table.data tbody td { padding: 11px 8px; }
table.data tbody th {
  text-align: left; font-weight: 600; white-space: nowrap;
}
table.data tbody td { text-align: right; }
table.data tbody td.left { text-align: left; }
table.data tbody tr:nth-child(even) { background: var(--wash); }
.section--wash table.data tbody tr:nth-child(even) { background: var(--paper); }
table.data .rank { color: var(--ink-quiet); font-weight: 400; width: 34px; }
table.data .top td, table.data .top th { font-weight: 700; }
table.data .mark-accent { color: var(--accent); font-weight: 700; }
.table-note { margin-top: 14px; font-size: 13.5px; color: var(--ink-quiet); max-width: 52em; }

.crest {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; margin-right: 10px; vertical-align: -7px;
  font: 700 10px/1 var(--font-ui); letter-spacing: .04em;
  border-radius: 0 8px 0 8px; background: var(--ink); color: var(--paper);
}
.crest--accent { background: var(--accent); }
.crest--outline { background: none; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }

/* ---------- Spieltag ---------- */

.spieltag__grid { display: grid; gap: 44px; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: start; }
.results { list-style: none; margin: 0; padding: 0; }
.results li {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center;
  padding: 13px 0;
}
.results li + li { border-top: 1px solid var(--hair); }
.results .home { text-align: right; }
.results .score {
  font-variant-numeric: tabular-nums; font-weight: 700; font-size: 17px;
  padding: 4px 12px; background: var(--ink); color: var(--paper);
  border-radius: 0 10px 0 10px;
}
.brief { background: var(--wash); padding: 26px; border-radius: 0 22px 0 22px; }
.brief h3 { font-size: 1.15rem; margin-bottom: 14px; }
.brief ul { margin: 0; padding: 0; list-style: none; font-size: 15px; }
.brief li { padding: 11px 0 11px 20px; position: relative; color: var(--ink-soft); }
.brief li + li { border-top: 1px solid var(--hair); }
.brief li::before {
  content: ""; position: absolute; left: 0; top: 19px;
  width: 9px; height: 2px; background: var(--accent);
}

/* ---------- Nachrichtenlauf ---------- */

.feed__grid {
  display: grid; gap: 34px 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card { display: flex; flex-direction: column; }
.card--feature { grid-column: span 2; }
.card--feature .card__title { font-size: 1.75rem; }
.card--offset { padding-top: 26px; }
.card__media { margin: 0 0 16px; }
.card__media img { width: 100%; }
.card__title { font-size: 1.2rem; line-height: 1.2; }
.card__title a { text-decoration: none; }
.card__title a:hover { text-decoration: underline; text-decoration-color: var(--accent); }
.card__lead { margin-top: 9px; font-size: 15px; color: var(--ink-soft); }
.card__meta { margin-top: auto; padding-top: 14px; }
.card.is-hidden { display: none; }
.feed__status { margin-top: 26px; font-size: 14px; color: var(--ink-quiet); }

/* ---------- Terminkalender ---------- */

.calendar__blocks { display: grid; grid-template-columns: minmax(0, 1fr); gap: 46px; }
.calendar__month { font-size: 1.15rem; margin-bottom: 14px; }

/* ---------- Wettbewerbe ---------- */

.comps { display: grid; gap: 34px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.comp { background: var(--paper); }
.comp--wash { background: var(--wash); padding: 26px; border-radius: 0 24px 0 24px; }
.comp__title { font-size: 1.3rem; }
.comp__meta { margin-top: 8px; font-size: 13.5px; color: var(--ink-quiet); }
.comp__text { margin-top: 14px; font-size: 15px; color: var(--ink-soft); }
.mini { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 14.5px; font-variant-numeric: tabular-nums; }
.mini caption { text-align: left; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-quiet); padding-bottom: 9px; }
.mini th, .mini td { padding: 8px 6px; }
.mini thead th { font: 600 12px/1.2 var(--font-ui); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-quiet); text-align: right; border-bottom: 1px solid var(--ink); }
.mini thead th:first-child { text-align: left; }
.mini tbody th { text-align: left; font-weight: 500; }
.mini tbody td { text-align: right; }
.mini tbody tr:nth-child(even) { background: rgba(0,0,0,.035); }

/* ---------- Statistik ---------- */

.stats__grid { display: grid; gap: 44px; min-width: 0; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); align-items: start; }
.attendance { list-style: none; margin: 18px 0 0; padding: 0; }
.attendance li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; font-size: 15px; }
.attendance li + li { border-top: 1px solid var(--hair); }
.attendance b { font-variant-numeric: tabular-nums; }

/* ---------- Redaktion ---------- */

.editorial__grid { display: grid; gap: 44px; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: center; }
.people { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 20px; }
.person { display: flex; gap: 16px; align-items: flex-start; }
.person__avatar {
  flex: none; width: 44px; height: 44px;
  display: grid; place-items: center;
  font: 700 13px/1 var(--font-ui); letter-spacing: .04em;
  border-radius: 0 14px 0 14px; background: var(--ink); color: var(--paper);
}
.person__avatar--accent { background: var(--accent); }
.person__name { font-weight: 600; }
.person__role { font-size: 14px; color: var(--ink-quiet); }

/* ---------- FAQ ---------- */

.faq { width: 100%; }
.faq__item { width: 100%; }
.faq__item + .faq__item { border-top: 1px solid var(--hair); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: 0; cursor: pointer;
  padding: 22px 0; text-align: left;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--ink);
}
.faq__question:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.faq__icon { flex: none; width: 26px; height: 26px; display: grid; place-items: center; color: var(--accent); transition: transform .2s ease; }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__answer { padding: 0 0 24px; max-width: 44em; color: var(--ink-soft); font-size: 16px; }
.faq__answer[hidden] { display: none; }

/* ---------- Artikelseite ---------- */

.breadcrumb { font-size: 13px; color: var(--ink-quiet); padding-block: 20px 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumb li::after { content: "\2192"; margin-left: 8px; color: var(--hair); }
.breadcrumb li:last-child::after { content: ""; margin: 0; }

.article { padding-block: 30px 70px; }
.article__header { max-width: 44em; }
.article__title { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.05; }
.article__lead { margin-top: 18px; font-size: 19px; color: var(--ink-soft); max-width: 34em; }
.article__meta { margin-top: 18px; }
.article__figure { margin: 34px 0 0; }
.article__figure figcaption { margin-top: 9px; font-size: 12.5px; color: var(--ink-quiet); }
.article__body { margin-top: 34px; max-width: 36em; font-size: 17.5px; }
.article__body h2 { font-size: 1.5rem; margin-top: 34px; margin-bottom: 12px; }
.readmore { margin-top: 46px; }
.readmore h2 { font-size: 1.2rem; margin-bottom: 16px; }
.readmore ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.readmore li { padding-top: 14px; border-top: 1px solid var(--hair); }

/* ---------- Rechtstexte ---------- */

.legal { padding-block: 34px 76px; }
.legal__title { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.legal__updated { margin-top: 14px; font-size: 13.5px; color: var(--ink-quiet); }
.legal__body { margin-top: 30px; max-width: 40em; }
.legal__body--flush { margin-top: 0; }
.legal__body h2 { font-size: 1.35rem; margin-top: 36px; margin-bottom: 12px; }
.legal__body h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 8px; }
.legal__body ul { padding-left: 20px; }
.legal__body li { margin-bottom: 8px; }
.legal__back { margin-top: 40px; }

.contact-grid { display: grid; gap: 40px; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: start; margin-top: 34px; }
.contact-card { background: var(--wash); padding: 26px; border-radius: 0 24px 0 24px; }
.contact-card + .contact-card { margin-top: 24px; }
.contact-card h2 { font-size: 1.2rem; margin-bottom: 12px; }
.contact-card p { font-size: 15.5px; }
.mail-line { font-size: 17px; font-weight: 600; margin-top: 6px; }

/* ---------- Fuß ---------- */

.site-footer { background: var(--ink); color: var(--paper); padding-block: 56px 34px; margin-top: 20px; }
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-decoration-color: var(--accent); }
.footer__top { display: grid; gap: 36px; grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr)); }
.footer__brand .brand__mark { border-bottom-color: var(--accent); }
.footer__about { margin-top: 16px; font-size: 14.5px; color: #c9c9c9; max-width: 30em; }
.footer__col h2 { font: 600 12px/1 var(--font-ui); letter-spacing: .14em; text-transform: uppercase; color: #9d9d9d; margin-bottom: 14px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 14.5px; }
.footer__bottom { margin-top: 42px; padding-top: 22px; font-size: 12.5px; color: #a5a5a5; display: grid; gap: 10px; }
.footer__bottom a { color: #d6d6d6; text-decoration: underline; }
.footer__disclaimer { max-width: 60em; }

/* ---------- Cookie-Hinweis / nach oben ---------- */

.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--ink); color: var(--paper);
  padding: 18px 0;
  transform: translateY(102%);
  transition: transform .28s ease;
}
.cookie.is-open { transform: translateY(0); }
.cookie__inner { display: flex; flex-wrap: wrap; gap: 16px 26px; align-items: center; justify-content: space-between; }
.cookie__text { font-size: 14px; max-width: 42em; color: #d8d8d8; }
.cookie__text a { color: var(--paper); }
.cookie__actions { display: flex; gap: 12px; }
.cookie .btn--primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cookie .btn--primary:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.cookie .btn--ghost { color: var(--paper); border-color: #6d6d6d; }
.cookie .btn--ghost:hover { background: var(--paper); color: var(--ink); }

.to-top {
  position: fixed; right: 20px; bottom: 22px; z-index: 45;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--paper);
  border: 0; border-radius: 0 16px 0 16px; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); }

/* ---------- Adaptiv ---------- */

@media (max-width: 1000px) {
  .titelseite__grid, .longread__grid, .spieltag__grid, .stats__grid, .editorial__grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .longread__aside { position: static; }
  .comps { grid-template-columns: minmax(0, 1fr); }
  .feed__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card--feature { grid-column: span 2; }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .section { padding-block: 54px; }
  .section--airy { padding-block: 66px; }
  .section--tight { padding-block: 40px; }
  .titelseite { padding-bottom: 52px; }
  .burger { display: inline-grid; place-items: center; }
  .site-header { position: static; }
  .site-header > .wrap:first-child {
    position: sticky; top: 0; z-index: 40;
    background: var(--paper);
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
  }
  .rubrics { padding-top: 10px; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); padding: 8px var(--gutter) 22px;
    box-shadow: 0 12px 22px rgba(0,0,0,.09);
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; gap: 2px; font-size: 16px; }
  .nav__list a { display: block; padding: 12px 0; }
  .feed__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .card--feature { grid-column: span 1; }
  .card--feature .card__title { font-size: 1.4rem; }
  .card--offset { padding-top: 0; }
  .footer__top { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .cookie__inner { align-items: flex-start; }
  .to-top { right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
