/* L203 Reichsstraße — Verkehrssicherheitsstudie
   Eigene Auswertung auf Basis offener Daten. Redaktionelles Layout. */

:root {
    --ink: #1a1a18;
    --ink-soft: #45464a;
    --ink-faint: #76787c;
    --paper: #fbfaf7;
    --paper-2: #f2efe7;
    --card: #ffffff;
    --line: #e4ded2;
    --line-strong: #d0c8b7;
    --slate: #1d2733;
    --slate-2: #2a3543;
    --red: #b22d22;
    --red-dot: #d62828;
    --amber: #c2820f;
    --amber-dot: #e8910c;
    --green: #2a7d4f;
    --green-dot: #2a9d5c;
    --gray: #7a8290;

    --serif: "Charter", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
    --sans: "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;

    --col: 720px;
    --wide: 1180px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.62;
    font-kerning: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Masthead & Navigation ---------- */

.masthead {
    border-bottom: 1px solid var(--line-strong);
    background: var(--paper);
}
.masthead-inner {
    max-width: var(--wide);
    margin: 0 auto;
    padding: 14px 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}
.masthead .wordmark {
    font-family: var(--sans);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--ink);
}
.masthead .wordmark .road {
    color: var(--red);
}
.masthead .standline {
    font-size: 12px;
    color: var(--ink-faint);
    letter-spacing: .02em;
}

nav.sitenav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 250, 247, 0.94);
    backdrop-filter: saturate(140%) blur(6px);
    border-bottom: 1px solid var(--line-strong);
}
nav.sitenav ul {
    max-width: var(--wide);
    margin: 0 auto;
    padding: 0 22px;
    list-style: none;
    display: flex;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
}
nav.sitenav ul::-webkit-scrollbar { display: none; }
nav.sitenav a {
    display: block;
    padding: 13px 14px 11px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .01em;
    color: var(--ink-soft);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}
nav.sitenav a:hover { color: var(--ink); }
nav.sitenav a[aria-current="page"] {
    color: var(--red);
    font-weight: 700;
    border-bottom-color: var(--red);
    background: rgba(178, 45, 34, 0.07);
}
/* Scroll-Hinweis: roter Pfeil am rechten Rand, nur wenn die Leiste scrollbar ist */
nav.sitenav.is-scrollable::after {
    content: "\276F";            /* ❯ */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 58px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    background:
        radial-gradient(circle at calc(100% - 23px) 50%, var(--red) 0 14px, transparent 15px),
        linear-gradient(to right, rgba(251, 250, 247, 0) 0%, rgba(251, 250, 247, 0.99) 42%);
    pointer-events: none;
    transition: opacity .25s ease;
    animation: nav-scroll-hint 1.3s ease-in-out 3;
}
nav.sitenav.at-end::after { opacity: 0; }
@keyframes nav-scroll-hint {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(5px); }
}
@media (prefers-reduced-motion: reduce) {
    nav.sitenav.is-scrollable::after { animation: none; }
}

/* ---------- Layout wrappers ---------- */

main { display: block; }

.wrap {
    max-width: var(--wide);
    margin: 0 auto;
    padding: 0 28px;
}

.measure {
    max-width: var(--col);
    margin-left: auto;
    margin-right: auto;
}

section.band { padding: 60px 0; border-bottom: 1px solid var(--line); }
section.band.alt { background: var(--paper-2); }
section.band:last-of-type { border-bottom: none; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.16; color: var(--ink); letter-spacing: -0.01em; }

.kicker {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    margin: 0 0 14px;
}
.section-no {
    font-family: var(--sans);
    font-variant-numeric: tabular-nums;
    color: var(--ink-faint);
    font-weight: 700;
    letter-spacing: .04em;
    font-size: 13px;
}

h1.title { font-size: clamp(34px, 5vw, 56px); margin: 8px 0 18px; }
h2 { font-size: clamp(25px, 3.2vw, 34px); margin: 0 0 18px; }
h3 { font-size: 21px; margin: 34px 0 10px; }
h4 { font-size: 17px; font-family: var(--sans); font-weight: 700; margin: 24px 0 6px; letter-spacing: 0; }

