/* Source Serif 4 (SIL Open Font License) — lokal gehostet, kein externer Dienst */
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/source-serif-4-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/source-serif-4-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #e2e2e2;
  --red: #af001e;
  --masthead: #ffffff;
  --gold: transparent;
  --teal: #00707c;
  --amber: #a36100;
  --violet: #55509f;
  --green: #1f6a43;
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  --card-shadow: 0 0 0 1px var(--line);
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: #f5f5f5;
  color: #5c5c5c;
  border-bottom: 1px solid var(--line);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.top-strip__inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  background: var(--masthead);
  color: #fff;
}

.masthead-grid,
.header-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand strong {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
  margin-top: 8px;
}

.header-link {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 70px;
  overflow-x: auto;
}

.main-nav a {
  position: relative;
  padding: 24px 12px 20px;
  color: #242930;
  font-weight: 800;
  font-size: 0.84rem;
  border-radius: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--red);
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 4px;
  background: var(--red);
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(16, 18, 22, 0.04);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
}

.search {
  width: 240px;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 2px;
}

.search svg {
  width: 18px;
  height: 18px;
  color: #fff;
  flex: 0 0 auto;
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.88);
}

.icon-button,
.save-button,
.filter-pill {
  border: 0;
  cursor: pointer;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 2px;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.news-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 42px 0 32px;
}

.strip-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: stretch;
}

.strip-lines {
  display: grid;
  gap: 12px;
}

.breaking-row,
.topic-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  align-items: center;
  background: #f3f5f8;
  overflow: hidden;
}

.ticker__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 46px;
  padding: 0 12px;
  background: var(--red);
  color: #fff;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topic-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: #06182b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.topic-row strong {
  min-width: 0;
  padding: 0 18px;
  color: #20252b;
  font-size: 0.88rem;
  line-height: 1.2;
}

.ticker__viewport {
  min-width: 0;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 28px;
  white-space: nowrap;
  animation: ticker-run 34s linear infinite;
}

.news-strip:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__track a {
  position: relative;
  color: #20252b;
  font-size: 0.88rem;
  font-weight: 750;
}

.ticker__track a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 999px;
  transform: translateY(-50%);
}

.news-strip--compact {
  padding: 22px 0;
}

@keyframes ticker-run {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }

  .importance-meter__orb,
  .importance-meter__bars i {
    animation: none;
  }
}

.front-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.72fr) minmax(280px, 0.78fr);
  gap: 24px;
  padding: 34px 0 28px;
}

.front-layout > *,
.content-layout > *,
.article-layout > *,
.article-hero__grid > * {
  min-width: 0;
}

.lead-story {
  display: grid;
  grid-template-rows: 300px auto;
  background: var(--surface);
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-link {
  min-height: 300px;
}

.lead-story__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  padding: 28px clamp(24px, 3.4vw, 40px) 32px;
  border-top: 0;
}

.meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-date {
  color: #4a5360;
  font-size: 0.76rem;
  font-weight: 800;
}

.importance-meter {
  --meter-color: var(--red);
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  display: inline-grid;
  grid-template-columns: 30px minmax(0, auto) 30px;
  align-items: center;
  gap: 9px;
  padding: 6px 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--meter-color);
  border-radius: 2px;
}

.importance-meter--medium {
  --meter-color: var(--amber);
}

.importance-meter--base {
  --meter-color: var(--teal);
}

.importance-meter__orb {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #fff 0 45%, transparent 48%),
    conic-gradient(var(--meter-color) calc(var(--importance) * 1%), #e7eaee 0);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--meter-color) 34%, transparent);
  animation: importance-pulse 1.8s ease-in-out infinite;
}

.importance-meter__orb::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  background: var(--meter-color);
}

.importance-meter__text {
  min-width: 0;
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.importance-meter__text strong {
  color: #15191f;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.importance-meter__text small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
}

.importance-meter__bars {
  height: 24px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.importance-meter__bars i {
  width: 5px;
  min-height: 7px;
  display: block;
  background: var(--meter-color);
  border-radius: 1px 1px 0 0;
  animation: importance-bars 1.2s ease-in-out infinite;
}

.importance-meter__bars i:nth-child(1) {
  height: 10px;
}

.importance-meter__bars i:nth-child(2) {
  height: 16px;
  animation-delay: 0.14s;
}

.importance-meter__bars i:nth-child(3) {
  height: 22px;
  animation-delay: 0.28s;
}

.importance-meter--compact {
  min-height: 31px;
  grid-template-columns: 23px minmax(0, auto) 23px;
  gap: 6px;
  padding: 4px 7px;
}

.importance-meter--compact .importance-meter__orb {
  width: 21px;
  height: 21px;
}

.importance-meter--compact .importance-meter__orb::after {
  inset: 7px;
}

.importance-meter--compact .importance-meter__text strong {
  font-size: 0.68rem;
}

.importance-meter--compact .importance-meter__text small {
  font-size: 0.66rem;
}

.importance-meter--compact .importance-meter__bars {
  height: 18px;
}

.importance-meter--compact .importance-meter__bars i {
  width: 4px;
}

@keyframes importance-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--meter-color) 28%, transparent);
  }

  50% {
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--meter-color) 0%, transparent);
  }
}

@keyframes importance-bars {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.62;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: #e3f2e8;
  color: var(--green);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tag--red {
  background: #ffe7e6;
  color: var(--red);
}

.tag--teal {
  background: #dbf3f4;
  color: var(--teal);
}

.tag--amber {
  background: #fff1d3;
  color: #996406;
}

.tag--violet {
  background: #eee8ff;
  color: var(--violet);
}

.lead-story h1 {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.lead-story p {
  margin: 0;
  max-width: 56ch;
  color: #424a52;
  font-size: 0.98rem;
}

.story-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 2px;
  font-weight: 800;
}

.primary-link svg,
.save-button svg {
  width: 17px;
  height: 17px;
}

.save-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #edf1f5;
  color: var(--ink);
  border-radius: 2px;
  font-weight: 800;
}

.save-button.is-saved {
  background: #fff1d3;
  color: #7c5107;
}

.side-panel,
.rail-block {
  background: var(--surface);
  border: 0;
  border-radius: 2px;
}

.side-panel {
  padding: 24px;
  border-top: 5px solid var(--gold);
}

