:root {
  --neon-orange: #ff5a00;
  --neon-orange-hot: #ff7a1a;
  --neon-orange-soft: rgba(255, 90, 0, 0.34);
  --neon-orange-bright: #ff6b00;
  --ink: #080706;
  --text: #fff8f2;
  --muted: #cfc5be;
  --glass: rgba(18, 18, 20, 0.30);
  --glass-strong: rgba(12, 12, 14, 0.56);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-highlight: rgba(255, 255, 255, 0.10);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  --glow: 0 0 18px rgba(255, 90, 0, 0.45), 0 0 48px rgba(255, 90, 0, 0.18);
  --radius: 26px;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: #0a0908;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78)),
    url("../images/background-ragexg.svg") center / cover no-repeat;
  transform: translateZ(0);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 15%, rgba(255, 90, 0, 0.16), transparent 28%),
    radial-gradient(circle at 86% 35%, rgba(255, 120, 20, 0.12), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--neon-orange);
  color: #111;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.glass {
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(135deg, var(--glass-highlight), transparent 42%),
    var(--glass);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}

.glass--dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 38%),
    rgba(6, 6, 8, 0.58);
}

.glass--card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(18, 18, 20, 0.38);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  width: min(calc(100% - 24px), var(--max-width));
  min-height: 74px;
  margin: 12px auto 0;
  padding: 10px 14px 10px 20px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: clamp(148px, 16vw, 238px);
  filter: drop-shadow(0 0 12px rgba(255, 90, 0, 0.34));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link,
.icon-button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.28);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 13px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.social-link img,
.icon-button img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 90, 0, 0.15));
}

.search-trigger {
  width: 44px;
  padding: 8px;
}

.social-link:hover,
.icon-button:hover,
.social-link:focus-visible,
.icon-button:focus-visible {
  border-color: rgba(255, 90, 0, 0.8);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255,255,255,0.03)),
    rgba(255, 90, 0, 0.16);
  box-shadow: var(--glow);
  transform: translateY(-2px);
  outline: none;
}

.search-panel {
  position: fixed;
  top: 98px;
  right: max(18px, calc((100vw - var(--max-width)) / 2));
  z-index: 150;
  width: min(460px, calc(100% - 36px));
  padding: 18px;
  border-radius: 20px;
}

.search-panel label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.search-row {
  display: flex;
  gap: 10px;
}

.search-row input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  outline: none;
}

.search-row input:focus {
  border-color: var(--neon-orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.18);
}

main {
  width: min(calc(100% - 24px), var(--max-width));
  margin: 24px auto 0;
}

.hero-slider {
  position: relative;
  min-height: clamp(360px, 43vw, 560px);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
  isolation: isolate;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-items: end;
  padding: clamp(18px, 4.2vw, 52px);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity 700ms ease, visibility 700ms ease, transform 1000ms ease;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.88) 0%, rgba(5, 5, 6, 0.38) 54%, rgba(5, 5, 6, 0.62) 100%),
    var(--slide-image) center / cover no-repeat;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-content {
  max-width: 700px;
  padding: clamp(22px, 3.2vw, 38px);
  border-radius: var(--radius);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--neon-orange-hot);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 90, 0, 0.52);
}

.hero-content h1,
.hero-content h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-content p:not(.eyebrow) {
  max-width: 58ch;
  margin: 16px 0 22px;
  color: #e8ded7;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
}

.neon-button {
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 153, 82, 0.85);
  border-radius: 14px;
  background: linear-gradient(135deg, #ff7a1a, #ff4d00 58%, #c72c00);
  color: #140803;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(255, 75, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.neon-button:hover,
.neon-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(255, 90, 0, 0.78), 0 14px 34px rgba(255, 75, 0, 0.35);
  filter: saturate(1.15) brightness(1.08);
  outline: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(9, 9, 10, 0.42);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  border-color: var(--neon-orange);
  background: rgba(255, 90, 0, 0.28);
  box-shadow: var(--glow);
  outline: none;
}

.slider-arrow--left { left: 18px; }
.slider-arrow--right { right: 18px; }

