*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111;
  -webkit-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
}

:root {
  --red: #cc0000;
  --dark: #1a1a1a;
  --mid: #555;
  --gray: #888;
  --pink: #e91e90;
  --cyan: #00b8d4;
  --green: #2e7d32;
  --purple: #7b1fa2;
  --blue: #1565c0;
  --orange: #e65100;
  --teal: #00897b;
  --folio-h: 24px;
  --topbar-h: 28px;
  --nav-h: 28px;
  --pp: clamp(10px, 2vw, 20px);
}

#magazine {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  user-select: none;
}

#strip {
  display: flex;
  height: 100%;
  touch-action: pan-y;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.page {
  flex-shrink: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: #fff;
}

@media (min-width: 1200px) {
  .page { width: 50vw; }
  .page.full-w { width: 100vw; }
  #spine { display: block !important; }
}

#spine {
  display: none;
  position: fixed;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #aaa 0%, #666 50%, #aaa 100%);
  box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2), -1px 0 6px rgba(0, 0, 0, 0.2);
  z-index: 60;
  pointer-events: none;
}

.nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s, transform 0.25s;
  font-size: 16px;
  color: #fff;
}

.nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: rgba(0, 0, 0, 0.7);
}

#btn-prev { left: 8px; }
#btn-next { right: 8px; }
.nav-btn.hidden { opacity: 0; pointer-events: none; }

#indicators {
  position: fixed;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: center;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 4px 8px;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  cursor: pointer;
}

.dot.active {
  width: 20px;
  border-radius: 3px;
  background: #fff;
}

#topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#topnav::-webkit-scrollbar { display: none; }