.front-stack {
  display: grid;
  gap: 18px;
}

.stack-card {
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
}

.stack-card a {
  display: grid;
  gap: 0;
}

.stack-card img {
  height: 175px;
}

.stack-card > a > .tag,
.stack-card > a > .article-date,
.stack-card > a > .importance-meter,
.stack-card > a > h2 {
  margin-left: 18px;
  margin-right: 18px;
}

.stack-card > a > .tag {
  margin-top: 14px;
}

.stack-card > a > .article-date,
.stack-card > a > .importance-meter,
.stack-card > a > h2 {
  margin-top: 10px;
}

.stack-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 820;
  line-height: 1.22;
  overflow-wrap: break-word;
  hyphens: auto;
}

.stack-card > a > h2 {
  margin: 10px 18px 18px;
}

.stack-card--compact a {
  grid-template-columns: 102px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.stack-card a > div {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 14px 18px 18px;
}

.stack-card a > div .tag,
.stack-card a > div .article-date,
.stack-card a > div h2 {
  margin-left: 0;
  margin-right: 0;
}

.stack-card a > div h2 {
  margin-bottom: 0;
}

.stack-card--compact img {
  height: 86px;
}

.stack-card--compact h2 {
  font-size: 1rem;
}

.panel-head,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-head h2,
.section-head h2,
.rail-block h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.18;
}

.panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  background: #e8f7eb;
  color: var(--green);
  border-radius: 2px;
  font-size: 0.74rem;
  font-weight: 800;
}

.ranked-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  counter-reset: ranked;
}

.ranked-list li {
  min-height: 112px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  padding: 14px 0;
  align-items: start;
  border-top: 1px solid var(--line);
  counter-increment: ranked;
}

.ranked-list li::before {
  content: counter(ranked, decimal-leading-zero);
  color: var(--red);
  font-weight: 800;
  font-size: 0.82rem;
}

.ranked-list__link {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.ranked-list__thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f3f5;
  border-radius: 2px;
}

.ranked-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.ranked-list__link:hover .ranked-list__thumb img,
.ranked-list__link:focus-visible .ranked-list__thumb img {
  transform: scale(1.05);
}

