/* =============================================
   Action Comics #1 – Affiliate-Seite
   Farbschema: Superman-Rot, DC-Blau, Gold
   ============================================= */


/* ── CSS Custom Properties ── */
:root {
  --rot:        #D01000;
  --rot-dunkel: #A00C00;
  --blau:       #1A3A8A;
  --blau-dunkel:#0F2560;
  --gold:       #F5C518;
  --gold-dunkel:#C9A000;
  --hell:       #FAFAFA;
  --dunkel:     #111111;
  --grau:       #444444;
  --rahmen:     4px solid var(--rot);
  --schatten:   0 4px 18px rgba(0,0,0,0.35);
  --radius:     4px;
  --transition: 0.25s ease;
  --header-height: 4.5rem;
}

/* ── Reset & Basis ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: 'Merriweather', Georgia, serif;
  color: var(--grau);
  background: var(--hell);
  line-height: 1.7;
}

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

a {
  color: var(--blau);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--rot);
}

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Halftone-Muster (dekorativ) ── */
.halftone {
  position: relative;
  overflow: hidden;
}

.halftone::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
  z-index: 0;
}

.halftone > * {
  position: relative;
  z-index: 1;
}

/* ── Skip-Navigation ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--rot);
  color: #fff;
  padding: 0.5rem 1rem;
  font-family: 'Oswald', sans-serif;
  z-index: 1000;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* ══════════════════════════════════════
   HEADER & NAVIGATION
   ══════════════════════════════════════ */
.site-header {
  background: var(--dunkel);
  border-bottom: 5px solid var(--rot);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--schatten);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1rem;
}

/* Logo */
.site-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 5px #ffffff;
  paint-order: stroke fill;
  white-space: nowrap;
}

.site-logo span {
  color: var(--rot);
}

/* Hamburger (reines CSS) */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle-label span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hauptnavigation */
.site-nav > ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.site-nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.site-nav a:not(.lang-flag):hover,
.site-nav a:not(.lang-flag)[aria-current="page"] {
  background: var(--rot);
  color: #fff;
}

/* Sprachumschalter: Flagge etwas tiefer, weißer Rand, ohne Hover-Effekt */
.site-nav .lang-flag-item {
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
  margin-left: 0.15rem;
  padding-bottom: 0.40rem;
}

.site-nav .lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.5rem 0.25rem;
  line-height: 0;
  background: transparent;
  transform: translateY(0.2rem);
  transition: none;
}

.site-nav .lang-flag:hover,
.site-nav .lang-flag:focus,
.site-nav .lang-flag:focus-visible,
.site-nav .lang-flag:active {
  background: transparent;
  outline: none;
  box-shadow: none;
}

.site-nav .lang-flag-svg {
  display: block;
  width: auto;
  height: 1.55rem;
  border: 1px solid #fff;
  border-radius: 2px;
  box-sizing: content-box;
  background: #fff;
}

/* Dropdown „Die Erstausgabe“ */
.site-nav .has-submenu {
  position: relative;
}

.site-nav .submenu-toggle:hover,
.site-nav .submenu-toggle:focus-visible {
  background: var(--rot);
  color: #fff;
  outline: none;
}

.site-nav .submenu-caret {
  font-size: 0.65em;
  opacity: 0.85;
}

.site-nav .submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  position: absolute;
  top: 30px;
  left: 0;
  min-width: 16rem;
  background: var(--dunkel);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--schatten);
  z-index: 950;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.site-nav .submenu a {
  display: block;
  border-radius: 0;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  color: #fff;
}

.site-nav .submenu a:hover,
.site-nav .submenu a:focus-visible {
  background: var(--rot);
  color: #fff;
}

@media (min-width: 641px) {
  .site-nav .has-submenu:hover .submenu,
  .site-nav .has-submenu:focus-within .submenu,
  .site-nav .submenu-toggle[aria-expanded="true"] + .submenu {
    display: flex;
  }
}

/* Sticky Abschnittsnavigation (nur Startseite) */
.section-nav {
  position: sticky;
  top: var(--header-height, 4.5rem);
  z-index: 800;
  background: #fff;
  border-bottom: 2px solid var(--rot);
  box-shadow: 0 -4px 0 0 #fff, 0 2px 10px rgba(0, 0, 0, 0.08);
}