p { margin: 0 0 18px; }
.lead {
    font-size: clamp(19px, 2.2vw, 23px);
    line-height: 1.5;
    color: var(--ink-soft);
}
.dek { font-size: 19px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 26px; }

a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line-strong); text-underline-offset: 2px; }
a:hover { text-decoration-color: var(--red); }

strong, b { font-weight: 700; }
small { font-size: 13px; }

ul.body, ol.body { margin: 0 0 18px; padding-left: 1.2em; }
ul.body li, ol.body li { margin-bottom: 9px; }

sup.fn { font-size: .68em; font-weight: 700; line-height: 0; }
sup.fn a { text-decoration: none; color: var(--red); padding: 0 1px; }

.note { color: var(--ink-faint); font-size: 14px; }

/* ---------- Hero ---------- */

.hero { padding: 64px 0 30px; }
.hero .place {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-faint);
}
.hero .standby { margin-top: 22px; color: var(--ink-faint); font-size: 14px; }

/* ---------- Key figures ---------- */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin: 6px 0 0;
}
.stat {
    background: var(--card);
    padding: 22px 20px 20px;
}
.stat .num {
    font-family: var(--sans);
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: -0.03em;
    font-size: clamp(34px, 4.4vw, 50px);
    line-height: 1;
    color: var(--ink);
}
.stat .num.red { color: var(--red); }
.stat .lbl { margin-top: 9px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.32; }
.stat .sub { margin-top: 3px; font-size: 12px; color: var(--ink-faint); }

