/**
 * vollneutral.ch — style.css v1.1
 * Zentrale Styles für alle Seiten.
 * Hier ändern → gilt überall sofort.
 *
 * Inhalt:
 *   0. Lokale Schriften (@font-face)
 *   1. CSS-Variablen (Light + Dark Mode)
 *   2. Reset & Base
 *   3. Typografie-Utilities
 *   4. Buttons
 *   5. Filter-Bar
 *   6. Karten & Hover
 *   7. Skeleton Loading
 *   8. Dark Mode Toggle
 *   9. Responsive
 */

/* ─────────────────────────────────────────────────────────────
   0. LOKALE SCHRIFTEN
   Dateien liegen in /fonts/ — einmalig via download-fonts.py
   herunterladen, dann funktioniert alles offline + ohne Google.
───────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/playfair-400i.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/nunito-400.woff2') format('woff2');
}

/* ─────────────────────────────────────────────────────────────
   1. CSS-VARIABLEN
───────────────────────────────────────────────────────────── */
:root {
  --parchment:      #F4EDD8;
  --parchment2:     #EDE3C6;
  --beige-light:    #FAF6EC;
  --brown-mid:      #9B7B3A;
  --brown-dark:     #5C3D11;
  --ink:            #1C1208;
  --ink-soft:       #3A2A10;
  --ink-muted:      #7A6A50;
  --divider:        #C9B886;
  --ocean:          #2E1D08;
  --land:           #6B4820;
  --land-visited:   #C9903A;
}

/* Dark Mode — wird per JS via data-theme="dark" am <html> aktiviert */
[data-theme="dark"] {
  --parchment:      #18120A;
  --parchment2:     #231810;
  --beige-light:    #1C1510;
  --brown-mid:      #C9A060;
  --brown-dark:     #9B7B3A;
  --ink:            #EEE4C8;
  --ink-soft:       #D4C098;
  --ink-muted:      #9A8870;
  --divider:        #3C2C14;
  --ocean:          #180F05;
  --land:           #3D2810;
  --land-visited:   #D4A840;
}

/* ─────────────────────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--parchment);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Sanfte Übergänge bei Theme-Wechsel für alle relevanten Elemente */
header, footer, .article-card, .photo-item, input, textarea, select {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

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

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

/* ─────────────────────────────────────────────────────────────
   3. TYPOGRAFIE-UTILITIES
───────────────────────────────────────────────────────────── */

/* Kleiner Übertitel in Kapitälchen */
.eyebrow,
.page-eyebrow,
.hero-eyebrow,
.page-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 1rem;
}

/* Seiten-Haupttitel (Listing-Seiten: Blog, Galerie, Reisen …) */
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Untertitel / Lead-Text */
.page-sub {
  font-size: 0.95rem;
  color: var(--ink-muted);
  max-width: 480px;
  line-height: 1.8;
}

/* Abschnittsüberschriften innerhalb einer Seite */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 2rem 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
}

.section-more {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-mid);
  font-weight: 500;
}
.section-more:hover { text-decoration: underline; }