.section-nav .container {
  padding-inline: 1.25rem;
}

.section-nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.section-nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dunkel);
  padding: 0.4rem 0.9rem 0.15rem;
  border-radius: var(--radius);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.section-nav a:hover,
.section-nav a:focus-visible {
  color: var(--rot);
  outline: none;
}

.section-nav a[aria-current="location"] {
  color: var(--rot);
  text-decoration: none;
  border-bottom-color: var(--rot);
}

/* Sprungziele Startseite: Abstand für sticky Header + Section-Nav */
#geschichte,
#superman,
#aeren,
#deutschland,
#popkultur,
#angebot,
#faq,
#glossar,
#blog-teaser {
  scroll-margin-top: var(--scroll-offset, 8.75rem);
}

/* Tabellen in Artikelseiten */
.content-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.content-table th,
.content-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

.content-table thead th {
  background: var(--blau-dunkel);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.content-table tbody th[scope="row"] {
  font-weight: 700;
  background: var(--hell);
  width: 8.5rem;
}

/* Hero mit Cover neben Text (Erstausgabe-Detailseite) */
.hero-with-cover {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
  text-align: left;
}

.hero-cover-inline .cover-frame {
  max-width: 200px;
}

@media (max-width: 640px) {
  .hero-with-cover {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ausgaben-hero-inner.hero-with-cover > div:not(.hero-cover-inline) {
    align-items: center;
  }

  .section-nav a {
    font-size: 0.85rem;
  }
}

/* ══════════════════════════════════════
   HERO-SECTION
   ══════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--blau-dunkel) 0%, var(--blau) 60%, var(--rot-dunkel) 100%);
  color: #fff;
  padding-block: 4rem 3rem;
  contain: paint;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

/* Cover-Bild-Wrapper */
.hero-cover {
  display: flex;
  justify-content: center;
}

.cover-frame {
  position: relative;
  display: inline-block;
  aspect-ratio: 320 / 468;
  max-width: 320px;
  width: min(100%, 320px);
}

.cover-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 6px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
}

.cover-frame::after {
  content: '★ ORIGINAL ★';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rot);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.8rem;
  white-space: nowrap;
  z-index: 2;
}

.cover-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 320px;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.4);
  border-radius: var(--radius);
}

/* Hero-Text */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.3);
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-left: 3px solid var(--gold);
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 44ch;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--dunkel);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  width: fit-content;
}

.hero-badge .badge-label {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero-disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
  font-style: italic;
}

.hero-inline-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.hero-inline-link:hover {
  color: #fff;
}

/* ── CTA-Button ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--rot);
  color: #fff;
  box-shadow: 4px 4px 0 var(--rot-dunkel);
}

.btn-primary:hover {
  background: var(--rot-dunkel);
  color: #fff;
}

.btn-secondary {
  background: var(--gold);
  color: var(--dunkel);
  box-shadow: 4px 4px 0 var(--gold-dunkel);
}

.btn-secondary:hover {
  background: var(--gold-dunkel);
  color: var(--dunkel);
}

/* Angebots-Teaser (Startseite) */
.angebot-teaser {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}
.angebot-teaser-cta {
  margin-top: 1.25rem;
}

/* Intro Block Reprint-Kaufseite */
.reprint-page-intro {
  max-width: 40rem;
  margin-inline: auto;
}

/* ══════════════════════════════════════
   SECTION-ÜBERSCHRIFTEN
   ══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rot);
  display: block;
  margin-bottom: 0.4rem;
  padding-top: 20px;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dunkel);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--rot);
  margin: 0.6rem auto 0;
}

/* ══════════════════════════════════════
   GESCHICHTE-SECTION
   ══════════════════════════════════════ */
.geschichte {
  padding-block: 4.5rem;
  background: var(--hell);
}

.geschichte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.geschichte-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blau);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  border-left: 4px solid var(--rot);
  padding-left: 0.75rem;
}

.geschichte-text p {
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
  line-height: 1.8;
}

.geschichte-text p:last-child {
  margin-bottom: 0;
}

.geschichte-weiterlink a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rot);
  text-decoration: none;
  transition: color var(--transition);
}