.slider-dots {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 5;
  display: flex;
  gap: 9px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.slider-dot.is-active {
  width: 32px;
  border-radius: 99px;
  border-color: var(--neon-orange);
  background: var(--neon-orange);
  box-shadow: var(--glow);
}

.category-nav {
  position: relative;
  z-index: 10;
  margin: 18px 0 24px;
  padding: 9px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar { display: none; }

.category-link {
  flex: 0 0 auto;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: var(--muted);
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-link:hover,
.category-link:focus-visible,
.category-link.is-active {
  color: white;
  border-color: rgba(255, 90, 0, 0.58);
  background: rgba(255, 90, 0, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 22px rgba(255, 90, 0, 0.12);
  outline: none;
}

.page-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 104px;
  border-radius: var(--radius);
  overflow: hidden;
}

.sidebar-toggle {
  display: none;
}

.sidebar-content {
  padding: 20px 14px;
}

.sidebar-title {
  margin: 2px 8px 14px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sidebar-link {
  display: block;
  margin: 5px 0;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #e8ded7;
  font-weight: 720;
  transition: padding 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.sidebar-link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 9px 1px 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.sidebar-link:hover,
.sidebar-link:focus-visible,
.sidebar-link.is-active {
  padding-left: 17px;
  border-color: rgba(255, 90, 0, 0.38);
  background: rgba(255, 90, 0, 0.13);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  outline: none;
}

.sidebar-link:hover::before,
.sidebar-link.is-active::before {
  background: var(--neon-orange);
  box-shadow: 0 0 11px var(--neon-orange);
}

.content-column {
  min-width: 0;
}

.content-panel,
.video-panel {
  padding: clamp(18px, 3vw, 34px);
  border-radius: var(--radius);
}

.section-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.text-link,
.card-link {
  color: var(--neon-orange-hot);
  font-weight: 850;
}

.text-link:hover,
.text-link:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  color: white;
  text-shadow: 0 0 12px rgba(255, 90, 0, 0.8);
  outline: none;
}

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

.news-card {
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 0, 0.58);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.48), 0 0 30px rgba(255, 90, 0, 0.16);
}

.news-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.news-card__content {
  padding: 18px 18px 20px;
}

.news-meta {
  margin: 0 0 8px;
  color: var(--neon-orange-hot);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.news-card p:not(.news-meta) {
  margin: 12px 0 16px;
  color: var(--muted);
}

.pagination {
  margin: 14px 0;
  padding: 8px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pagination button:hover,
.pagination button:focus-visible,
.pagination button.is-active {
  border-color: rgba(255, 90, 0, 0.74);
  background: rgba(255, 90, 0, 0.19);
  box-shadow: 0 0 20px rgba(255, 90, 0, 0.16);
  outline: none;
}

.video-panel {
  margin-bottom: 46px;
}

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

.video-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.video-card:hover,
.video-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 0, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42), 0 0 30px rgba(255, 90, 0, 0.14);
  outline: none;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.92);
  transition: filter 220ms ease, transform 500ms ease;
}

.video-card:hover img {
  filter: saturate(1.16) brightness(1.05);
  transform: scale(1.035);
}

.video-card strong {
  display: block;
  padding: 14px 16px 16px;
  font-size: 1.12rem;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 188, 145, 0.78);
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.70);
  color: #1b0902;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: var(--glow);
  transform: translate(-50%, -75%);
}

.site-footer {
  width: min(calc(100% - 24px), var(--max-width));
  margin: 0 auto 18px;
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
}

.site-footer > img {
  width: min(220px, 65vw);
  margin: 0 auto 10px;
}

.site-footer p {
  margin: 0 0 18px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--neon-orange-hot);
  outline: none;
}

.site-footer small {
  color: #a99e97;
}

@media (max-width: 980px) {
  .social-link span {
    display: none;
  }

  .social-link {
    width: 44px;
    padding: 8px;
  }

  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .sidebar-toggle {
    width: 100%;
    padding: 14px 16px;
    border: 0;
    background: transparent;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 900;
    cursor: pointer;
  }

  .sidebar-content {
    display: none;
    padding-top: 0;
  }

  .sidebar.is-open .sidebar-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --radius: 20px;
  }

  .site-header {
    top: 8px;
    min-height: 64px;
    padding: 8px 10px 8px 14px;
  }

  .brand img {
    width: 138px;
  }

  .social-nav {
    gap: 5px;
  }

  .social-link,
  .icon-button {
    width: 40px;
    min-height: 40px;
    padding: 7px;
    border-radius: 12px;
  }

  .social-link:nth-of-type(3) {
    display: none;
  }

  main {
    margin-top: 16px;
  }

  .hero-slider {
    min-height: 470px;
    border-radius: 24px;
  }

  .hero-slide {
    align-items: end;
    padding: 16px;
    background:
      linear-gradient(180deg, rgba(5, 5, 6, 0.22) 0%, rgba(5, 5, 6, 0.80) 58%, rgba(5, 5, 6, 0.95) 100%),
      var(--slide-image) center / cover no-repeat;
  }

  .hero-content {
    padding: 22px;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .slider-arrow {
    top: 42%;
    width: 44px;
    height: 44px;
  }

  .slider-arrow--left { left: 10px; }
  .slider-arrow--right { right: 10px; }

  .slider-dots {
    right: 20px;
    bottom: 18px;
  }

  .category-nav {
    justify-content: flex-start;
  }

  .news-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .sidebar.is-open .sidebar-content {
    grid-template-columns: 1fr;
  }

  .search-row {
    flex-direction: column;
  }

  .search-row .neon-button {
    width: 100%;
  }
}

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