/* ─────────────────────────────────────────────────────────────
   4. BUTTONS
───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--parchment);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn:hover {
  background: var(--brown-dark);
  box-shadow: 0 4px 16px rgba(92, 61, 17, 0.18);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover {
  background: var(--parchment2);
  box-shadow: none;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
}

/* ─────────────────────────────────────────────────────────────
   5. FILTER-BAR
   (Galerie, Blog, Magazin, Reisen)
───────────────────────────────────────────────────────────── */
.filter-bar {
  padding: 1.2rem 5rem;
  border-bottom: 1px solid var(--divider);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-btn {
  background: none;
  border: 1px solid var(--divider);
  padding: 0.35rem 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.filter-btn:hover {
  border-color: var(--brown-mid);
  color: var(--brown-mid);
}
.filter-btn.active {
  background: transparent;
  color: var(--brown-mid);
  border-color: var(--brown-mid);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────
   6. KARTEN & HOVER-ANIMATIONEN
───────────────────────────────────────────────────────────── */

/* Foto-Karte: leichtes Anheben beim Hover */
.photo-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.photo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(28, 18, 8, 0.14);
}

/* Foto-Overlay auf Karten */
.photo-overlay {
  transition: background 0.35s ease;
}

/* Artikel-Karte */
.article-card {
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}
.article-card:hover {
  border-color: var(--brown-mid);
  box-shadow: 0 6px 24px rgba(92, 61, 17, 0.11);
}

/* ─────────────────────────────────────────────────────────────
   7. SKELETON LOADING
   Verwendung: <div class="skeleton" style="height:200px"></div>
───────────────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--parchment2) 25%,
    var(--beige-light) 50%,
    var(--parchment2) 75%
  );
  background-size: 200% 100%;
  animation: vn-shimmer 1.6s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes vn-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ─────────────────────────────────────────────────────────────
   8. LESEFORTSCHRITTSBALKEN
───────────────────────────────────────────────────────────── */
.vn-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--brown-mid);
  z-index: 9999;
  transition: width 0.1s linear, background 0.3s ease;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* Leuchtet am Ende kurz auf */
.vn-progress-bar.complete {
  background: var(--brown-dark);
  opacity: 0;
  transition: opacity 0.6s ease 0.2s, background 0.2s;
}

/* ─────────────────────────────────────────────────────────────
   9. DARK MODE TOGGLE (Mond / Sonne)
   (wird von layout.js in die Nav eingefügt)
───────────────────────────────────────────────────────────── */
.vn-theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0.3rem 0.55rem;
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
  margin-left: 0.3rem;
}
.vn-theme-toggle:hover {
  color: var(--brown-mid);
  background: rgba(155, 123, 58, 0.09);
}
.vn-theme-toggle svg {
  width: 17px;
  height: 17px;
  display: block;
}

/* Sonnen-Icon im Dark Mode verstecken, Mond im Light Mode */
[data-theme="dark"]  .vn-icon-moon { display: none; }
[data-theme="dark"]  .vn-icon-sun  { display: block; }
.vn-icon-sun { display: none; }
.vn-icon-moon { display: block; }

/* ─────────────────────────────────────────────────────────────
   10. COOKIE-BANNER
───────────────────────────────────────────────────────────── */
.vn-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 8000;
  background: var(--ink);
  color: var(--parchment);
  max-width: 640px;
  width: calc(100% - 2rem);
  padding: 1.4rem 1.8rem;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(28,18,8,0.28);
  transition: transform 0.4s cubic-bezier(0.34,1.26,0.64,1);
  font-size: 0.88rem;
  line-height: 1.65;
}
.vn-cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}
.vn-cookie-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--parchment);
}
.vn-cookie-text {
  color: #C8B99A;
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
  line-height: 1.75;
}
[data-theme="dark"] .vn-cookie-text { color: #C8B99A; }
.vn-cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.vn-cookie-accept {
  background: var(--brown-mid);
  color: white;
  border: none;
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.vn-cookie-accept:hover { background: var(--brown-dark); }
.vn-cookie-decline {
  background: transparent;
  color: var(--ink-muted);
  border: 1px solid rgba(155,123,58,0.3);
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, color 0.2s;
}
.vn-cookie-decline:hover {
  border-color: var(--ink-muted);
  color: var(--parchment2);
}

@media (max-width: 600px) {
  .vn-cookie-banner { bottom: 0; border-radius: 12px 12px 0 0; left: 0; transform: translateY(120%); width: 100%; max-width: 100%; }
  .vn-cookie-banner.visible { transform: translateY(0); }
  .vn-cookie-actions { flex-direction: column; }
}

/* ─────────────────────────────────────────────────────────────
   11. NEWS-POPUP (Floating Balloon)
───────────────────────────────────────────────────────────── */

/* Anker — fixiert oben links; Ballon steigt von unten auf */
.vn-popup-anchor {
  position: fixed;
  top: 3rem;
  left: 2.5rem;
  z-index: 7000;
  pointer-events: none;
}

/* Ballon-Wrapper: steigt auf, schaukelt dann sanft */
.vn-popup-bubble {
  pointer-events: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation:
    vn-balloon-rise  2.4s cubic-bezier(0.15, 0.85, 0.35, 1.08) forwards,
    vn-balloon-float 4.5s ease-in-out 2.4s infinite;
  cursor: pointer;
}

@keyframes vn-balloon-rise {
  from { transform: translateY(110vh); }
  82%  { transform: translateY(-14px); }
  to   { transform: translateY(0); }
}

@keyframes vn-balloon-float {
  0%,100% { transform: translateY(0)    rotate(0deg);    }
  28%     { transform: translateY(-9px) rotate(1.8deg);  }
  65%     { transform: translateY(-5px) rotate(-1.2deg); }
}

/* Der runde Ballon */
.vn-popup-btn {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 28%,
    #D4A86A 0%,
    var(--brown-mid) 58%,
    var(--brown-dark) 100%);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(92,61,17,0.45),
    inset 0 -5px 12px rgba(0,0,0,0.18),
    inset 4px 4px 10px rgba(255,255,255,0.12);
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  padding: 0.4rem;
  text-align: center;
}
.vn-popup-btn:hover {
  box-shadow:
    0 12px 40px rgba(92,61,17,0.55),
    inset 0 -5px 12px rgba(0,0,0,0.22),
    inset 4px 4px 10px rgba(255,255,255,0.12);
  transform: scale(1.06);
}

/* Ballon-Knoten am unteren Ende */
.vn-popup-btn::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 11px;
  background: var(--brown-mid);
  border-radius: 50% 50% 55% 55% / 45% 45% 55% 55%;
  transition: background 0.2s;
}
.vn-popup-btn:hover::after { background: var(--brown-dark); }