.geschichte-weiterlink a:hover {
  color: var(--blau);
}

/* Fakten-Box */
.fakten-box {
  background: var(--blau);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--schatten);
  border-top: 5px solid var(--gold);
  position: sticky;
  top: 90px;
}

.fakten-box h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.fakten-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.fakten-liste li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.85rem;
}

.fakten-liste li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fakt-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.fakt-wert {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
}

/* ══════════════════════════════════════
   REIHE-SECTION
   ══════════════════════════════════════ */
.reihe {
  padding-block: 4.5rem;
  background: #f4f6fb;
  border-top: 3px solid rgba(26,58,138,0.12);
}

.reihe-text {
  max-width: 860px;
  margin-inline: auto;
}

.reihe-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blau);
  margin-bottom: 0.65rem;
  margin-top: 2rem;
  text-transform: uppercase;
  border-left: 4px solid var(--rot);
  padding-left: 0.75rem;
}

.reihe-text h3:first-child {
  margin-top: 0;
}

.reihe-text p {
  margin-bottom: 1.1rem;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--grau);
}

.reihe-meilensteine {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.reihe-meilensteine li {
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
  color: var(--grau);
}

.reihe-meilensteine li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--rot);
  font-size: 0.85rem;
  top: 0.15em;
}

.reihe-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ══════════════════════════════════════
   ANGEBOTS-SECTION
   ══════════════════════════════════════ */
.angebot {
  background: linear-gradient(180deg, #f0f0f0 0%, #e2e2e2 100%);
  padding-block: 4.5rem;
  border-top: 5px solid var(--rot);
  border-bottom: 5px solid var(--rot);
}

.angebot-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  overflow: hidden;
  max-width: 780px;
  margin-inline: auto;
  border: var(--rahmen);
}

.angebot-card-header {
  background: var(--rot);
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.angebot-card-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.angebot-badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--dunkel);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.angebot-card-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.angebot-cover img {
  width: 140px;
  border: 3px solid var(--blau);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--rot);
}

.angebot-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.angebot-preis {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.preis-zahl {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rot);
  line-height: 1;
}

.preis-label {
  font-size: 0.85rem;
  color: var(--grau);
  font-style: italic;
}

.angebot-punkte {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.angebot-punkte li {
  font-size: 0.9rem;
  padding-left: 1.4rem;
  position: relative;
}

.angebot-punkte li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rot);
  font-weight: 700;
}

.angebot-hinweis {
  background: #fff8e1;
  border-left: 4px solid var(--gold);
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  color: #5c4a00;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.angebot-card-footer {
  padding: 1.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid #eee;
}

.ebay-hinweis {
  font-size: 0.78rem;
  color: #888;
  text-align: center;
}

/* ══════════════════════════════════════
   WARUM-SECTION (Selling Points)
   ══════════════════════════════════════ */
.warum {
  padding-block: 4rem;
  background: var(--dunkel);
  color: #fff;
}

.warum .section-title {
  color: #fff;
}

.warum .section-title::after {
  background: var(--gold);
}

.warum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.warum-item {
  text-align: center;
  padding: 1.5rem;
  border: 2px solid rgba(245,197,24,0.2);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.warum-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.warum-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.warum-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.warum-item p {
  font-size: 0.88rem;
  opacity: 0.8;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  background: var(--blau-dunkel);
  color: rgba(255,255,255,0.75);
  padding-block: 2.5rem;
  border-top: 5px solid var(--gold);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.footer-copy a {
  color: var(--gold);
}

.footer-trust {
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.footer-trust p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.footer-trust a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-trust a:hover {
  color: #fff;
}

/* ══════════════════════════════════════
   FAQ-SECTION
   ══════════════════════════════════════ */
.faq {
  padding-block: 4.5rem;
  background: var(--hell);
  border-top: 3px solid rgba(26,58,138,0.1);
}

.faq-liste {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item[open] {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-color: var(--blau);
}

.faq-frage {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dunkel);
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition), color var(--transition);
}

.faq-frage::-webkit-details-marker {
  display: none;
}

.faq-frage::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--rot);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] .faq-frage {
  background: var(--blau);
  color: #fff;
}