.topnav-item {
  flex-shrink: 0;
  padding: 0 clamp(6px, 1.2vw, 12px);
  height: var(--nav-h);
  line-height: var(--nav-h);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(8px, 1.2vw, 11px);
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.topnav-item:hover { color: #fff; }
.topnav-item.active { color: #fff; background: rgba(0, 0, 0, 0.35); }

.gs-folio {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--folio-h);
  border-top: 1px solid #d4d4d4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pp);
  z-index: 5;
}

.gs-folio.dark {
  background: var(--dark);
  border-top-color: #333;
}

.gs-folio-left,
.gs-folio-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gs-folio-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 11px;
  color: var(--dark);
}

.gs-folio.dark .gs-folio-num { color: #ccc; }
.gs-folio-rule { width: 1px; height: 10px; background: #d0d0d0; }
.gs-folio-cap { font-size: 7px; font-style: italic; color: var(--gray); max-width: 120px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.gs-folio-logo { width: clamp(40px, 6vw, 60px); height: clamp(10px, 1.4vw, 14px); display: inline-block; background: url("magazine-assets/legacy-cover/Cover_VIDON.png") center/contain no-repeat; }
.gs-folio-issue { font-size: 7px; color: var(--gray); }

.cover-page { background: #000; overflow: hidden; }
.cover-bg { position: absolute; inset: 0; background: #111 center/cover no-repeat; }
.import-module-label {
  position: absolute;
  top: calc(var(--nav-h) + 8px);
  right: 10px;
  z-index: 30;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(8px, 1vw, 11px);
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.import-module-label.dark {
  position: static;
  display: inline-flex;
  margin-bottom: 8px;
  background: #111;
}
.cover-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cover-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 25%, transparent 45%, rgba(0, 0, 0, 0.75) 100%);
}

.cover-red-bar {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: 44px;
  z-index: 9;
  background: url("magazine-assets/legacy-cover/Cover_VIDON_ROT.png") center/cover no-repeat;
}

.cover-top-bar {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: 44px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.cover-logo-group { display: flex; align-items: center; gap: 8px; z-index: 11; }
.cover-logo-icon { width: 30px; height: 30px; object-fit: contain; }
.cover-logo-text { height: 18px; object-fit: contain; }
.cover-date {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.1em;
  z-index: 11;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.cover-teasers {
  position: absolute;
  top: clamp(78px, 14vh, 110px);
  left: 14px;
  right: 14px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.cover-teaser {
  flex: 1;
  padding: 6px 8px;
  border: 2px solid var(--pink);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.cover-teaser-badge {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 8px;
  color: var(--pink);
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.cover-teaser-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(9px, 1.4vw, 12px);
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}

.cover-headline-area {
  position: absolute;
  bottom: clamp(90px, 16vh, 130px);
  left: 14px;
  right: 14px;
  z-index: 10;
}

.cover-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  background: var(--blue);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 9px;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.cover-main-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 5vw, 44px);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.cover-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 6px 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.cover-rubrik-row {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  flex-wrap: nowrap;
  overflow-x: auto;
  flex: 1;
  padding-right: 6px;
}

.cover-rubrik-thumb {
  height: clamp(36px, 7vh, 58px);
  width: auto;
  border-radius: 3px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s;
}

.cover-rubrik-thumb:hover { transform: scale(1.06); }
.cover-netzreporter { height: clamp(44px, 9vh, 70px); width: auto; flex-shrink: 0; }

.toc-page { background: #fff; overflow: hidden; }
.toc-inner {
  position: absolute;
  top: var(--nav-h);
  bottom: var(--folio-h);
  left: 0;
  right: 0;
  padding: clamp(10px, 2vh, 20px) var(--pp);
  display: flex;
  flex-direction: column;
}

.toc-header {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 4vw, 34px);
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 3px solid var(--red);
  padding-bottom: 6px;
  margin-bottom: clamp(8px, 1.5vh, 16px);
  flex-shrink: 0;
}

.toc-list { list-style: none; flex-shrink: 0; }

.toc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: clamp(4px, 0.7vh, 7px) 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

.toc-item:hover { background: #f8f8f8; }
.toc-num { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: clamp(16px, 2.5vw, 20px); color: var(--red); min-width: 28px; }
.toc-chip { display: inline-block; padding: 1px 6px; border-radius: 2px; font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 8px; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; }
.toc-title { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: clamp(11px, 1.6vw, 14px); color: var(--dark); flex: 1; }

.toc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: auto;
  flex-shrink: 0;
}

.toc-grid-item { border-radius: 4px; overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 16/10; }
.toc-grid-item img { width: 100%; height: 100%; object-fit: cover; }
.toc-grid-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3px 5px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 8px;
  color: #fff;
  text-transform: uppercase;
}

.editorial-page { background: #fff; overflow: hidden; }
.editorial-inner {
  position: absolute;
  top: var(--nav-h);
  bottom: var(--folio-h);
  left: 0;
  right: 0;
  padding: clamp(12px, 2vh, 24px) var(--pp);
  display: flex;
  flex-direction: column;
}

.editorial-layout { display: flex; gap: clamp(12px, 2vw, 24px); align-items: flex-start; flex: 1; min-height: 0; overflow: hidden; }
.editorial-portrait { width: clamp(80px, 16vw, 150px); flex-shrink: 0; border-radius: 6px; object-fit: cover; aspect-ratio: 3/4; }
.editorial-text-col { flex: 1; display: flex; flex-direction: column; min-height: 0; overflow: hidden; }
.editorial-kicker { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 9px; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 3px; flex-shrink: 0; }
.editorial-title { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: clamp(20px, 3.5vw, 32px); color: var(--dark); text-transform: uppercase; line-height: 1.05; margin-bottom: clamp(6px, 1vh, 12px); flex-shrink: 0; }
.editorial-body { font-size: clamp(9px, 1.2vw, 11.5px); line-height: 1.6; color: #333; column-count: 2; column-gap: clamp(12px, 2vw, 20px); text-align: justify; hyphens: auto; flex: 1; min-height: 0; overflow: hidden; }
.editorial-body p { margin-bottom: clamp(4px, 0.6vh, 8px); }
.editorial-sig { margin-top: clamp(6px, 1vh, 12px); font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 11px; color: var(--dark); font-style: italic; flex-shrink: 0; }

.article-page { overflow: hidden; position: relative; }
.article-page.dark-page { background: var(--dark); color: #e0e0e0; }
.article-page.light-page { background: #fff; color: var(--dark); }

.art-inner { position: absolute; top: var(--nav-h); bottom: var(--folio-h); left: 0; right: 0; display: flex; flex-direction: column; overflow: hidden; }

.art-topbar {
  flex-shrink: 0;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pp);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e0e0e0;
}

.dark-page .art-topbar { background: rgba(26, 26, 26, 0.92); border-bottom-color: #333; }
.art-topbar-left { display: flex; align-items: center; gap: 6px; min-width: 0; }
.art-chip { display: inline-block; padding: 1px 6px; border-radius: 2px; font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 8px; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; flex-shrink: 0; }
.art-topbar-title { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 10px; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.dark-page .art-topbar-title { color: #ccc; }
.art-topbar-right { display: flex; align-items: center; gap: 5px; }
.art-topbar-logo { width: 40px; height: 10px; background: url("magazine-assets/legacy-cover/Cover_VIDON.png") center/contain no-repeat; }
.art-topbar-pg { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 10px; color: var(--gray); }

.art-section-header { width: 100%; height: clamp(28px, 5vw, 44px); object-fit: contain; display: block; margin: 0 auto; flex-shrink: 0; }

.layout-a .art-content { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-height: 0; }
.layout-a .art-headline-area { padding: clamp(6px, 1vh, 12px) var(--pp) clamp(4px, 0.6vh, 8px); flex-shrink: 0; }
.art-kicker { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2px; }
.art-main-headline { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: clamp(18px, 3.5vw, 30px); line-height: 1.05; text-transform: uppercase; }
.dark-page .art-main-headline { color: #fff; }
.art-hero-wrap { position: relative; margin: 0 var(--pp) clamp(4px, 0.6vh, 8px); border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.art-hero { width: 100%; height: clamp(100px, 18vh, 200px); object-fit: cover; display: block; }
.art-hero-media { background: #000; border: 0; display: block; }
.art-trailer-player { position: relative; overflow: hidden; cursor: pointer; isolation: isolate; }
.art-trailer-player:focus-visible { outline: 2px solid #fff; outline-offset: -4px; }
.art-trailer-frame,
.art-trailer-video { position: absolute; inset: 0; width: 100%; height: 100%; background: #000; border: 0; display: block; pointer-events: none; }
.art-trailer-video { object-fit: cover; }
.art-trailer-control {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  min-width: 44px;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.art-hero-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 4px 8px; background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent); font-size: 7px; color: rgba(255, 255, 255, 0.8); font-style: italic; }
.art-body-layout { display: flex; gap: clamp(8px, 1.5vw, 16px); padding: 0 var(--pp); flex: 1; min-height: 0; overflow: hidden; }
.art-text-col { flex: 1; min-width: 0; overflow: hidden; }
.art-text-col p { font-size: clamp(9px, 1.1vw, 11.5px); line-height: 1.6; text-align: justify; hyphens: auto; margin-bottom: clamp(4px, 0.5vh, 8px); }
.dark-page .art-text-col p { color: #ccc; }
.art-format-stack { display: flex; flex-direction: column; gap: clamp(4px, 0.7vh, 8px); margin-top: clamp(6px, 1vh, 10px); }
.art-format-stack.compact { gap: 4px; margin-top: 4px; }
.art-format-box { border-left: 3px solid var(--fmt-color, var(--red)); background: rgba(0, 0, 0, 0.03); border-radius: 4px; padding: clamp(4px, 0.7vh, 8px) clamp(6px, 1vw, 10px); }
.dark-page .art-format-box { background: rgba(255, 255, 255, 0.08); }
.art-format-title { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: clamp(8px, 1vw, 10px); letter-spacing: 0.08em; text-transform: uppercase; color: var(--fmt-color, var(--red)); margin-bottom: 3px; }
.art-format-subtitle { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 8px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.art-format-text { font-size: clamp(8px, 0.95vw, 10px); line-height: 1.45; color: #444; }
.dark-page .art-format-text { color: #d0d0d0; }
.art-format-list { list-style: none; margin: 0; padding: 0; }
.art-format-list li { position: relative; padding-left: 10px; font-size: clamp(8px, 0.95vw, 10px); line-height: 1.4; color: #444; margin-bottom: 2px; }
.dark-page .art-format-list li { color: #d0d0d0; }
.art-format-list li::before { content: "•"; position: absolute; left: 0; top: 0; color: var(--fmt-color, var(--red)); font-weight: 800; }
.art-format-list-links li { padding-left: 0; }
.art-format-list-links li::before { content: none; }
.art-format-list-links a { color: inherit; text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--fmt-color, var(--red)) 70%, transparent); text-underline-offset: 1px; }
.art-format-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(6px, 1vw, 10px); }
.layout-b .art-format-stack { background: rgba(0, 0, 0, 0.45); border-radius: 4px; padding: 4px; }
.layout-b .art-format-box { background: rgba(255, 255, 255, 0.12); }
.layout-b .art-format-text,
.layout-b .art-format-list li,
.layout-b .art-format-list-links a { color: rgba(255, 255, 255, 0.92); }
.art-pullquote { margin: clamp(6px, 1vh, 12px) 0; padding: clamp(6px, 1vh, 10px) clamp(8px, 1.2vw, 14px); border-left: 3px solid var(--red); font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: clamp(12px, 1.6vw, 16px); font-style: italic; line-height: 1.25; color: var(--dark); }
.dark-page .art-pullquote { color: #fff; border-left-color: #fff; }
.art-sidebar { width: clamp(120px, 24vw, 190px); flex-shrink: 0; border-radius: 6px; overflow: hidden; background: #f5f5f5; }
.dark-page .art-sidebar { background: #252525; }
.art-sb-header { padding: 4px 8px; font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 9px; color: #fff; letter-spacing: 0.08em; text-transform: uppercase; }
.art-sb-portrait { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; display: block; margin: 6px auto 4px; border: 2px solid var(--red); }
.art-sb-name { text-align: center; font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 10px; color: var(--dark); margin-bottom: 4px; }
.dark-page .art-sb-name { color: #fff; }
.art-sb-rows { padding: 0 8px 4px; }
.art-sb-row { display: flex; justify-content: space-between; font-size: 8px; padding: 2px 0; border-bottom: 1px solid #e0e0e0; }
.dark-page .art-sb-row { border-bottom-color: #3a3a3a; }
.art-sb-row-label { font-weight: 700; color: var(--gray); }
.art-sb-row-val { color: var(--dark); font-weight: 600; margin-left: 8px; text-align: right; }
.dark-page .art-sb-row-val { color: #ccc; }
.art-rating-badge { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 6px auto; font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 16px; color: #fff; }
.art-sub-rating { padding: 0 8px 2px; }
.art-sub-bar { margin-bottom: 3px; }
.art-sub-label { font-size: 7px; font-weight: 700; color: var(--gray); margin-bottom: 1px; }
.art-sub-track { height: 3px; border-radius: 2px; background: #ddd; overflow: hidden; }
.dark-page .art-sub-track { background: #444; }
.art-sub-fill { height: 100%; border-radius: 2px; }
.art-fazit { margin: 4px 8px 6px; padding: 6px; border-radius: 3px; background: #fff; }
.dark-page .art-fazit { background: #333; }
.art-fazit-label { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.art-fazit-text { font-size: 8px; line-height: 1.4; color: #555; }
.dark-page .art-fazit-text { color: #bbb; }
.vidon-reco-box { margin: 6px 8px; border: 2px solid var(--reco-color, var(--orange)); background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
.dark-page .vidon-reco-box { background: #242424; }
.vidon-reco-head { background: var(--reco-color, var(--orange)); color: #fff; font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; padding: 4px 5px; }
.vidon-reco-main { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6px 4px 4px; }
.vidon-reco-score { font-family: "Barlow Condensed", sans-serif; font-size: 30px; line-height: 0.9; font-weight: 900; color: var(--reco-color, var(--orange)); }
.vidon-reco-scale { font-size: 7px; font-weight: 800; color: #777; text-transform: uppercase; letter-spacing: 0.08em; }
.vidon-reco-text { padding: 0 7px 7px; font-size: 8px; line-height: 1.35; color: #444; text-align: center; }
.dark-page .vidon-reco-text { color: #d0d0d0; }
.layout-b .vidon-reco-box { width: min(170px, 46vw); margin: 6px 0 4px; }

.layout-b .art-content { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-height: 0; position: relative; }
.layout-b .art-hero-full { position: absolute; inset: 0; z-index: 1; }
.layout-b .art-hero-full img,
.layout-b .art-hero-full .art-hero-full-media { width: 100%; height: 100%; object-fit: cover; }
.layout-b .art-hero-full::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 30%, rgba(0, 0, 0, 0.8) 100%); }
.layout-b .art-overlay-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: var(--pp); color: #fff; }
.layout-b .art-overlay-kicker { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; opacity: 0.82; }
.layout-b .art-overlay-headline { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: clamp(22px, 4.5vw, 38px); line-height: 1; text-transform: uppercase; margin-bottom: clamp(6px, 1vh, 12px); text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); }
.layout-b .art-overlay-text { font-size: clamp(9px, 1.1vw, 11px); line-height: 1.55; column-count: 2; column-gap: clamp(10px, 1.5vw, 18px); max-height: clamp(80px, 14vh, 160px); overflow: hidden; }
.layout-b .art-overlay-text p { margin-bottom: 6px; }
.layout-b .art-overlay-reporter { display: flex; align-items: center; gap: 8px; margin-top: clamp(6px, 1vh, 10px); }
.layout-b .art-overlay-reporter img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; }
.layout-b .art-overlay-reporter span { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 10px; }

.layout-c .art-content { flex: 1; display: flex; overflow: hidden; min-height: 0; }
.layout-c .art-left-img { width: clamp(160px, 35vw, 320px); flex-shrink: 0; overflow: hidden; }
.layout-c .art-left-img img,
.layout-c .art-left-img .art-left-media { width: 100%; height: 100%; object-fit: cover; }
.layout-c .art-right-text { flex: 1; padding: clamp(8px, 1.5vh, 16px) var(--pp); display: flex; flex-direction: column; overflow: hidden; }
.layout-c .art-right-text .art-kicker { margin-bottom: 4px; }
.layout-c .art-right-text .art-main-headline { margin-bottom: clamp(6px, 1vh, 12px); }
.layout-c .art-right-text .art-body-text { flex: 1; overflow: hidden; font-size: clamp(9px, 1.1vw, 11px); line-height: 1.6; text-align: justify; hyphens: auto; }
.layout-c .art-right-text .art-body-text p { margin-bottom: clamp(4px, 0.5vh, 8px); }
.dark-page .layout-c .art-right-text .art-body-text p { color: #ccc; }
.layout-c .art-right-reporter { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 6px; border-top: 1px solid #e0e0e0; flex-shrink: 0; }
.dark-page .layout-c .art-right-reporter { border-top-color: #444; }
.layout-c .art-right-reporter img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); }
.layout-c .art-right-reporter-info { font-size: 9px; }
.layout-c .art-right-reporter-info strong { font-family: "Barlow Condensed", sans-serif; font-weight: 800; display: block; font-size: 11px; }

.layout-d .art-content { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-height: 0; }
.layout-d .art-lead { padding: clamp(6px, 1vh, 12px) var(--pp); flex-shrink: 0; }
.layout-d .art-lead .art-kicker { margin-bottom: 2px; }
.layout-d .art-lead .art-main-headline { font-size: clamp(16px, 3vw, 26px); margin-bottom: clamp(4px, 0.5vh, 8px); }
.layout-d .art-lead .art-lead-text { font-size: clamp(9px, 1.1vw, 11px); line-height: 1.5; max-height: clamp(70px, 12vh, 140px); overflow: hidden; }
.layout-d .art-lead .art-lead-text p { margin-bottom: 4px; }
.dark-page .layout-d .art-lead .art-lead-text p { color: #ccc; }
.layout-d .art-stories-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(6px, 1vw, 12px); padding: 0 var(--pp); flex: 1; min-height: 0; overflow: hidden; }
.layout-d .art-story-card { border-radius: 4px; overflow: hidden; background: #f5f5f5; display: flex; flex-direction: column; }
.dark-page .layout-d .art-story-card { background: #252525; }
.layout-d .art-story-card img,
.layout-d .art-story-card .art-story-card-media { width: 100%; height: clamp(50px, 9vh, 100px); object-fit: cover; flex-shrink: 0; }
.layout-d .art-story-card-body { padding: clamp(4px, 0.5vh, 8px) 8px; flex: 1; overflow: hidden; }
.layout-d .art-story-card-title { font-family: "Barlow Condensed", sans-serif; font-weight: 800; font-size: clamp(10px, 1.4vw, 13px); line-height: 1.15; text-transform: uppercase; margin-bottom: 3px; }
.dark-page .layout-d .art-story-card-title { color: #fff; }
.layout-d .art-story-card-text { font-size: clamp(7px, 0.9vw, 9px); line-height: 1.4; color: #666; overflow: hidden; }
.dark-page .layout-d .art-story-card-text { color: #aaa; }
.layout-d .art-story-card-chip { display: inline-block; padding: 1px 5px; border-radius: 2px; font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 7px; color: #fff; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 3px; }

.layout-e .art-content { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-height: 0; }
.layout-e .art-hero-strip { flex-shrink: 0; height: clamp(80px, 14vh, 160px); overflow: hidden; position: relative; }
.layout-e .art-hero-strip img,
.layout-e .art-hero-strip .art-strip-media { width: 100%; height: 100%; object-fit: cover; }
.layout-e .art-hero-strip::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, transparent 60%); }
.layout-e .art-strip-title { position: absolute; bottom: clamp(6px, 1vh, 12px); left: var(--pp); z-index: 2; font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: clamp(16px, 3vw, 28px); color: #fff; text-transform: uppercase; line-height: 1.05; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); max-width: 60%; }
.layout-e .art-analysis-body { flex: 1; display: flex; gap: clamp(10px, 1.5vw, 18px); padding: clamp(8px, 1.5vh, 16px) var(--pp); overflow: hidden; min-height: 0; }
.layout-e .art-analysis-main { flex: 1; overflow: hidden; }
.layout-e .art-big-quote { font-family: "Barlow Condensed", sans-serif; font-weight: 900; font-size: clamp(14px, 2.2vw, 22px); line-height: 1.15; padding: clamp(6px, 1vh, 12px); margin-bottom: clamp(6px, 1vh, 10px); border-left: 4px solid var(--teal); font-style: italic; }
.dark-page .layout-e .art-big-quote { color: #fff; }
.layout-e .art-text-body { font-size: clamp(9px, 1.1vw, 11px); line-height: 1.55; column-count: 2; column-gap: clamp(10px, 1.5vw, 16px); overflow: hidden; text-align: justify; hyphens: auto; }
.layout-e .art-text-body p { margin-bottom: clamp(4px, 0.5vh, 6px); }
.dark-page .layout-e .art-text-body p { color: #ccc; }
.layout-e .art-analysis-sidebar { width: clamp(100px, 20vw, 170px); flex-shrink: 0; display: flex; flex-direction: column; gap: clamp(4px, 0.6vh, 8px); }
.layout-e .art-mini-card { border-radius: 4px; overflow: hidden; background: #f0f0f0; display: flex; gap: 6px; padding: 6px; }
.dark-page .layout-e .art-mini-card { background: #2a2a2a; }
.layout-e .art-mini-card-title { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: clamp(8px, 1vw, 10px); line-height: 1.2; }
.dark-page .layout-e .art-mini-card-title { color: #ddd; }
.layout-e .art-mini-card-text { font-size: 7px; color: #888; line-height: 1.3; margin-top: 2px; }

.import-layout {
  position: absolute;
  inset: var(--nav-h) 0 var(--folio-h) 0;
  overflow: hidden;
  background: #fff;
  color: #111;
}
.import-layout h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: .9;
  text-transform: uppercase;
}
.import-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: clamp(8px, 1vw, 11px);
  color: var(--import-color);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.import-body p {
  font-size: clamp(8.5px, 1vw, 11px);
  line-height: 1.48;
  margin-bottom: 6px;
  text-align: justify;
}
.import-plan {
  border: 2px solid var(--import-color);
  border-radius: 4px;
  padding: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(10px, 1.2vw, 13px);
  text-transform: uppercase;
  color: var(--import-color);
  background: rgba(255,255,255,.82);
}
.import-bravo {
  background: #ffe600;
  padding: clamp(10px, 1.6vw, 18px);
}
.import-tv-movie { background: #fff; }
.import-bravo-mast {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  height: clamp(34px, 6vh, 58px);
  color: #fff;
  background: var(--import-color);
  padding: 4px 12px;
  transform: skew(-4deg);
  box-shadow: 0 4px 0 #111;
}
.import-bravo-mast span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(30px, 5vw, 58px);
  line-height: .9;
  font-weight: 900;
}
.import-bravo-mast small {
  font-size: clamp(8px, 1vw, 11px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.import-bravo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(110px, .75fr);
  gap: clamp(10px, 1.5vw, 18px);
  height: calc(100% - clamp(42px, 7vh, 68px));
  padding-top: clamp(10px, 1.4vh, 16px);
}
.import-bravo-main {
  min-height: 0;
  overflow: hidden;
  background: #fff;
  padding: clamp(10px, 1.4vw, 16px);
  border: 3px solid #111;
  box-shadow: 6px 6px 0 var(--import-accent);
}
.import-bravo-main h1 {
  font-size: clamp(30px, 5.5vw, 68px);
  color: var(--import-color);
  margin: 4px 0 8px;
}
.import-main-media {
  width: 100%;
  height: clamp(90px, 24vh, 210px);
  object-fit: cover;
  border: 2px solid #111;
  margin-bottom: 8px;
}
.import-bravo-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  overflow: hidden;
}
.import-card {
  background: #fff;
  border: 2px solid #111;
  padding: 7px;
  min-height: 0;
  box-shadow: 4px 4px 0 var(--import-color);
}
.import-card-media {
  width: 100%;
  height: clamp(48px, 10vh, 92px);
  object-fit: cover;
  margin-bottom: 5px;
}
.import-card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(12px, 1.6vw, 18px);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}
.import-card-text {
  font-size: clamp(7px, .85vw, 9px);
  line-height: 1.3;
  color: #555;
  margin-top: 4px;
}
.import-spiegel {
  padding: clamp(12px, 2vw, 22px);
  background: #f3efe5;
}
.import-spiegel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(8px, 1.2vh, 14px);
}
.import-spiegel-mark {
  background: #d7141a;
  color: #fff;
  padding: 5px 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
}
.import-spiegel-meta {
  font-size: clamp(8px, 1vw, 11px);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #555;
}
.import-spiegel-hero {
  position: relative;
  height: clamp(120px, 30vh, 270px);
  overflow: hidden;
  margin-bottom: clamp(10px, 1.5vh, 18px);
}
.import-spiegel-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.15);
}
.import-spiegel-title {
  position: absolute;
  left: clamp(12px, 2vw, 24px);
  bottom: clamp(10px, 1.4vh, 18px);
  max-width: 78%;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.import-spiegel-title div {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(9px, 1.1vw, 12px);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.import-spiegel-title h1 {
  font-size: clamp(30px, 5vw, 62px);
}
.import-spiegel-columns {
  display: grid;
  grid-template-columns: .8fr 1.5fr .8fr;
  gap: clamp(12px, 1.8vw, 22px);
  height: calc(100% - clamp(190px, 40vh, 350px));
  overflow: hidden;
}
.import-spiegel-lead {
  font-family: Georgia, serif;
  font-size: clamp(14px, 1.9vw, 24px);
  line-height: 1.12;
  font-weight: 700;
}
.import-spiegel-body {
  column-count: 2;
  column-gap: clamp(12px, 1.6vw, 20px);
  overflow: hidden;
}
.import-spiegel-body p {
  font-family: Georgia, serif;
  font-size: clamp(8.5px, 1vw, 11px);
  line-height: 1.48;
  margin-bottom: 6px;
  text-align: justify;
}
.import-gamestar {
  background: #f7f7f2;
}
.import-gamestar-blue {
  height: clamp(42px, 8vh, 72px);
  background: #1a4b95;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 2vw, 22px);
  border-bottom: 4px solid #111;
}
.import-gamestar-logo {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.03em;
  text-shadow: 2px 2px 0 #111;
}
.import-gamestar-id {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.import-gamestar-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(10px, 1.6vw, 20px);
  padding: clamp(10px, 1.5vw, 18px);
  height: clamp(150px, 35vh, 320px);
  background: #fff;
}
.import-gamestar-image,
.import-gamestar-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.import-gamestar-title h1 {
  font-size: clamp(28px, 5vw, 60px);
  color: #111;
  margin: 4px 0 8px;
}
.import-gamestar-title p {
  font-size: clamp(9px, 1vw, 12px);
  line-height: 1.45;
  font-weight: 700;
}
.import-gamestar-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(120px, .65fr);
  gap: clamp(10px, 1.6vw, 18px);
  padding: 0 clamp(10px, 1.5vw, 18px) clamp(10px, 1.5vw, 18px);
  height: calc(100% - clamp(200px, 45vh, 392px));
  overflow: hidden;
}
.import-gamestar-body main {
  column-count: 2;
  column-gap: clamp(12px, 1.6vw, 20px);
  overflow: hidden;
}
.import-gamestar-body main p {
  font-size: clamp(8.5px, 1vw, 11px);
  line-height: 1.5;
  margin-bottom: 6px;
  text-align: justify;
}
.import-gamestar-body aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  overflow: hidden;
}

.impressum-page { background: #111; color: #fff; overflow: hidden; }
.impressum-inner {
  position: absolute;
  top: var(--nav-h);
  bottom: var(--folio-h);
  left: 0;
  right: 0;
  padding: clamp(12px, 2vh, 24px) var(--pp);
  display: flex;
  flex-direction: column;
}

.impressum-header {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 4vw, 34px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 3px solid var(--red);
  padding-bottom: 6px;
  margin-bottom: clamp(10px, 2vh, 20px);
  flex-shrink: 0;
}

.impressum-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: clamp(10px, 1.5vw, 16px); margin-bottom: auto; }
.impressum-card { text-align: center; }
.impressum-avatar { width: clamp(48px, 8vw, 60px); height: clamp(48px, 8vw, 60px); border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 6px; border: 2px solid var(--red); }
.impressum-name { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 11px; color: #fff; }
.impressum-role { font-size: 8px; color: var(--gray); }
.impressum-rubric { font-size: 8px; font-weight: 600; }
.impressum-legal { font-size: 8px; color: #888; line-height: 1.5; border-top: 1px solid #333; padding-top: clamp(8px, 1vh, 14px); flex-shrink: 0; }
.impressum-legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 28px); margin-bottom: clamp(6px, 1vh, 10px); }
.impressum-legal-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  color: #aaa;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.impressum-legal a { color: #d8d8d8; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
@media (max-width: 640px) {
  .impressum-legal-grid { grid-template-columns: 1fr; gap: 6px; }
}

.reader-empty {
  position: absolute;
  inset: var(--nav-h) 0 var(--folio-h) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ddd;
  font-size: 14px;
}

.reader-empty.loading {
  flex-direction: column;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reader-spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  animation: readerSpin 0.9s linear infinite;
}

@keyframes readerSpin {
  to { transform: rotate(360deg); }
}

.imported-template-page {
  background: #050914;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zip-layout-shell {
  width: min(100%, calc((100vh - var(--nav-h) - var(--folio-h) - 20px) * 0.786));
  max-width: 644px;
  max-height: calc(100vh - var(--nav-h) - var(--folio-h) - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.zip-layout-shell > * {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 auto;
}

.zip-layout-shell img,
.zip-layout-shell video {
  max-width: none;
}

.zip-layout-shell .aspect-\[644\/819\] {
  aspect-ratio: 644 / 819;
}

@media (max-width: 500px) {
  .nav-btn { display: none !important; }
  .art-sidebar { display: none; }
  .cover-teasers { flex-direction: column; gap: 4px; }
  .cover-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 6px;
  }
  .cover-rubrik-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    overflow: hidden;
    padding-right: 0;
  }
  .cover-rubrik-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16/6;
    object-fit: cover;
  }
  .cover-rubrik-thumb:nth-child(n+3) { display: none; }
  .cover-netzreporter {
    width: 100%;
    height: auto;
    justify-self: end;
  }
  .editorial-layout { flex-direction: column; }
  .editorial-portrait { width: 100%; max-width: 160px; margin: 0 auto 8px; }
  .toc-grid { grid-template-columns: repeat(2, 1fr); }
  .layout-b .art-overlay-text { column-count: 1; }
  .layout-c .art-left-img { width: 40%; min-width: 120px; }
  .layout-d .art-stories-grid { grid-template-columns: 1fr; }
  .layout-e .art-analysis-sidebar { display: none; }
  .layout-e .art-text-body { column-count: 1; }
  .art-format-proscons { grid-template-columns: 1fr; }
  .editorial-body { column-count: 1; }
  .zip-layout-shell {
    width: min(100vw, calc((100vh - var(--nav-h) - var(--folio-h) - 12px) * 0.786));
    max-height: calc(100vh - var(--nav-h) - var(--folio-h) - 12px);
  }
}