/* Artikel-Detailseite */
.article-main {
  margin-top: 24px;
}

.breadcrumb {
  margin-bottom: 18px;
  padding: 12px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--neon-orange-hot);
  outline: none;
}

.article-hero {
  border-radius: 32px;
  overflow: hidden;
}

.article-hero__image {
  position: relative;
  min-height: clamp(280px, 36vw, 520px);
  overflow: hidden;
}

.article-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 8, 0.06), rgba(6, 6, 8, 0.78)),
    linear-gradient(90deg, rgba(255, 90, 0, 0.10), transparent 48%);
}

.article-hero__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.article-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: clamp(-170px, -13vw, -115px) auto 0;
  padding: 0 clamp(22px, 5vw, 70px) clamp(28px, 4vw, 52px);
}

.article-hero__content h1 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.62);
}

.article-lead {
  max-width: 72ch;
  margin: 20px 0;
  color: #eee4dc;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.article-meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 20px;
  border-radius: 50%;
  background: var(--neon-orange);
  vertical-align: middle;
  box-shadow: 0 0 8px var(--neon-orange);
}

.article-layout {
  margin: 22px 0;
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  padding: 18px 14px;
  border-radius: var(--radius);
}

.article-back {
  width: 100%;
  margin-top: 14px;
  padding-inline: 12px;
  font-size: 0.88rem;
}

.article-body {
  padding: clamp(24px, 5vw, 66px);
  border-radius: var(--radius);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.article-body section {
  scroll-margin-top: 120px;
}

.article-body section + section {
  margin-top: clamp(52px, 7vw, 88px);
}

.article-body h2 {
  max-width: 20ch;
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.article-body h3 {
  margin: 0 0 8px;
}

.article-body p {
  max-width: 74ch;
  color: #ded4cd;
}

.article-dropcap::first-letter {
  float: left;
  margin: 7px 10px 0 0;
  color: var(--neon-orange-hot);
  font-size: 4.5rem;
  font-weight: 950;
  line-height: 0.7;
  text-shadow: var(--glow);
}

.article-callout {
  margin: 30px 0;
  padding: 24px;
  border-left: 4px solid var(--neon-orange);
  border-radius: 18px;
}

.article-callout strong {
  color: var(--neon-orange-hot);
  font-size: 1.2rem;
}

.article-callout p {
  margin-bottom: 0;
}

.article-figure {
  margin: 30px 0;
  border-radius: 22px;
  overflow: hidden;
}

.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-figure figcaption {
  padding: 13px 16px 15px;
  color: var(--muted);
  font-size: 0.88rem;
}

.verdict-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.verdict-card {
  padding: 24px;
  border-radius: 20px;
}

.verdict-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 90, 0, 0.68);
  border-radius: 50%;
  background: rgba(255, 90, 0, 0.14);
  color: var(--neon-orange-hot);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 950;
  box-shadow: 0 0 22px rgba(255, 90, 0, 0.15);
}

.verdict-card p {
  margin-bottom: 0;
}

.article-quote {
  margin: 34px 0 0;
  padding: 28px clamp(24px, 5vw, 54px);
  border: 0;
  border-left: 4px solid var(--neon-orange);
  border-radius: 0 20px 20px 0;
  background: linear-gradient(90deg, rgba(255, 90, 0, 0.14), rgba(255, 90, 0, 0.02));
  color: white;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.3;
}

.score-panel {
  margin-top: 30px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 22px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.score-panel__label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-panel strong {
  color: var(--neon-orange-hot);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-shadow: var(--glow);
}

.score-panel strong span {
  color: white;
  font-size: 0.32em;
  letter-spacing: 0;
}

.score-panel p {
  margin: 0;
}

.article-footer {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.tag-list a:hover,
.tag-list a:focus-visible {
  border-color: rgba(255, 90, 0, 0.65);
  color: white;
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.14);
  outline: none;
}

.related-panel {
  margin-bottom: 46px;
  padding: clamp(20px, 4vw, 36px);
  border-radius: var(--radius);
}

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

.related-card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 0, 0.58);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42), 0 0 28px rgba(255, 90, 0, 0.14);
  outline: none;
}