.faq-item[open] .faq-frage::after {
  content: '−';
  color: var(--gold);
}

.faq-antwort {
  padding: 1rem 1.4rem 1.25rem;
  border-top: 1px solid #eee;
}

.faq-antwort p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--grau);
  margin: 0;
}

.faq-antwort a {
  color: var(--blau);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════════════
   IMPRESSUM-SEITE
   ══════════════════════════════════════ */
.impressum-main {
  padding-block: 4rem;
  min-height: 60vh;
}

.impressum-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  padding: 3rem;
  max-width: 800px;
  margin-inline: auto;
  border-top: 5px solid var(--rot);
}

.impressum-card h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--dunkel);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.impressum-card h1::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--rot);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.impressum-card h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blau);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid var(--rot);
  padding-left: 0.75rem;
}

.impressum-card p,
.impressum-card address {
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: normal;
  color: var(--grau);
}

.impressum-card a {
  color: var(--blau);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rot);
  margin-bottom: 2rem;
  transition: gap var(--transition);
}

.back-link:hover {
  gap: 0.7rem;
  color: var(--rot);
}

.back-link::before {
  content: '←';
  font-size: 1rem;
}

/* ══════════════════════════════════════
   RESPONSIVE – TABLET (≤ 900px)
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cover {
    order: -1;
  }

  .hero-text {
    align-items: center;
  }

  .hero-eyebrow {
    align-self: center;
  }

  .hero-subtitle {
    max-width: 55ch;
  }

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

  .fakten-box {
    position: static;
  }

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

  .angebot-card-body {
    grid-template-columns: 1fr;
  }

  .angebot-cover {
    display: flex;
    justify-content: center;
  }

  .angebot-cover img {
    width: 120px;
  }
}

/* ══════════════════════════════════════
   RESPONSIVE – MOBIL (≤ 640px)
   ══════════════════════════════════════ */
@media (max-width: 640px) {
  .nav-toggle-label {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dunkel);
    border-bottom: 3px solid var(--rot);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    max-height: min(90vh, 640px);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav > ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    align-items: stretch;
  }

  .site-nav .lang-flag-item {
    margin-left: 0;
    align-self: stretch;
    align-items: flex-start;
    padding-bottom: 0;
  }

  .site-nav .lang-flag {
    justify-content: flex-start;
    width: 100%;
    padding: 0.5rem 1rem;
    transform: none;
  }

  .site-nav .has-submenu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav .submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0.15rem 0 0.35rem 0.75rem;
    padding: 0.2rem 0;
    border-top: 0;
    border-left: 3px solid var(--rot);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.22);
  }

  .site-nav .submenu-toggle[aria-expanded="true"] + .submenu {
    display: flex;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
  }

  .site-nav .submenu-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    text-align: left;
  }

  .hero {
    padding-block: 2.5rem 2rem;
  }

  .cover-frame {
    max-width: 240px;
  }

  .cover-frame img {
    max-width: 240px;
  }

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

  .angebot-card-header,
  .angebot-card-body,
  .angebot-card-footer {
    padding-inline: 1.25rem;
  }

  .angebot-preis .preis-zahl {
    font-size: 1.8rem;
  }

  .impressum-card {
    padding: 1.75rem 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   AUSGABEN-SEITE: HERO
   ══════════════════════════════════════ */
.ausgaben-hero-inner {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  padding-block: 1rem;
}

/* Wie Startseite `.hero-text`: gleicher vertikaler Rhythmus (gap 1.25rem) um `.hero-title` */
.ausgaben-hero-inner:not(.hero-with-cover) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.ausgaben-hero-inner.hero-with-cover {
  max-width: 960px;
  text-align: left;
}

.ausgaben-hero-inner.hero-with-cover > div:not(.hero-cover-inline) {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

/* Zentrierter Fließtext im Hero (Ausgaben, Reprints, Wert, Original vs. Reprint) */
.ausgaben-hero-inner:not(.hero-with-cover) .hero-subtitle {
  text-align: center;
  margin-inline: auto;
}

.ausgaben-hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  /* Gap der Inner-Box (1.25rem) + 0.75rem ≈ frühere 2rem vor den Stats */
  margin-top: 0.75rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0,0,0,0.25);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  min-width: 110px;
}