@media (max-width: 720px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Pull quote / Leitsatz ---------- */

blockquote.leit {
    margin: 34px 0;
    padding: 4px 0 4px 26px;
    border-left: 3px solid var(--red);
    font-family: var(--serif);
    font-size: clamp(21px, 2.6vw, 27px);
    line-height: 1.34;
    color: var(--ink);
    font-style: normal;
}
blockquote.leit cite {
    display: block;
    margin-top: 14px;
    font-family: var(--sans);
    font-size: 13px;
    font-style: normal;
    color: var(--ink-faint);
    letter-spacing: .02em;
}

/* ---------- Cards / callouts ---------- */

.callout {
    background: var(--card);
    border: 1px solid var(--line);
    border-left: 3px solid var(--slate);
    padding: 20px 22px;
    margin: 26px 0;
    font-size: 15.5px;
    line-height: 1.55;
}
.callout.warn { border-left-color: var(--amber); }
.callout.crit { border-left-color: var(--red); }
.callout h4 { margin-top: 0; }

/* ---------- Tables ---------- */

.table-scroll { overflow-x: auto; margin: 24px 0; border: 1px solid var(--line); }
/* Scroll-Hinweis für horizontal scrollbare Tabellen (Schatten rechts) */
.tscroll-wrap { position: relative; margin: 24px 0; }
.tscroll-wrap .table-scroll { margin: 0; }
.tscroll-wrap.is-scrollable::after {
    content: "";
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    width: 42px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
    pointer-events: none;
    transition: opacity .2s ease;
}
.tscroll-wrap.at-end::after { opacity: 0; }
table.data {
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    background: var(--card);
}
table.data caption {
    text-align: left;
    font-size: 13px;
    color: var(--ink-faint);
    padding: 0 0 9px;
    caption-side: bottom;
}
table.data th, table.data td {
    padding: 9px 13px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}
table.data thead th {
    background: var(--slate);
    color: #fff;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: .02em;
    border-bottom: none;
    position: sticky;
    top: 0;
    white-space: nowrap;
}
table.data td.num, table.data th.num { text-align: right; font-variant-numeric: tabular-nums; }
table.data tbody tr:hover td { background: #faf8f3; }
table.data tr.sum td { font-weight: 700; background: var(--paper-2); border-top: 2px solid var(--slate); }
table.data tr.sum:hover td { background: var(--paper-2); }

/* ---------- Status badges ---------- */

.badge {
    display: inline-block;
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .03em;
    padding: 2px 8px;
    border-radius: 2px;
    white-space: nowrap;
    line-height: 1.5;
}
.badge.ok { background: #e7f1ea; color: var(--green); border: 1px solid #bedccb; }
.badge.gap { background: #f7e7e5; color: var(--red); border: 1px solid #e7c2bd; }
.badge.partial { background: #f8eed9; color: var(--amber); border: 1px solid #e8d3a3; }
.badge.fatal { background: var(--red); color: #fff; }

.tick { color: var(--green); font-weight: 700; }
.cross { color: var(--ink-faint); font-weight: 700; }

/* ---------- Figures ---------- */

figure.fig { margin: 32px 0; }
figure.fig img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--line);
    background: #fff;
}
figure.fig figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: var(--ink-faint);
    line-height: 1.45;
}
figure.fig figcaption .fignum { font-weight: 700; color: var(--ink-soft); }

/* ---------- Inline SVG bar charts ---------- */

.chart { margin: 26px 0; }
.chart svg { width: 100%; height: auto; display: block; }
.chart .axis { stroke: var(--line-strong); stroke-width: 1; }
.chart .grid { stroke: var(--line); stroke-width: 1; }
.chart text { font-family: var(--sans); fill: var(--ink-soft); }
.chart .barv { font-variant-numeric: tabular-nums; fill: var(--ink); font-weight: 700; }
.chart .yr { fill: var(--ink-faint); }
.legend { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--ink-soft); margin: 10px 0 0; }
.legend .sw { display: inline-block; width: 12px; height: 12px; margin-right: 6px; vertical-align: -1px; border-radius: 2px; }

/* ---------- Case list (Chronik) ---------- */

.cases { margin: 26px 0; }
.case {
    border: 1px solid var(--line);
    border-left: 3px solid var(--gray);
    background: var(--card);
    padding: 16px 20px;
    margin-bottom: 14px;
}
.case.fatal { border-left-color: var(--red); }
.case.injury { border-left-color: var(--amber); }
.case .case-head {
    display: flex;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.case .date {
    font-family: var(--sans);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    font-size: 15px;
}
.case .loc { font-size: 14px; color: var(--ink-soft); }
.case .body-txt { font-size: 14.5px; line-height: 1.5; margin: 4px 0 8px; }
.case .srcs { font-size: 12.5px; color: var(--ink-faint); }
.case .srcs a { color: var(--ink-soft); }

/* ---------- Source list ---------- */

ol.sources { font-size: 14.5px; line-height: 1.5; padding-left: 1.5em; }
ol.sources li { margin-bottom: 12px; }
ol.sources li .meta { color: var(--ink-faint); font-size: 13px; }

.method-list { font-size: 15px; line-height: 1.55; }
.method-list li { margin-bottom: 11px; }

/* ---------- Map ---------- */

.mapframe {
    position: relative;
    height: min(78vh, 760px);
    border: 1px solid var(--line-strong);
    background: #e9e9e4;
}
#map { position: absolute; inset: 0; }
.map-legend {
    position: absolute;
    z-index: 600;
    bottom: 16px;
    left: 16px;
    background: #fff;
    border: 1px solid var(--line-strong);
    padding: 11px 14px;
    font-size: 13px;
    box-shadow: 0 1px 8px rgba(0,0,0,.16);
    line-height: 1.7;
}
.map-legend b { font-size: 13px; }
.map-legend .dot { display: inline-block; width: 11px; height: 11px; border-radius: 50%; margin-right: 7px; vertical-align: -1px; }
.map-legend small { color: var(--ink-faint); }

/* ---------- Download / CTA ---------- */

.downloads { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--slate);
    background: var(--slate);
    color: #fff;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: .01em;
}
/* Die Bestaetigungs-/Abmeldeseiten nutzen .btn an einem <button>; ohne diese Zeile
   erbt es die Systemschrift des Browsers statt der Schrift der Website. */
button.btn { font-family: var(--sans); cursor: pointer; }
.btn:hover { background: var(--slate-2); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--paper-2); }
.btn .meta { font-weight: 400; color: #aebbc8; font-size: 12.5px; }
.btn.ghost .meta { color: var(--ink-faint); }
.btn.cta { background: var(--red); border-color: var(--red); }
.btn.cta:hover { background: #9a271d; }

/* Vorabzug-/„in Arbeit"-Banner (nach der Navigation) */
.vorabzug-banner {
    background: #f8eed9;
    color: var(--amber);
    border-bottom: 1px solid #e8d3a3;
    text-align: center;
    font-size: 13.5px;
    line-height: 1.45;
    padding: 8px 16px;
}
.vorabzug-banner strong { letter-spacing: .07em; }
.vorabzug-banner a { color: var(--amber); font-weight: 600; }

/* Statusvariante: sachliche Meldung statt Warnung */
.vorabzug-banner.info {
    background: #eaeff4;
    color: var(--slate);
    border-bottom: 1px solid #cdd8e3;
}
.vorabzug-banner.info a { color: var(--slate); }

/* Hervorgehobener Download-Block */
.download-box {
    background: var(--card);
    border: 1px solid var(--line-strong);
    border-left: 3px solid var(--red);
    padding: 26px 28px;
    margin: 30px 0;
}
.download-box .dl-ti {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 8px;
}
.download-box .dl-de { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 20px; }
.download-box .downloads { margin: 0; }
.download-box .note { margin: 16px 0 0; }
.btn.gross { padding: 17px 30px; font-size: 17px; gap: 12px; }

/* Angabentabelle (Impressum): Zeilenkopf links, Wert rechts */
table.data.angaben tbody th {
    width: 34%;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--paper-2);
    white-space: normal;
}
@media (max-width: 560px) {
    table.data.angaben, table.data.angaben tbody, table.data.angaben tr, table.data.angaben th, table.data.angaben td { display: block; width: auto; }
    table.data.angaben { width: 100%; }
    table.data.angaben tbody th { width: auto; border-bottom: none; padding-bottom: 2px; }
    table.data.angaben tbody td { padding-top: 2px; }
}
.btn .pfeil { font-size: 15px; line-height: 1; }
@media (max-width: 560px) {
    .download-box { padding: 20px; }
    .btn.gross { width: 100%; justify-content: center; }
}

/* Rufezeichen-Button (fixe Umfrage-CTA, auf allen Inhaltsseiten) */
.umfrage-fab {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    box-sizing: border-box;
    max-width: calc(100vw - 32px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 9px 20px 9px 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,.28);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .01em;
    white-space: nowrap;
    /* eigene Compositing-Ebene erzwingen — behebt Samsung-Internet-Bug (fixed+bottom
       wird erst nach Scroll gezeichnet) */
    transform: translateZ(0);
    will-change: transform;
}
.umfrage-fab:hover { background: #9a271d; text-decoration: none; }
.umfrage-fab .bang {
    display: block;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
}
@media (max-width: 540px) {
    .umfrage-fab {
        right: 12px;
        bottom: 12px;
        padding: 8px 16px 8px 10px;
        font-size: 14px;
        gap: 8px;
    }
    .umfrage-fab .bang { width: 21px; height: 21px; }
}

/* ---------- Cross links (page foot) ---------- */

.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 8px 0; }
.pager a {
    background: var(--card);
    padding: 20px 22px;
    text-decoration: none;
    color: var(--ink);
    display: block;
}
.pager a:hover { background: var(--paper-2); }
.pager .dir { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); font-weight: 700; }
.pager .ti { font-family: var(--serif); font-size: 19px; margin-top: 5px; }
.pager a.next { text-align: right; }
@media (max-width: 620px) { .pager { grid-template-columns: 1fr; } .pager a.next { text-align: left; } }

/* ---------- Footer ---------- */

footer.site {
    background: var(--slate);
    color: #c4cdd6;
    font-size: 13.5px;
    line-height: 1.6;
    padding: 44px 0 54px;
}
footer.site .wrap { max-width: var(--wide); }
footer.site h5 { color: #fff; font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 12px; }
footer.site a { color: #e7edf2; text-decoration-color: #4a5765; }
footer.site a:hover { text-decoration-color: #fff; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 38px; }
footer.site .fine { margin-top: 34px; padding-top: 20px; border-top: 1px solid #33414f; color: #8d99a4; font-size: 12.5px; }
footer.site ul { list-style: none; margin: 0; padding: 0; }
footer.site ul li { margin-bottom: 8px; }
@media (max-width: 760px) { footer.site .cols { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Two-column split ---------- */

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: start; }
.split.wide-left { grid-template-columns: 1.25fr 1fr; }
@media (max-width: 880px) { .split, .split.wide-left { grid-template-columns: 1fr; gap: 28px; } }

.toc { margin: 30px 0; }
.toc ol { list-style: none; counter-reset: t; padding: 0; }
.toc li { counter-increment: t; border-top: 1px solid var(--line); }
.toc li:last-child { border-bottom: 1px solid var(--line); }
.toc a { display: flex; gap: 16px; padding: 15px 4px; text-decoration: none; align-items: baseline; }
.toc a:hover { background: var(--card); }
.toc a::before { content: counter(t, decimal-leading-zero); font-variant-numeric: tabular-nums; color: var(--red); font-weight: 700; font-size: 13px; min-width: 26px; }
.toc .toc-ti { font-family: var(--serif); font-size: 19px; color: var(--ink); }
.toc .toc-de { display: block; font-family: var(--sans); font-size: 13.5px; color: var(--ink-faint); margin-top: 2px; }

.skip { position: absolute; left: -9999px; }
.skip:focus { position: static; }

/* ---------- News-/Update-Anmeldung (Band auf index.html, Kompaktform im Footer) ---------- */

.newsform { margin: 26px 0 0; max-width: 560px; }
.newsform .row { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; }
.newsform input[type=email] {
    flex: 1 1 260px; min-width: 0; box-sizing: border-box; font: inherit; font-size: 15px;
    padding: 12px 13px; border: 1px solid var(--line-strong); border-radius: 6px;
    background: var(--card); color: var(--ink);
}
.newsform input[type=email]:focus { outline: 2px solid var(--red); border-color: var(--red); }
.newsform button {
    flex: 0 0 auto; font: inherit; font-weight: 600; font-size: 15px; color: #fff;
    background: var(--red); border: 0; border-radius: 6px; padding: 12px 24px; cursor: pointer;
}
.newsform button:hover { background: #9a271d; }
.newsform button:disabled { opacity: .55; cursor: default; }
.newsform .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-soft); margin-top: 14px; line-height: 1.5; }
.newsform .consent input { margin-top: 3px; flex: 0 0 auto; }
.newsform .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.newsform .hinweis { margin: 12px 0 0; font-size: 13px; color: var(--ink-faint); line-height: 1.5; }
.newsform .hinweis strong { color: var(--ink-soft); }
.newsform .msg { margin-top: 14px; font-size: 14.5px; }
.newsform .msg.ok  { color: var(--green); font-weight: 600; }
.newsform .msg.err { color: var(--red); font-weight: 600; }

/* Footer-Variante: dunkler Grund, deshalb eigene Farben statt der Papier-Tokens */
footer.site .newsform { margin-top: 4px; max-width: none; }
footer.site .newsform input[type=email] {
    flex: 1 1 180px; background: #16202b; border-color: #3d4a58; color: #eef3f7; font-size: 14px; padding: 10px 12px;
}
footer.site .newsform input[type=email]::placeholder { color: #7c8996; }
footer.site .newsform input[type=email]:focus { outline: 2px solid #e0574a; border-color: #e0574a; }
footer.site .newsform button { font-size: 14px; padding: 10px 18px; }
footer.site .newsform .consent { color: #9aa6b2; font-size: 12.5px; margin-top: 11px; }
footer.site .newsform .consent a { color: #e7edf2; }
footer.site .newsform .hinweis { color: #8d99a4; font-size: 12.5px; margin-top: 10px; }
footer.site .newsform .hinweis strong { color: #c4cdd6; }
footer.site .newsform .msg { font-size: 13px; }
footer.site .newsform .msg.ok  { color: #6fd39b; }
footer.site .newsform .msg.err { color: #ff9c90; }
@media (max-width: 760px) { .newsform .row { flex-direction: column; } .newsform button { width: 100%; } }

footer.site .newsrow {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 38px; align-items: start;
    margin-top: 34px; padding-top: 26px; border-top: 1px solid #33414f;
}
footer.site .newsrow p { margin: 0; color: #a9b4bf; font-size: 13px; }
@media (max-width: 760px) { footer.site .newsrow { grid-template-columns: 1fr; gap: 20px; } }