/* Emoji / Icon oben */
.vn-popup-emoji {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

/* Beschriftung */
.vn-popup-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 72px;
  word-break: break-word;
  hyphens: auto;
}

/* Schnur / Faden unter dem Ballon */
.vn-popup-string {
  display: block;
  width: 22px;
  height: 70px;
  margin-top: 0;
  opacity: 0.75;
  flex-shrink: 0;
}

/* Roter Puls-Punkt oben rechts */
.vn-popup-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 11px;
  height: 11px;
  background: #D04040;
  border-radius: 50%;
  border: 2px solid white;
  animation: vn-pulse 2s ease-in-out infinite;
}
@keyframes vn-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}

/* ── Modal das aufgeht beim Klick ── */
.vn-popup-modal {
  position: fixed;
  inset: 0;
  z-index: 7500;
  background: rgba(28,18,8,0.65);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem 1rem 7rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.vn-popup-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.vn-popup-card {
  background: var(--parchment);
  max-width: 340px;
  width: 100%;
  padding: 1.6rem 1.8rem;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(28,18,8,0.22);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34,1.26,0.64,1);
  position: relative;
}
.vn-popup-modal.open .vn-popup-card {
  transform: translateY(0) scale(1);
}
.vn-popup-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: var(--parchment2);
  border: none;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: background 0.2s;
}
.vn-popup-close:hover { background: var(--divider); }
.vn-popup-card-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 0.5rem;
}
.vn-popup-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.vn-popup-card-text {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.vn-popup-card-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.vn-popup-card-link:hover { color: var(--brown-dark); border-color: var(--brown-mid); }
.vn-popup-dismiss {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  padding: 0;
  text-decoration: underline;
}
.vn-popup-dismiss:hover { color: var(--ink); }

@media (max-width: 600px) {
  .vn-popup-anchor { top: 1.5rem; left: 1.2rem; }
  .vn-popup-btn { width: 80px; height: 80px; }
  .vn-popup-emoji { font-size: 1.45rem; }
  .vn-popup-modal { padding: 1rem 1rem 6rem 1rem; }
  .vn-popup-card { max-width: 100%; }
}

/* ─────────────────────────────────────────────────────────────
   12. RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .filter-bar  { padding: 1rem 1.5rem; }
  .section-header { padding: 0 1.2rem 0.8rem; }
}

@media (max-width: 600px) {
  .filter-bar { padding: 0.8rem 1rem; }
}

/* ─────────────────────────────────────────────────────────────
   13. SEITEN-KOMPONENTEN (Blog, Notizen, Galerie, Reisen)
───────────────────────────────────────────────────────────── */

/* ── Page Hero (Standard) ── */
.page-hero {
  padding: 5rem 5rem 3rem;
  border-bottom: 1px solid var(--divider);
  max-width: 900px;
}

/* ── Dark Hero (global, alle Seiten identisch) ── */
/* Fixe Farbe #1C1208 damit der Hero in Light- UND Dark-Mode immer dunkel ist */
.dark-hero,
.series-hero {
  background: #1C1208;
  color: #F4EDD8;
  padding: 4rem 5rem 3.5rem;
  border-bottom: 3px solid #9B7B3A;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dark-hero .page-eyebrow,
.dark-hero .eyebrow,
.series-hero .page-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: #9B7B3A; margin-bottom: 0.8rem;
}
.dark-hero h1,
.series-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 400; line-height: 1.2; color: #F4EDD8; margin-bottom: 0;
}
.dark-hero h1 em,
.series-hero h1 em { font-style: italic; color: #9B7B3A; }
.dark-hero .page-sub,
.dark-hero p,
.series-hero p {
  margin-top: 0.8rem; font-size: 0.95rem;
  color: #9B8A68; line-height: 1.7;
}
@media (max-width: 900px) {
  .dark-hero, .series-hero { padding: 3rem 1.5rem 2.5rem; min-height: 160px; }
}
.page-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ── Article / Content Grid ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  padding: 2rem;
  background: var(--beige-light);
}