.stat-zahl {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  text-align: center;
}

/* ══════════════════════════════════════
   AUSGABEN-SEITE: EINLEITUNG
   ══════════════════════════════════════ */
.ausgaben-intro {
  padding-block: 4rem;
  background: var(--hell);
}

.ausgaben-intro-text {
  max-width: 820px;
  margin-inline: auto;
}

.ausgaben-intro-text p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--grau);
  margin-bottom: 1.1rem;
}

.ausgaben-intro-text p:last-child {
  margin-bottom: 0;
}

/* ══════════════════════════════════════
   AUSGABEN-SEITE: WERTVOLLSTE AUSGABEN
   ══════════════════════════════════════ */
.rare-issues {
  padding-block: 4.5rem;
  background: #f4f6fb;
  border-top: 3px solid rgba(26,58,138,0.12);
}

.rare-intro-text {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  font-size: 0.97rem;
  color: var(--grau);
  line-height: 1.75;
}

.rare-issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Issue Card */
.issue-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  border: 2px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  border-color: var(--blau);
}

.issue-card--gold {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(245,197,24,0.25);
}

.issue-card--gold:hover {
  border-color: var(--gold-dunkel);
  box-shadow: 0 10px 28px rgba(245,197,24,0.35);
}

.issue-card-cover {
  padding: 1rem 1rem 0;
}

.issue-card-body {
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.issue-card-meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.issue-nr-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--blau);
  color: #fff;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius);
}

.issue-year-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--grau);
  border: 1px solid #ccc;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius);
}

.issue-key-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gold);
  color: var(--dunkel);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius);
}

.issue-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dunkel);
  text-transform: uppercase;
  line-height: 1.2;
}

.issue-card-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--grau);
  flex: 1;
}

.issue-card-value {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  border-top: 1px solid #eee;
  padding-top: 0.6rem;
  margin-top: auto;
}

.value-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grau);
  opacity: 0.75;
}

.value-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rot);
}

.issue-card-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rot);
  transition: color var(--transition);
}

.issue-card-link:hover {
  color: var(--blau);
}


/* ══════════════════════════════════════
   AUSGABEN-SEITE: TIMELINE / MEILENSTEINE
   ══════════════════════════════════════ */
.meilensteine {
  padding-block: 4.5rem;
  background: var(--dunkel);
}

.meilensteine .section-title {
  color: #fff;
}

.meilensteine .section-title::after {
  background: var(--gold);
}

.meilensteine .section-eyebrow {
  color: var(--gold);
}

.timeline {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.65rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--rot), var(--gold));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding: 0 0 2.25rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -1.35rem;
  top: 0.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.timeline-marker::before {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 3px solid var(--dunkel);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  background: var(--dunkel);
  padding: 0 0.25rem;
  letter-spacing: 0.05em;
}

.timeline-content {
  padding-left: 0.5rem;
  grid-column: 1 / -1;
  margin-left: 1.75rem;
}

.timeline-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
  border-left: 3px solid var(--rot);
  padding-left: 0.6rem;
}

.timeline-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  padding-left: 0.6rem;
}

.timeline-item--aktuell .timeline-marker::before {
  background: var(--rot);
  box-shadow: 0 0 0 2px var(--rot), 0 0 8px rgba(208,16,0,0.5);
}

.timeline-item--aktuell .timeline-title {
  color: var(--gold);
  border-color: var(--gold);
}

/* ══════════════════════════════════════
   AUSGABEN-SEITE: AKTUELLE AUSGABE
   ══════════════════════════════════════ */
.aktuelle-ausgabe {
  padding-block: 4.5rem;
  background: var(--hell);
  border-top: 3px solid rgba(26,58,138,0.12);
}

.aktuell-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  border: var(--rahmen);
  padding: 2rem;
  max-width: 820px;
  margin-inline: auto;
}

.aktuell-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aktuell-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.aktuell-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.aktuell-detail-item dt {
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rot);
  opacity: 0.85;
}

.aktuell-detail-item dd {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dunkel);
  margin: 0;
}