.ranked-list__content {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.ranked-list__topic {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ranked-list__content strong {
  display: block;
  color: #11151a;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: break-word;
  hyphens: auto;
}

.ranked-list .importance-meter--compact {
  width: 100%;
  max-width: 166px;
  grid-template-columns: 21px minmax(0, 1fr) 20px;
  padding: 4px 6px;
}

.filter-row {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 4px 0 24px;
  border-top: 1px solid var(--ink);
}

.filter-pill {
  min-height: 38px;
  padding: 0 14px;
  background: #fff;
  color: #333941;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-weight: 800;
  white-space: nowrap;
}

.filter-pill.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  padding-bottom: 48px;
}

.section-page {
  padding: 34px 0 58px;
}

.section-page__hero {
  margin-bottom: 30px;
  padding: clamp(42px, 5.5vw, 70px) 0 clamp(38px, 5vw, 64px);
  background: linear-gradient(135deg, #143163 0%, #0f2547 58%, #0c1f3c 100%);
  color: #ffffff;
}

.section-page__hero-inner {
  display: grid;
  gap: 16px;
}

.section-page__hero span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(92, 141, 255, 0.5);
  border-radius: 999px;
  background: rgba(92, 141, 255, 0.16);
  color: #9db9ff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-page__hero h1 {
  margin: 0;
  max-width: 28ch;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-page__hero p {
  max-width: 82ch;
  margin: 0;
  color: #b6c5e6;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.section-page__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-page .news-card {
  min-height: 470px;
  box-shadow: var(--card-shadow);
}

.section-page .news-card:hover {
  box-shadow: inset 0 -2px 0 var(--red), var(--card-shadow);
}

.section-page .card-body {
  padding: 20px;
}

.section-head {
  margin-bottom: 14px;
}

.section-head a {
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 800;
}

.editor-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 2px;
  color: #424a52;
  font-size: 0.92rem;
}

.editor-note strong {
  color: var(--ink);
  flex: 0 0 auto;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.news-card {
  min-height: 455px;
  display: grid;
  grid-template-rows: 168px 1fr;
  background: var(--surface);
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 -1px 0 var(--line);
}

.news-card:hover {
  box-shadow: inset 0 -2px 0 var(--red);
}

.news-card.is-hidden {
  display: none;
}

.empty-state {
  display: none;
  margin: 18px 0 0;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  font-weight: 800;
}

.empty-state.is-visible {
  display: block;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px;
}

.card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 820;
  line-height: 1.22;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.context-line {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: #303941;
  font-size: 0.88rem;
  font-weight: 650;
}

.source-link {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.card-body > a:not(.source-link) {
  margin-top: auto;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 800;
}

.right-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rail-block {
  padding: 24px;
}

.rail-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: #e7f4f5;
  color: var(--teal);
  border-radius: 2px;
}

.rail-icon svg {
  width: 19px;
  height: 19px;
}

.section-head--compact {
  margin-bottom: 12px;
}

.tool-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tool-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.tool-list strong {
  font-size: 0.94rem;
}

.tool-list span {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

.glossary {
  margin: 0;
}

.glossary dt {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.glossary dd {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-loading,
.article-error {
  padding: 56px 0 80px;
}

.article-error h1 {
  margin: 18px 0 8px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 800;
}

.back-link svg {
  width: 17px;
  height: 17px;
}

.article-hero {
  padding: 24px 0 22px;
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 18px;
}

.article-hero__copy,
.article-hero__media {
  background: var(--surface);
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.article-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  min-height: 320px;
  padding: clamp(30px, 4vw, 48px);
  box-shadow: inset 0 5px 0 var(--gold), var(--card-shadow);
}

.article-hero__copy h1 {
  margin: 0;
  max-width: 26ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.article-hero__copy p {
  margin: 0;
  max-width: 58ch;
  color: #424a52;
  font-size: 1rem;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.article-hero__media {
  min-height: 320px;
  margin: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  padding: 0 0 56px;
}

.article-body {
  display: grid;
  gap: 22px;
}

.summary-box,
.article-section {
  background: var(--surface);
  border: 0;
  border-radius: 2px;
  padding: clamp(30px, 4vw, 48px);
  box-shadow: var(--card-shadow);
}

.summary-box {
  box-shadow: inset 5px 0 0 var(--gold), var(--card-shadow);
}

.summary-box h2,
.article-section h2,
.article-aside h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 850;
  line-height: 1.18;
}

.summary-box ul,
.swiss-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: #38332a;
}

.summary-box li,
.swiss-box li {
  padding-left: 2px;
}

.article-section p {
  margin: 0;
  color: #38332a;
  font-size: 1.06rem;
  line-height: 1.72;
}

.article-section p + p {
  margin-top: 14px;
}

.legal-body {
  width: 100%;
  max-width: 860px;
  min-width: 0;
}

.legal-body .article-section {
  min-width: 0;
}

.legal-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #38332a;
  font-size: 1.06rem;
  line-height: 1.72;
}

.legal-body p + ul,
.legal-body ul + p {
  margin-top: 14px;
}

.legal-body a {
  color: var(--red);
  font-weight: 600;
}

.geo-stand {
  margin: 16px auto 0;
  max-width: 980px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.geo-sources {
  position: relative;
  margin-top: 34px;
  margin-bottom: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(175, 0, 30, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fffaf5 58%, #f3f7ff 100%);
  border: 1px solid rgba(15, 37, 71, 0.08);
  border-left: 6px solid var(--red);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 18px 50px rgba(15, 37, 71, 0.11);
}

.geo-sources::before {
  content: "Geprüfte Basis";
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #0f2547;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.geo-faq {
  margin-top: 28px;
  margin-bottom: 28px;
  background: var(--surface);
  border-radius: 2px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--card-shadow);
}

.geo-sources h2,
.geo-faq h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
}

.geo-sources p,
.geo-sources li,
.geo-faq p {
  color: #38332a;
  line-height: 1.7;
}

.geo-sources > p:first-of-type {
  max-width: 820px;
  margin: 0;
  color: #51483c;
  font-size: 1.02rem;
}

.geo-sources ol {
  counter-reset: geo-source;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.geo-sources li {
  position: relative;
  min-height: 132px;
  padding: 18px 18px 18px 58px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 37, 71, 0.09);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15, 37, 71, 0.06);
}

.geo-sources li::before {
  counter-increment: geo-source;
  content: counter(geo-source);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.geo-sources a {
  display: inline-block;
  margin-bottom: 5px;
  color: #0f2547;
  font-weight: 900;
  text-decoration-color: rgba(175, 0, 30, 0.3);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.geo-sources a:hover {
  color: var(--red);
}

.geo-sources .geo-stand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 37, 71, 0.06);
  color: #0f2547;
  font-size: 0.8rem;
}

.geo-sources .geo-stand::before {
  content: "✓";
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #0f2547;
  color: #fff;
  font-size: 0.7rem;
}

.geo-faq__list {
  display: grid;
  gap: 12px;
}

.geo-faq details {
  border: 1px solid rgba(16, 18, 22, 0.1);
  border-radius: 10px;
  padding: 16px 18px;
  background: #fff;
}

.geo-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.geo-faq details p {
  margin: 12px 0 0;
}

.geo-market-context {
  margin-top: 34px;
  margin-bottom: 34px;
  background: linear-gradient(135deg, #fff 0%, #fff8f2 55%, #f4f8ff 100%);
  border-top: 5px solid var(--red);
  border-radius: 2px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--card-shadow);
}

.geo-market-context__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.geo-market-context h2 {
  max-width: 900px;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  line-height: 1.06;
}

.geo-market-context__lead {
  max-width: 980px;
  margin: 0 0 24px;
  color: #302a22;
  font-size: 1.08rem;
  line-height: 1.72;
}

.geo-market-context__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.geo-market-context__grid article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 18, 22, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.geo-market-context h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.geo-market-context p,
.geo-market-context td,
.geo-market-context th {
  color: #38332a;
  line-height: 1.65;
}

.geo-market-context__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  background: #fff;
  font-size: 0.94rem;
}

.geo-market-context__table caption {
  padding: 0 0 10px;
  color: var(--muted);
  font-weight: 800;
  text-align: left;
}

.geo-market-context__table th,
.geo-market-context__table td {
  border: 1px solid rgba(16, 18, 22, 0.1);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.geo-market-context__table thead th {
  background: #0f2547;
  color: #fff;
}

.geo-market-context__table a {
  color: var(--red);
  font-weight: 900;
}

.article-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.article-aside .rail-block {
  padding: clamp(24px, 3vw, 30px);
  border: 0;
  box-shadow: var(--card-shadow);
}

.rail-icon--red {
  background: #ffe7e6;
  color: var(--red);
}

.source-box p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.source-box a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
}

.source-box a svg {
  width: 16px;
  height: 16px;
}

.related-list {
  display: grid;
  gap: 12px;
}

.related-list a {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 18, 22, 0.09);
}

.related-list a:first-child {
  padding-top: 0;
  border-top: 0;
}

.related-list span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-list strong {
  line-height: 1.25;
}

.site-footer {
  background: #0f2547;
  color: #e6eeff;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto auto auto auto;
  gap: 44px;
  align-items: start;
  padding: 36px 0 30px;
}

.footer-brand strong {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.footer-brand p {
  margin: 8px 0 0;
  max-width: 34ch;
  color: #8fa6cf;
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col h3 {
  margin: 0 0 6px;
  color: #8fa6cf;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a {
  color: #e6eeff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-col a:hover {
  color: #5c8dff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  color: #8fa6cf;
  font-size: 0.8rem;
}

.footer-bottom__row a {
  color: #e6eeff;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom__row a:hover {
  color: #5c8dff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.footer-qr img {
  display: block;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
}

.footer-qr span {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8fa6cf;
}

@media (max-width: 1020px) {
  .masthead-grid,
  .header-grid {
    grid-template-columns: 1fr auto;
  }

  .strip-grid,
  .front-layout,
  .content-layout,
  .article-layout,
  .article-hero__grid {
    grid-template-columns: 1fr;
  }

  .front-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .section-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stack-card--compact a {
    grid-template-columns: 1fr;
  }

  .stack-card--compact img {
    height: 150px;
  }

  .side-panel,
  .right-rail,
  .article-aside {
    width: 100%;
  }

  .article-hero__copy,
  .article-hero__media {
    min-height: 0;
  }

  .article-hero__media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 32px, 1180px);
  }

  .article-hero.page-shell,
  .article-layout.page-shell {
    width: min(100% - 32px, 1180px);
  }

  .top-strip__inner {
    justify-content: flex-start;
    overflow: auto;
    white-space: nowrap;
  }

  .masthead-grid,
  .header-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .search {
    width: min(100%, 260px);
  }

  .main-nav {
    min-height: 56px;
  }

  .main-nav a {
    padding: 18px 6px 15px;
    font-size: 0.78rem;
  }

  .news-strip {
    padding: 22px 0;
  }

  .breaking-row {
    min-height: 40px;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .breaking-row .ticker__label {
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .breaking-row .ticker__viewport {
    padding-left: 12px;
  }

  .topic-row {
    grid-template-columns: 1fr;
  }

  .topic-row strong {
    padding: 14px 16px;
  }

  .front-stack {
    grid-template-columns: 1fr;
  }

  .lead-story {
    min-height: 0;
  }

  .media-link {
    min-height: 260px;
  }

  .lead-story h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8.2vw, 2.35rem);
    line-height: 1.12;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .section-page {
    padding-top: 24px;
  }

  .section-page__grid {
    grid-template-columns: 1fr;
  }

  .geo-market-context__grid {
    grid-template-columns: 1fr;
  }

  .geo-sources ol {
    grid-template-columns: 1fr;
  }

  .geo-market-context__table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .section-page__hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.8vw, 2.5rem);
    line-height: 1.1;
  }

  .news-card {
    min-height: 0;
    grid-template-rows: 190px auto;
  }

  .article-hero__copy h1 {
    max-width: 100%;
    font-size: clamp(1.7rem, 7.8vw, 2.3rem);
    line-height: 1.14;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

/* AEO/GEO editorial refresh */
.article-hero {
  padding-top: 30px;
  padding-bottom: 28px;
}

.article-hero__copy--wide {
  max-width: 980px;
  min-height: 0;
  padding: 22px 0 12px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.article-hero__copy--wide h1 {
  max-width: 960px;
  margin: 14px 0 18px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: 0;
}

.article-deck {
  max-width: 880px;
  margin: 0 0 18px;
  color: #3f4548;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 19px;
  line-height: 1.48;
}

.article-kicker,
.section-eyebrow,
.rail-label {
  display: block;
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-hero__copy--wide .byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin: 20px 0 14px;
}

.article-hero__copy--wide .byline a {
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border: 1px solid #a8c8b3;
  background: #f1f8f3;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
}

.review-badge--pending {
  border-color: #d9b56f;
  background: #fff8e8;
  color: #7d5500;
}

.article-source-lead {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  color: var(--red);
  font-size: 14px;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-hero__media--top {
  position: relative;
  width: min(100%, 820px);
  min-height: 0;
  margin: 12px 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eef0f1;
  box-shadow: none;
}

.article-hero__media--top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__media--top figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.92);
  color: #383d40;
  font-size: 11px;
}

.article-layout--wide {
  grid-template-columns: minmax(0, 860px) minmax(230px, 270px);
  gap: 50px;
  align-items: start;
}

.article-layout--wide .article-body {
  max-width: 860px;
}

.article-layout--wide .article-body > .article-section > p,
.article-layout--wide .article-body > .article-section > ul,
.article-layout--wide .summary-box li {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 19px;
  line-height: 1.7;
}

.article-layout--wide .article-section h2,
.article-layout--wide .summary-box h2 {
  font-size: 27px;
  letter-spacing: 0;
}

.swiss-inline {
  margin-top: 38px;
  padding: 26px 28px;
  border-top: 4px solid var(--red);
  background: #f5f7f6;
}

.swiss-inline ul {
  margin: 0;
  padding-left: 20px;
}

.swiss-inline li + li {
  margin-top: 12px;
}

.source-list-block {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-source-list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.article-source-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.source-date-unknown {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.source-quality {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  background: var(--paper-2);
  color: var(--ink-2);
  font-size: 13px;
}

.source-quality a {
  color: var(--red);
  font-weight: 700;
}

.source-provenance {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
}

.editorial-status {
  margin-bottom: 24px;
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
  background: #f5f7f6;
}

.editorial-status__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-status__head a {
  color: var(--red);
  text-transform: none;
}

.editorial-status dl {
  margin: 0;
}

.editorial-status dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 16px;
}

.editorial-status dl > div + div {
  border-top: 1px solid #dde2df;
}

.editorial-status dt {
  color: var(--muted);
  font-size: 13px;
}

.editorial-status dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-align: right;
}

.promo-card {
  display: block;
  margin-bottom: 24px;
  border-top: 4px solid var(--amber);
  border-bottom: 1px solid var(--line);
  background: #faf6ef;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.promo-card:hover,
.promo-card:focus-visible {
  background: #f4ecdd;
  box-shadow: inset 0 0 0 1px var(--amber);
}

.promo-card__label {
  display: block;
  padding: 13px 16px;
  border-bottom: 1px solid #e6dcc9;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-card__body {
  display: grid;
  gap: 8px;
  padding: 14px 16px 16px;
}

.promo-card__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.promo-card:hover .promo-card__title {
  text-decoration: underline;
}

.promo-card__text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.promo-card__cta {
  color: var(--amber);
  font-size: 13px;
  font-weight: 750;
}

.promo-card__cta::after {
  content: " \2192";
}

.article-source-list a {
  display: grid;
  gap: 4px;
  color: var(--ink);
  text-decoration: none;
}

.article-source-list a:hover strong {
  color: var(--red);
  text-decoration: underline;
}

.article-source-list time {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.methodology-box {
  border-top-color: var(--teal);
}

.methodology-box a {
  color: var(--teal);
  font-weight: 750;
}

.topic-band {
  margin-top: 58px;
  padding: 48px 0 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f6f5;
}

.section-head--editorial {
  align-items: end;
  margin-bottom: 24px;
}

.section-head--editorial h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 34px;
  letter-spacing: 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.topic-link {
  min-width: 0;
  padding: 22px 24px 24px 0;
  border-bottom: 1px solid #cfd5d2;
  color: var(--ink);
  text-decoration: none;
}

.topic-link:nth-child(3n + 2),
.topic-link:nth-child(3n + 3) {
  padding-left: 24px;
  border-left: 1px solid #cfd5d2;
}

.topic-link > span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.topic-link strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 22px;
}

.topic-link p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.topic-link:hover strong {
  color: var(--red);
}

.editorial-trust {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr) auto;
  gap: 40px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.editorial-trust h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 29px;
  letter-spacing: 0;
}

.editorial-trust > p {
  margin: 0;
  color: #454b4e;
  line-height: 1.65;
}

.editorial-trust nav {
  display: grid;
  gap: 9px;
}

.editorial-trust nav a {
  color: var(--red);
  font-weight: 750;
}

.footer-consent {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 22px;
  border: 1px solid #bfc5c2;
  border-top: 4px solid var(--red);
  background: #fff;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
}

.consent-banner strong {
  font-size: 17px;
}

.consent-banner p {
  margin: 5px 0;
  color: var(--muted);
  line-height: 1.45;
}

.consent-banner a {
  color: var(--red);
  font-size: 13px;
}

.consent-banner__actions {
  display: flex;
  gap: 8px;
}

.consent-banner button {
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid #aeb4b1;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.consent-banner .consent-accept {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

@media (max-width: 1020px) {
  .article-layout--wide {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .article-layout--wide .article-aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .editorial-trust {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-trust nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, max-content);
  }
}

@media (max-width: 760px) {
  .article-hero__copy--wide h1 {
    font-size: 38px;
  }

  .article-deck {
    font-size: 19px;
  }

  .article-layout--wide .article-body > .article-section > p,
  .article-layout--wide .article-body > .article-section > ul,
  .article-layout--wide .summary-box li {
    font-size: 18px;
  }

  .article-layout--wide .article-aside,
  .topic-grid,
  .editorial-trust {
    grid-template-columns: 1fr;
  }

  .topic-link,
  .topic-link:nth-child(3n + 2),
  .topic-link:nth-child(3n + 3) {
    padding: 18px 0;
    border-left: 0;
  }

  .editorial-trust {
    gap: 20px;
  }

  .editorial-trust nav {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .consent-banner {
    grid-template-columns: 1fr;
  }

  .consent-banner__actions {
    justify-content: stretch;
  }

  .consent-banner button {
    flex: 1;
  }
}

@media (max-width: 520px) {
  .article-hero__copy--wide h1 {
    font-size: 32px;
  }

  .article-source-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .swiss-inline {
    padding: 22px 18px;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  /* Auf dem Handy selbst bringt der QR-Code nichts */
  .footer-qr {
    display: none;
  }

  .masthead-grid,
  .header-grid {
    min-height: 76px;
  }

  .search {
    width: 100%;
  }

  .front-layout {
    padding-top: 18px;
  }

  .lead-story__content {
    padding: 24px 26px 30px;
  }

  .lead-story p {
    font-size: 0.95rem;
  }

  .story-actions {
    align-items: stretch;
  }

  .primary-link,
  .save-button {
    justify-content: center;
    flex: 1 1 140px;
  }
}

/* === Benchmark-Seite === */
.benchmark-page {
  padding: 34px 0 58px;
}

.benchmark-hero {
  margin-bottom: 26px;
  padding: clamp(34px, 5vw, 58px) 0 clamp(30px, 4.5vw, 52px);
  background: linear-gradient(135deg, #143163 0%, #0f2547 58%, #0c1f3c 100%);
  color: #ffffff;
}

.benchmark-hero > .benchmark-hero__inner > span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(92, 141, 255, 0.5);
  border-radius: 999px;
  background: rgba(92, 141, 255, 0.16);
  color: #9db9ff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.benchmark-hero h1 {
  margin: 0;
  max-width: 22ch;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 850;
  line-height: 1.08;
}

.benchmark-hero p {
  max-width: 68ch;
  margin: 14px 0 0;
  color: #b6c5e6;
  font-size: 1.02rem;
  line-height: 1.6;
}

.benchmark-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.benchmark-hero__meta span {
  padding: 5px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #e6eeff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benchmark-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 8px;
}

.benchmark-toc a {
  padding: 8px 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.benchmark-toc a:hover {
  border-color: var(--red);
  color: var(--red);
}

.benchmark-category {
  margin-top: 44px;
  scroll-margin-top: 24px;
}

.benchmark-category__head {
  max-width: 860px;
  margin-bottom: 18px;
}

.benchmark-category__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-weight: 850;
  line-height: 1.12;
}

.benchmark-category__head h2 small {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.benchmark-category__head p {
  margin: 10px 0 0;
  color: #38332a;
  font-size: 0.98rem;
}

.bench-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bench-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr 190px;
  gap: 0;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.bench-card--winner {
  box-shadow: inset 5px 0 0 var(--gold), var(--card-shadow);
}

.bench-rank {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: #c9ccd2;
  line-height: 1;
}

.bench-card--winner .bench-rank {
  color: var(--red);
}

.bench-body {
  padding: 24px 26px 24px 0;
  min-width: 0;
}

.bench-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.bench-title-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.15;
}

.bench-title-row .bench-vendor {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.bench-badge {
  display: inline-block;
  padding: 3px 9px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bench-badge--alt {
  background: var(--teal);
}

.bench-badge--green {
  background: var(--green);
}

.bench-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 14px 0 0;
}

.bench-facts div {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.bench-facts dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.bench-facts dd {
  margin: 3px 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #38332a;
}

.bench-proscons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin-top: 16px;
}

.bench-proscons ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: #38332a;
}

.bench-proscons li {
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}

.bench-pros li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.bench-cons li::before {
  content: "\2212";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.bench-kmu {
  margin: 16px 0 0;
  padding: 10px 14px;
  background: #f6f7f4;
  box-shadow: inset 3px 0 0 var(--gold);
  font-size: 0.9rem;
  color: #38332a;
}

.bench-kmu strong {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.bench-score {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 24px 26px;
  border-left: 1px solid var(--line);
  background: #fbfbfa;
}

.bench-score__value {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.bench-score__value small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.bench-score__label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.bench-score__bars {
  display: grid;
  gap: 8px;
}

.bench-score__bars > div {
  display: grid;
  gap: 3px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
}

.bench-score__bars i {
  display: block;
  height: 5px;
  background: var(--line);
  position: relative;
}

.bench-score__bars i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(var(--val) * 1%);
  background: var(--red);
}

.bench-note {
  max-width: 860px;
  margin-top: 46px;
}

.bench-note .article-section + .article-section {
  margin-top: 16px;
}

@media (max-width: 860px) {
  .bench-card {
    grid-template-columns: 52px 1fr;
  }

  .bench-rank {
    padding-top: 24px;
    font-size: 1.5rem;
  }

  .bench-body {
    padding: 22px 20px 22px 0;
  }

  .bench-score {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 26px;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 16px 20px;
  }

  .bench-score__bars {
    flex: 1 1 240px;
  }

  .bench-facts,
  .bench-proscons {
    grid-template-columns: 1fr;
  }
}

/* === Lesbarkeit: Zeilenlaenge begrenzen === */
.article-section p,
.summary-box li,
.swiss-box li,
.legal-body p,
.legal-body li,
.section-page__hero p,
.benchmark-hero p {
  max-width: 82ch;
}

/* === Benchmark-Übersichtstabelle === */
.bench-table-wrap {
  margin-top: 26px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
  overflow-x: auto;
}

.bench-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.bench-table caption {
  caption-side: top;
  text-align: left;
  padding: 24px 26px 4px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 850;
}

.bench-table thead th {
  padding: 14px;
  border-bottom: 3px solid var(--ink);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}

.bench-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.bench-table tbody tr:not(.bt-cat):hover td {
  background: #faf7f0;
}

.bench-table .bt-cat td {
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 0;
}

.bench-table .bt-cat a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  float: right;
  text-transform: none;
  letter-spacing: 0;
}

.bench-table .bt-cat a:hover {
  color: #fff;
}

.bt-rank {
  width: 40px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: #b9bcc2;
  text-align: center;
}

tr.bt-first .bt-rank {
  color: var(--red);
}

.bt-tool {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  white-space: nowrap;
}

.bt-vendor {
  color: var(--muted);
  font-size: 0.84rem;
  white-space: nowrap;
}

.bt-price {
  white-space: nowrap;
}

.bt-score {
  display: inline-grid;
  gap: 4px;
  min-width: 92px;
}

.bt-score strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.bt-score strong small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.bt-score i {
  display: block;
  height: 4px;
  background: var(--line);
  position: relative;
}

.bt-score i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(var(--val) * 1%);
  background: var(--red);
}

.bench-table .bench-badge {
  white-space: nowrap;
}

.bench-table-note {
  margin: 0;
  padding: 12px 26px 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* === SRF-Look: weisser Header, Kicker, flache Teaser === */
.site-header {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.brand strong {
  color: var(--red);
}

.brand small {
  color: #5c5c5c;
}

.header-link {
  color: var(--ink);
}

.masthead-grid,
.header-grid {
  min-height: 74px;
}

.search {
  border-color: #c9c9c9;
}

.search svg {
  color: #5c5c5c;
}

.search input {
  color: var(--ink);
}

.search input::placeholder {
  color: #8a8a8a;
}

/* Rubrik-Kicker in Rot statt farbiger Pills */
.tag,
.tag.tag--red,
.tag.tag--teal,
.tag.tag--amber,
.tag.tag--violet {
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
}

/* Flache, rechteckige Teaser wie bei SRF */
.news-card,
.stack-card,
.lead-story,
.article-section,
.summary-box,
.rail-block,
.bench-card,
.bench-table-wrap,
.section-page__hero,
.benchmark-hero,
.article-hero__media,
.empty-state,
.breaking-row,
.topic-row,
.bench-kmu,
.benchmark-toc a,
.tag,
.bench-badge,
.filter-pill,
.primary-link,
.save-button,
.search,
.importance-meter,
.ticker__label,
.icon-button {
  border-radius: 0;
}

.breaking-row,
.topic-row {
  background: #f5f5f5;
}

.topic-row span {
  background: var(--ink);
}

.bench-kmu {
  background: #f5f5f5;
  box-shadow: none;
  border-left: 3px solid var(--red);
}

.site-footer {
  border-top: 0;
}

/* Schlagzeilen: fett, eng, mit SRF-typischer Hover-Unterstreichung */
.lead-story h1 {
  max-width: 26ch;
  letter-spacing: -0.015em;
}

.news-card h3 {
  font-size: 1.18rem;
  line-height: 1.3;
}

.news-card:hover h3,
.stack-card a:hover h2,
.ranked-list__link:hover strong {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* === SRF-Kacheln: ganze Kachel klickbar, Hover-Effekt === */
.news-card,
.stack-card {
  position: relative;
  background: #f5f5f5;
  box-shadow: none;
  transition: background-color 0.15s ease;
  cursor: pointer;
}

.news-card:hover,
.stack-card:hover {
  background: #e9e9e9;
}

.news-card,
.stack-card,
.ranked-list__thumb,
.lead-story .media-link {
  overflow: hidden;
}

.news-card img,
.stack-card img,
.ranked-list__thumb img,
.lead-story .media-link img {
  transition: transform 0.3s ease;
}

.news-card:hover img,
.stack-card:hover img,
.ranked-list__link:hover .ranked-list__thumb img,
.lead-story .media-link:hover img {
  transform: scale(1.045);
}

/* "Artikel lesen" deckt als unsichtbare Zone die ganze Kachel ab */
.card-body > a:not(.source-link)::after {
  content: "";
  position: absolute;
  inset: 0;
}

.source-link {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .news-card,
  .stack-card,
  .news-card img,
  .stack-card img,
  .ranked-list__thumb img,
  .lead-story .media-link img {
    transition: none;
  }

  .news-card:hover img,
  .stack-card:hover img,
  .ranked-list__link:hover .ranked-list__thumb img,
  .lead-story .media-link:hover img {
    transform: none;
  }
}

/* === SRF-klar: entschlackte Startseite === */
.news-strip--slim {
  padding: 14px 0;
}

.front-layout {
  grid-template-columns: minmax(0, 2.15fr) minmax(0, 1fr);
}

/* Wichtig: diese Regel steht nach dem 1020px-Breakpoint und würde ihn
   sonst überschreiben — auf Mobile wieder einspaltig stapeln */
@media (max-width: 1020px) {
  .front-layout {
    grid-template-columns: 1fr;
  }

  .lead-story h1 {
    max-width: 100%;
  }
}

.lead-story h1 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.side-panel {
  padding: 0;
  border-top: 0;
}

.panel-head {
  padding: 12px 0 4px;
}

.panel-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 850;
}

.today-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.today-list li {
  border-bottom: 1px solid var(--line);
}

.today-list li:last-child {
  border-bottom: 0;
}

.today-list a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 2px;
}

.today-list__nr {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--red);
}

.today-list .tag {
  display: block;
  margin-bottom: 2px;
}

.today-list strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.32;
}

.today-list a:hover strong {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.section-block {
  padding: 36px 0 8px;
}

.section-block .section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-top: 3px solid var(--ink);
  padding-top: 12px;
  margin-bottom: 14px;
}

.section-block .section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 850;
}

.section-block .section-head a {
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
}

.section-block .filter-row {
  margin-bottom: 16px;
}

.article-grid--text {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-card--text {
  min-height: 0;
  display: block;
  grid-template-rows: none;
}

.news-card--text > a {
  display: block;
  height: 100%;
  padding: 18px 20px 20px;
}

.news-card--text .tag {
  display: inline-block;
  margin-bottom: 6px;
}

.news-card--text h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  line-height: 1.32;
}

.news-card--text p {
  margin: 0 0 12px;
  color: #3c3c3c;
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card--text .article-date {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 1020px) {
  .article-grid--text {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .article-grid--text {
    grid-template-columns: 1fr;
  }
}

/* === Teaser-Kacheln mit Bild (SRF-Stil) === */
.news-card--teaser {
  min-height: 0;
  display: block;
  grid-template-rows: none;
}

.news-card--teaser > a {
  display: block;
  height: 100%;
}

.news-card--teaser img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-card--teaser .card-text {
  padding: 14px 18px 18px;
}

.news-card--teaser .tag {
  display: inline-block;
  margin-bottom: 6px;
}

.news-card--teaser h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  line-height: 1.32;
}

.news-card--teaser p {
  margin: 0 0 12px;
  color: #3c3c3c;
  font-size: 0.92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card--teaser .article-date {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

/* === Textabstände: nichts läuft mehr bis zum Rand === */
.page-shell {
  width: min(1200px, calc(100% - 40px));
}

.news-card--teaser .card-text {
  padding: 20px 24px 24px;
}

.today-list a {
  padding: 14px 6px;
}

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 32px);
  }

  .lead-story__content {
    padding: 20px 18px 24px;
  }

  .news-card--teaser .card-text {
    padding: 16px 18px 20px;
  }
}

/* === Kachel-Text: grosszügiger Abstand, Datum unten bündig === */
.news-card--teaser > a {
  display: flex;
  flex-direction: column;
}

.news-card--teaser .card-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card--teaser .card-text .article-date {
  margin-top: auto;
  padding-top: 10px;
}

/* === LED-Pegel: Wichtigkeit als Aussteuerungsanzeige === */
.vu-meter {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  margin: 4px 0 2px;
}

.vu-meter__bar {
  display: flex;
  gap: 3px;
  flex: 1;
}

.vu-meter__bar i {
  flex: 1;
  height: 18px;
  border-radius: 2px;
  background: var(--line);
}

.vu-meter__bar i.on {
  animation: vu-light 0.25s both;
}

.vu-meter__bar i:nth-child(-n + 11).on {
  background: var(--green);
}

.vu-meter__bar i:nth-child(n + 12):nth-child(-n + 16).on {
  background: var(--amber);
}

.vu-meter__bar i:nth-child(n + 17).on {
  background: var(--red);
}

@keyframes vu-light {
  from {
    opacity: 0;
    transform: scaleY(0.4);
  }
}

.vu-meter__read {
  text-align: right;
  line-height: 1.05;
}

.vu-meter__read strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.vu-meter__read small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .vu-meter__bar i.on {
    animation: none;
  }
}

/* === Mini-Monitor: helles, integriertes Instrumenten-Panel auf Kacheln === */
.mini-monitor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 0 0;
  background: transparent;
  border-top: 1px solid var(--line);
  font-family: Consolas, "Cascadia Mono", monospace;
}

.mini-monitor__label {
  color: #5c5c5c;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mini-monitor__meter {
  position: relative;
  flex: 1;
  height: 7px;
  background: #e6e6e2;
  border-radius: 3px;
  overflow: hidden;
}

.mini-monitor__meter i {
  position: absolute;
  inset: 0;
  width: calc(var(--score) * 1%);
  border-radius: 3px;
  background: linear-gradient(90deg, #2563eb 0 55%, #ffb02e 55% 78%, #ff4d5e 78%);
  background-size: calc(100% / (var(--score) / 100)) 100%;
  animation: mini-grow 0.9s cubic-bezier(0.2, 0.8, 0.3, 1);
}

@keyframes mini-grow {
  from {
    width: 0;
  }
}

.mini-monitor__meter b {
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 1px;
  background: #b9b9b3;
}

.mini-monitor__meter b.t74 {
  left: 74%;
}

.mini-monitor__meter b.t86 {
  left: 86%;
}

.mini-monitor__val {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-width: 22px;
  text-align: right;
}

.mini-monitor__led {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.mini-monitor__led--high {
  background: #ff4d5e;
  box-shadow: 0 0 7px #ff4d5e;
  animation: mini-blink 2.2s infinite;
}

.mini-monitor__led--medium {
  background: #ffb02e;
  box-shadow: 0 0 6px #ffb02e;
}

.mini-monitor__led--base {
  background: #2563eb;
  box-shadow: 0 0 6px #2563eb;
}

@keyframes mini-blink {
  50% {
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mini-monitor__meter i,
  .mini-monitor__led--high {
    animation: none;
  }
}

/* === Redaktions-Monitor (Seitenleiste Startseite) === */
.site-monitor {
  margin-bottom: 18px;
  padding: 14px 16px 16px;
  background: #0f2547;
  border-radius: 6px;
  font-family: Consolas, "Cascadia Mono", monospace;
}

.site-monitor__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  color: #8fa6cf;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-monitor__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e6eeff;
}

.site-monitor__live i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #35c96e;
  box-shadow: 0 0 7px #35c96e;
  animation: mini-blink 2.2s infinite;
}

.site-monitor__row {
  display: grid;
  grid-template-columns: 96px 1fr 30px;
  gap: 10px;
  align-items: center;
}

.site-monitor__row + .site-monitor__row {
  margin-top: 12px;
}

.site-monitor__metric {
  color: #8fa6cf;
  font-size: 0.66rem;
  letter-spacing: 0.02em;
}

.site-monitor__meter {
  position: relative;
  height: 7px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  overflow: hidden;
}

.site-monitor__meter i {
  position: absolute;
  inset: 0;
  width: calc(var(--score) * 1%);
  border-radius: 3px;
  background: linear-gradient(90deg, #5c8dff 0 55%, #ffb02e 55% 78%, #ff5a54 78%);
  background-size: calc(100% / (var(--score) / 100)) 100%;
  animation: mini-grow 0.9s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.site-monitor__meter b {
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.site-monitor__num {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.site-monitor__dots {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.site-monitor__dots i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ffb02e;
  box-shadow: 0 0 5px rgba(255, 176, 46, 0.7);
  animation: vu-light 0.3s both;
}

@media (prefers-reduced-motion: reduce) {
  .site-monitor__live i,
  .site-monitor__meter i,
  .site-monitor__dots i {
    animation: none;
  }
}

/* === Aktivitäts-Graph im Redaktions-Monitor === */
.site-monitor__graphwrap {
  margin-top: 14px;
}

.site-monitor__graphwrap .site-monitor__metric {
  display: block;
  margin-bottom: 6px;
}

.site-monitor__graph {
  display: block;
  width: 100%;
  height: 58px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
}

/* === Datum im Zeitungskopf === */
.header-date {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .header-date {
    display: none;
  }
}

/* === KI-Radar: Benchmark-Überblick als Band über die volle Seitenbreite === */
.site-radar {
  margin-top: 26px;
  padding: 18px 0 20px;
  background: #0f2547;
  font-family: Consolas, "Cascadia Mono", monospace;
}

.site-radar__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px minmax(0, 1.15fr);
  gap: 34px;
  align-items: center;
}

.site-radar__intro h2 {
  margin: 8px 0 6px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
}

.site-radar__intro p {
  margin: 0 0 10px;
  max-width: 46ch;
  color: #b6c5e6;
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.55;
}

.site-radar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: #8fa6cf;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-radar__date {
  color: #e6eeff;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.site-radar__chart {
  display: block;
  width: 100%;
  max-width: 230px;
  height: auto;
  margin: 0 auto;
}

.site-radar__grid-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.site-radar__axes line {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.site-radar__area {
  fill: rgba(92, 141, 255, 0.28);
  stroke: #5c8dff;
  stroke-width: 2;
  stroke-linejoin: round;
}

.site-radar__points circle {
  fill: #5c8dff;
  stroke: #0f2547;
  stroke-width: 2;
}

.site-radar__labels text {
  fill: #8fa6cf;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.site-radar__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-radar__list li {
  display: grid;
  grid-template-columns: 92px 1fr 28px;
  gap: 10px;
  align-items: baseline;
  padding: 4px 0;
}

.site-radar__list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-radar__list span {
  color: #8fa6cf;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.site-radar__list strong {
  color: #e6eeff;
  font-size: 0.76rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-radar__list b {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.site-radar__link {
  display: inline-block;
  margin-top: 10px;
  color: #5c8dff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-radar__link:hover {
  color: #e6eeff;
}

.site-radar__intro .site-radar__link {
  margin-top: 0;
}

@media (max-width: 760px) {
  .site-radar__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-radar__chart {
    max-width: 260px;
  }

  .site-radar__list {
    max-width: 420px;
  }
}

/* === Dezenter KI-Hinweis unter jedem Bild === */
.img-credit {
  display: block;
  padding: 3px 10px;
  background: #f1f1f1;
  border-top: 1px solid var(--line);
  color: #6b6b6b;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: right;
}

.article-hero__media .img-credit {
  margin: 0;
}

/* === Schweizer KI-Regulierungsmonitor === */
.monitor-reviewed {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin: 8px 0 0;
  padding: 9px 12px;
  border-left: 3px solid #1d7a52;
  background: #eff8f3;
  color: #28443a;
  font-size: 0.86rem;
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.regulation-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: var(--paper);
  font-size: 0.88rem;
}

/* Orientierung und nachvollziehbare Quellen */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.archive-search { display:flex; gap:8px; align-items:center; max-width:100%; }
.archive-search input { min-width:0; width:220px; border:1px solid #bbb; padding:10px 12px; font:inherit; background:#fff; color:#202020; }
.archive-search button { border:0; padding:11px 14px; color:#fff; background:#af001e; font:inherit; cursor:pointer; }
.topic-guide { margin-top:32px; margin-bottom:32px; border-top:3px solid #af001e; padding-top:24px; padding-bottom:24px; }
.topic-guide p,.topic-guide ul { max-width:78ch; line-height:1.7; }
.topic-guide a { color:#af001e; font-weight:700; }
.editorial-note,.comparison-disclosure { padding:14px 18px; background:#f5f5f3; border-left:3px solid #af001e; font-size:.95rem; line-height:1.65; }
.header-actions { flex-wrap:wrap; }
.table-scroll { min-width:0; }
.news-card[hidden] { display:none !important; }
input:focus-visible,button:focus-visible,a:focus-visible,summary:focus-visible { outline:3px solid #186b92; outline-offset:3px; }
@media(max-width:760px) { .archive-search { width:100%; } .archive-search input { flex:1; width:100%; } .header-actions { width:100%; } .topic-guide { margin-top:20px; margin-bottom:20px; } }

.regulation-table caption {
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.regulation-table th,
.regulation-table td {
  padding: 13px 14px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.regulation-table th {
  background: var(--paper-2);
  color: var(--ink-2);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.regulation-table a {
  color: var(--red);
  font-weight: 750;
}

.monitor-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.monitor-status--done {
  background: #e5f5ec;
  color: #176642;
}

.monitor-status--work {
  background: #fff2d8;
  color: #7a4c00;
}

@media (max-width: 760px) {
  .monitor-reviewed {
    display: block;
    line-height: 1.55;
  }

  .regulation-table {
    min-width: 690px;
  }
}