/* ── Article Card ── */
.article-card {
  border: 1px solid var(--divider);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  background: var(--parchment);
}
.article-card:hover {
  background: var(--beige-light);
  border-color: var(--brown-mid);
  box-shadow: 0 6px 24px rgba(92,61,17,0.11);
}
.article-card-body { padding: 1.4rem 1.6rem 1.8rem; }

/* ── Card Image ── */
.card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--parchment2);
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article-card:hover .card-img img { transform: scale(1.03); }

/* ── Card Meta / Eyebrow ── */
.card-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-mid);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.card-teaser {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 0.8rem;
}

/* ── Article More Link ── */
.article-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
  font-weight: 500;
  margin-top: 1rem;
}
.article-more::after { content: '→'; transition: transform 0.2s; }
.article-card:hover .article-more::after { transform: translateX(4px); }

/* ── Empty State ── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--ink-muted);
}
.empty-state .empty-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }

/* ── Modal Overlay (Fullscreen) ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(28,18,8,0.88);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.open,
.modal-overlay.active { display: block; }

.modal-sheet {
  background: var(--parchment);
  max-width: 800px;
  margin: 2.5rem auto 5rem;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(28,18,8,0.22);
}

/* ── Modal Close Button (rund) ── */
.modal-close-round {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  background: rgba(28,18,8,0.55);
  color: var(--parchment);
  border: none;
  width: 2.2rem; height: 2.2rem;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.2s;
}
.modal-close-round:hover { background: rgba(28,18,8,0.85); }

/* ── Image Fullscreen Viewer ── */
.img-viewer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,6,2,0.95);
  align-items: center;
  justify-content: center;
}
.img-viewer.open { display: flex; }
.img-viewer img {
  max-width: 94vw;
  max-height: 94vh;
  object-fit: contain;
  display: block;
}
.img-viewer-close {
  position: fixed;
  top: 1.2rem; right: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 2.2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  line-height: 1;
}
.img-viewer-close:hover { color: white; }

/* ── Responsive: Seiten-Komponenten ── */
@media (max-width: 1000px) {
  .article-grid { grid-template-columns: 1fr 1fr; padding: 1.2rem; gap: 1rem; }
}
@media (max-width: 900px) {
  .page-hero { padding: 3rem 1.5rem 2rem; }
}
@media (max-width: 640px) {
  .article-grid { grid-template-columns: 1fr; padding: 1rem; }
}