.related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.related-card span,
.related-card strong {
  display: block;
  margin-inline: 16px;
}

.related-card span {
  margin-top: 14px;
  color: var(--neon-orange-hot);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-card strong {
  margin-top: 5px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  line-height: 1.2;
}

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

  .article-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .article-sidebar .sidebar-title {
    width: 100%;
  }

  .article-sidebar .sidebar-link {
    margin: 0;
  }

  .article-back {
    width: auto;
    margin: 0 0 0 auto;
  }
}

@media (max-width: 720px) {
  .article-hero__image {
    min-height: 330px;
  }

  .article-hero__content {
    margin-top: -130px;
    padding-inline: 20px;
  }

  .article-hero__content h1 {
    font-size: clamp(2.25rem, 12vw, 4rem);
  }

  .article-meta {
    display: grid;
    gap: 4px;
  }

  .article-meta span::after {
    display: none !important;
  }

  .article-sidebar {
    display: block;
  }

  .article-back {
    width: 100%;
    margin-top: 14px;
  }

  .article-body {
    padding: 24px 20px;
  }

  .verdict-grid,
  .score-panel,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .score-panel {
    gap: 18px;
  }

  .article-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .article-footer .neon-button {
    width: 100%;
  }
}

/* Datenbank- und Admin-Bereich */
.database-message {
  max-width: 780px;
  margin: 54px auto;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  text-align: center;
}

.database-message h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.admin-main {
  width: min(calc(100% - 24px), var(--max-width));
  margin: 24px auto 46px;
}

.admin-login,
.admin-panel {
  padding: clamp(20px, 4vw, 38px);
  border-radius: var(--radius);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: center;
}

.admin-login h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
}

.admin-login p:not(.eyebrow) {
  color: var(--muted);
}

.admin-key-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.admin-key-row label {
  grid-column: 1 / -1;
  font-weight: 850;
}

.admin-key-row input,
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  outline: none;
}

.admin-key-row input:focus,
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  border-color: var(--neon-orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.16);
}

.admin-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.admin-status[data-kind="success"] {
  border: 1px solid rgba(92, 255, 151, 0.32);
  color: #b9ffd0;
}

.admin-status[data-kind="error"] {
  border: 1px solid rgba(255, 92, 92, 0.38);
  color: #ffc4c4;
}

.admin-tabs {
  margin: 16px 0;
  padding: 8px;
  border-radius: 18px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.admin-tabs button,
.glass-button,
.danger-button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
}

.admin-tabs button.is-active,
.admin-tabs button:hover,
.glass-button:hover,
.glass-button:focus-visible {
  border-color: rgba(255, 90, 0, 0.65);
  background: rgba(255, 90, 0, 0.15);
  box-shadow: 0 0 18px rgba(255, 90, 0, 0.14);
  outline: none;
}

.danger-button:hover,
.danger-button:focus-visible {
  border-color: rgba(255, 80, 80, 0.72);
  background: rgba(255, 60, 60, 0.16);
  outline: none;
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: block;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.admin-form {
  padding: 20px;
  border-radius: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-grid .span-2 {
  grid-column: 1 / -1;
}

.form-grid .check-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-grid .check-label input {
  width: 20px;
  height: 20px;
}

.code-editor {
  min-height: 360px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  line-height: 1.5;
  resize: vertical;
}

.admin-list {
  display: grid;
  gap: 12px;
  max-height: 1120px;
  overflow-y: auto;
  padding-right: 4px;
}

.admin-item {
  padding: 12px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.admin-item > img {
  width: 80px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.3);
}

.admin-item strong,
.admin-item span {
  display: block;
}

.admin-item strong {
  line-height: 1.18;
}

.admin-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-item-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--neon-orange-hot);
}

@media (max-width: 980px) {
  .admin-login,
  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .admin-list {
    max-height: none;
  }
}

@media (max-width: 720px) {
  .admin-key-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .span-2 {
    grid-column: auto;
  }

  .admin-tabs {
    justify-content: flex-start;
  }

  .admin-tabs button {
    flex: 0 0 auto;
  }
}

.article-source {
  margin: 28px 0;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.article-source .eyebrow {
  margin-bottom: 4px;
}

.article-source strong {
  display: block;
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  .article-source {
    align-items: stretch;
    flex-direction: column;
  }
}