.aktuell-story {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--grau);
  border-left: 4px solid var(--blau);
  padding-left: 0.85rem;
  font-style: italic;
}

/* ══════════════════════════════════════
   AUSGABEN-SEITE: AUSBLICK
   ══════════════════════════════════════ */
.ausblick {
  padding-block: 4.5rem;
  background: linear-gradient(135deg, var(--blau-dunkel) 0%, var(--blau) 60%, var(--rot-dunkel) 100%);
  color: #fff;
  border-top: 5px solid var(--gold);
}

.ausblick .section-title {
  color: #fff;
}

.ausblick .section-title::after {
  background: var(--gold);
}

.ausblick .section-eyebrow {
  color: var(--gold);
}

.ausblick-text {
  max-width: 820px;
  margin-inline: auto;
}

.ausblick-text p {
  font-size: 0.97rem;
  line-height: 1.85;
  opacity: 0.92;
  margin-bottom: 1.1rem;
}

.ausblick-text p:last-of-type {
  margin-bottom: 0;
}

.ausblick-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
  justify-content: center;
}

/* ══════════════════════════════════════
   REPRINTS-SEITE: KARTEN
   ══════════════════════════════════════ */
.reprints-section {
  padding-block: 4.5rem;
  background: #f4f6fb;
  border-top: 3px solid rgba(26,58,138,0.12);
}

.reprints-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.reprint-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  overflow: hidden;
  border: 2px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.reprint-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  border-color: var(--blau);
}

.reprint-nr-badge {
  background: var(--blau-dunkel);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.reprint-body {
  padding: 1rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.reprint-meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.reprint-year-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--blau);
  color: #fff;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius);
}

.reprint-type-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--grau);
  border: 1px solid #ccc;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.reprint-type-tag--promo {
  background: #fff8e1;
  border-color: var(--gold-dunkel);
  color: #6b4a00;
}

.reprint-type-tag--special {
  background: #fff0f0;
  border-color: var(--rot);
  color: var(--rot-dunkel);
}

.reprint-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dunkel);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.reprint-desc {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--grau);
  flex: 1;
}

.reprint-fakten {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-top: 1px solid #eee;
  padding-top: 0.65rem;
  margin-top: auto;
}

.reprint-fakten li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.4;
}

.rf-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rot);
  flex-shrink: 0;
  white-space: nowrap;
}

.rf-wert {
  color: var(--dunkel);
  font-weight: 600;
}

/* ══════════════════════════════════════
   REPRINTS-SEITE: CTA-SECTION
   ══════════════════════════════════════ */
.reprints-cta-section {
  padding-block: 4rem;
  background: var(--dunkel);
  border-top: 5px solid var(--gold);
}

.reprints-cta-box {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.reprints-cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.reprints-cta-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  max-width: 55ch;
}

.reprints-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.reprints-cta-section .hero-disclaimer {
  font-size: 0.78rem;
  opacity: 0.6;
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════
   RESPONSIVE – AUSGABEN & REPRINTS (≤ 900px)
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .ausgaben-hero-stats {
    gap: 1rem;
  }

  .rare-issues-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reprints-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aktuell-details {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 1.5rem;
  }
}

@media (max-width: 640px) {
  .ausgaben-hero-stats {
    gap: 0.75rem;
  }

  .stat-item {
    min-width: 90px;
    padding: 0.6rem 1rem;
  }

  .rare-issues-grid {
    grid-template-columns: 1fr;
  }

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

  .ausblick-cta {
    flex-direction: column;
    align-items: center;
  }

  .reprints-cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .reprints-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .timeline::before {
    left: 0.5rem;
  }

  .timeline-marker {
    left: -1.1rem;
  }
}

/* ══════════════════════════════════════
   STARTSEITE: ZUSÄTZLICHE CONTENT-SEKTIONEN
   ══════════════════════════════════════ */

/* Helle Variante der .reihe-Sektion zum Abwechseln des Hintergrunds */
.reihe--hell {
  background: var(--hell);
}

/* Einleitender Fließtext über Tabellen/Listen innerhalb einer .reihe-Sektion */
.reihe-text > p:first-child {
  margin-top: 0;
}

/* Zweispaltiges Subgrid (z. B. Superman-Abschnitt) */
.reihe-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin-top: 1.5rem;
}

.reihe-subgrid h3 {
  margin-top: 0;
}

@media (max-width: 720px) {
  .reihe-subgrid {
    grid-template-columns: 1fr;
  }
}

/* Glossar (Definitionsliste) */
.glossar-liste {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin-top: 1.5rem;
}

.glossar-eintrag {
  background: #fff;
  border-left: 4px solid var(--rot);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.glossar-eintrag dt {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--blau);
  margin-bottom: 0.35rem;
}

.glossar-eintrag dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--grau);
}

@media (max-width: 720px) {
  .glossar-liste {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   BLOG: TEASER (Startseite & Übersicht)
   ══════════════════════════════════════ */
.blog-teaser-section {
  padding-block: 4.5rem;
  background: #f4f6fb;
  border-top: 3px solid rgba(26, 58, 138, 0.12);
}

.blog-teaser-intro {
  max-width: 60ch;
  margin: -1rem auto 2.5rem;
  text-align: center;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--grau);
}

.blog-overview {
  padding-block: 4.5rem;
  background: var(--hell);
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  border: 2px solid #e8e8e8;
  display: flex;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  border-color: var(--blau);
}

.blog-card-link-wrap {
  display: flex;
  flex-direction: column;
  color: inherit;
  width: 100%;
}

.blog-card-link-wrap:hover {
  color: inherit;
}

.blog-card-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 140px;
  background: linear-gradient(135deg, var(--blau-dunkel), var(--blau));
  color: #fff;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(135deg, var(--blau-dunkel), var(--blau));
  background-size: 12px 12px, 100% 100%;
}

.blog-card-issue {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}

.blog-card-issue-year {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.blog-card-body {
  padding: 1.1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--rot);
  color: #fff;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius);
}

.blog-card-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--grau);
  opacity: 0.85;
}

.blog-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dunkel);
  line-height: 1.25;
}

.blog-card-excerpt {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--grau);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-more {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rot);
  margin-top: auto;
  transition: color var(--transition);
}

.blog-card:hover .blog-card-more {
  color: var(--blau);
}

.blog-teaser-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ══════════════════════════════════════
   BLOG: DETAILANSICHT
   ══════════════════════════════════════ */
.blog-article-hero {
  background: var(--dunkel);
  padding-block: 3rem 2.75rem;
  border-bottom: 5px solid var(--gold);
}

.blog-breadcrumb {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.blog-breadcrumb a {
  color: var(--gold);
}

.blog-breadcrumb a:hover {
  color: #fff;
}

.blog-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.blog-card-issue-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--blau-dunkel);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius);
}

.blog-article-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--rot);
  color: #fff;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius);
}

.blog-article-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  max-width: 24ch;
}

.blog-article-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 60ch;
  margin-top: 1rem;
}

.blog-article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
}

.blog-article-body {
  padding-block: 3.5rem;
  background: var(--hell);
}

.blog-article-content {
  max-width: 720px;
  margin-inline: auto;
}

.blog-article-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--blau);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-left: 4px solid var(--rot);
  padding-left: 0.75rem;
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  line-height: 1.2;
}

.blog-article-content h2:first-child {
  margin-top: 0;
}

.blog-article-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grau);
  margin-bottom: 1.25rem;
}

.blog-article-content a {
  color: var(--blau);
  text-decoration: underline;
  text-decoration-color: rgba(26, 58, 138, 0.35);
  text-underline-offset: 2px;
}

.blog-article-content a:hover {
  color: var(--rot);
}

.blog-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.blog-quote blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dunkel);
}

.blog-quote figcaption {
  margin-top: 0.75rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grau);
  opacity: 0.85;
}

.blog-article-back {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.blog-related {
  padding-block: 4rem;
  background: #f4f6fb;
  border-top: 3px solid rgba(26, 58, 138, 0.12);
}

.blog-teaser-grid--related {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin-inline: auto;
}

/* ── Blog Responsive ── */
@media (max-width: 900px) {
  .blog-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-teaser-grid,
  .blog-teaser-grid--related {
    grid-template-columns: 1fr;
  }

  .blog-article-hero {
    padding-block: 2.25rem 2rem;
  }
}
