/* =============================================================================
   ZEITSPUREN — Design-System & Basis
   ============================================================================= */

:root {
  /* Light Section */
  --light-bg:        #f5f0e8;
  --light-bg-card:   #ffffff;
  --light-text:      #1a1713;
  --light-text-2:    #4a4035;
  --light-border:    rgba(0, 0, 0, 0.10);

  /* Hintergründe */
  --bg:          #0c0b09;
  --bg-2:        #141210;
  --bg-3:        #1d1a13;
  --bg-4:        #27231a;

  /* Gold-Palette */
  --gold:        #c9a84c;
  --gold-bright: #e2c47a;
  --gold-dim:    #8a6f2e;
  --gold-ghost:  rgba(201, 168, 76, 0.10);
  --gold-border: rgba(201, 168, 76, 0.22);

  /* Textfarben */
  --cream:       #f0ead8;
  --cream-2:     #c8bfa8;
  --cream-3:     #8a8070;
  --cream-4:     #4a4538;

  /* Typ-Farben */
  --typ-ereignis: #c9a84c;
  --typ-geburt:   #7ab8a8;
  --typ-tod:      #b07060;

  /* UI */
  --border:      #252018;
  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,.55);
  --transition:  0.2s ease;

  /* Schriften */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container:   1200px;
  --gap:         2rem;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-bright); }
ul, ol { list-style: none; }

/* ─── Typografie ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--cream);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

.zs-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.zs-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.zs-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--gap);
  align-items: start;
}

/* ─── Light Section ──────────────────────────────────────────────────────── */
.zs-light-section { background: var(--light-bg); }

.zs-light-section .zs-filter-bar { background: var(--light-bg-card); border-bottom: 1px solid var(--light-border); }
.zs-light-section .zs-filter-bar select,
.zs-light-section .zs-filter-bar input[type="text"],
.zs-light-section .zs-filter-bar input[type="number"] {
  background-color: var(--light-bg-card);
  background-image: none;
  border-color: rgba(0,0,0,.15);
  color: var(--light-text);
}
.zs-light-section .zs-filter-bar select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a6f2e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 12px 8px;
}
.zs-light-section .zs-filter-bar__search input { background: var(--light-bg); border-color: rgba(0,0,0,.15); color: var(--light-text); }
.zs-light-section .zs-filter-bar__search input::placeholder { color: var(--light-text-2); }
.zs-light-section .zs-btn-reset { border-color: var(--light-border); color: var(--light-text-2); }
.zs-light-section .zs-btn-reset:hover { border-color: var(--gold-dim); color: var(--gold-dim); }

.zs-light-section .zs-country-nav { border-bottom: 1px solid var(--light-border); }
.zs-light-section .zs-flag-btn { background: var(--light-bg-card); border-color: var(--light-border); color: var(--light-text); }
.zs-light-section .zs-flag-btn:hover,
.zs-light-section .zs-flag-btn.is-active { border-color: var(--gold); background: rgba(201,168,76,.08); color: var(--gold-dim); }
.zs-light-section .zs-day-nav__btn { background: var(--light-bg-card); border-color: var(--light-border); color: var(--light-text); }
.zs-light-section .zs-day-nav__btn:hover { border-color: var(--gold); color: var(--gold-dim); }
.zs-light-section .zs-day-nav__today { color: var(--gold-dim); border-color: var(--gold-border); }

.zs-light-section .zs-calendar { border-bottom: 1px solid var(--light-border); }
.zs-light-section .zs-calendar-toggle { color: var(--light-text-2); }
.zs-light-section .zs-calendar-toggle:hover { color: var(--gold-dim); }
.zs-light-section .zs-cal-day { background: var(--light-bg-card); border-color: var(--light-border); color: var(--light-text); }
.zs-light-section .zs-cal-day:hover { border-color: var(--gold); color: var(--gold-dim); }
.zs-light-section .zs-cal-day.is-today { border-color: var(--gold-border); color: var(--gold-dim); background: rgba(201,168,76,.08); }
.zs-light-section .zs-cal-day.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }

.zs-light-section .zs-main { background: var(--light-bg); }
.zs-light-section .zs-results-count { color: var(--light-text-2); }

.zs-light-section .zs-highlights { background: var(--light-bg-card); border-color: var(--gold-border); }
.zs-light-section .zs-highlights__header { border-bottom-color: var(--gold-border); }
.zs-light-section .zs-highlight-item { border-bottom-color: var(--light-border); }
.zs-light-section .zs-highlight-item:hover { background: rgba(201,168,76,.05); }
.zs-light-section .zs-highlight-item__title { color: var(--light-text); }
.zs-light-section .zs-highlight-item__desc { color: var(--light-text-2); }

.zs-light-section .zs-entry-card { background: var(--light-bg-card); border-color: var(--light-border); border-left-color: var(--light-border); }
.zs-light-section .zs-entry-card:hover { background: #faf8f3; border-left-color: var(--gold); }
.zs-light-section .zs-entry-card--ereignis { border-left-color: rgba(201,168,76,.4); }
.zs-light-section .zs-entry-card--geburt   { border-left-color: rgba(122,184,168,.4); }
.zs-light-section .zs-entry-card--tod      { border-left-color: rgba(176,112,96,.4); }
.zs-light-section .zs-entry-card__title { color: var(--light-text); }
.zs-light-section .zs-entry-card__title a { color: var(--light-text); }
.zs-light-section .zs-entry-card__desc { color: var(--light-text-2); }

.zs-light-section .zs-book-widget { background: var(--light-bg-card); }
.zs-light-section .zs-book-widget__title { color: var(--light-text); }
.zs-light-section .zs-book-widget__desc { color: var(--light-text-2); }
.zs-light-section .zs-widget { background: var(--light-bg-card); border-color: var(--light-border); }
.zs-light-section .zs-widget__title { color: var(--light-text-2); border-bottom-color: var(--light-border); }

.zs-light-section .facetwp-page { background: var(--light-bg-card); border-color: var(--light-border); color: var(--light-text); }
.zs-light-section .facetwp-page:hover { border-color: var(--gold); color: var(--gold-dim); }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.zs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 11, 9, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
}

.zs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.zs-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.zs-logo span { color: var(--gold); }

.zs-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.zs-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-2);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.zs-nav a:hover,
.zs-nav a.active {
  color: var(--gold);
  background: var(--gold-ghost);
}

.zs-header__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 0.5rem;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.zs-hero {
  position: relative;
  padding: var(--hero-padding-top, 5rem) 0 var(--hero-padding-bottom, 4rem);
  background: radial-gradient(ellipse 80% 60% at 50% -10%, #2a2010 0%, var(--bg) 65%);
  text-align: center;
  overflow: hidden;
}

.zs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Kalender-Badge */
.zs-date-box {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  border: 3px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
  min-width: var(--date-box-width, 160px);
  margin-bottom: 1.75rem;
  box-shadow:
    0 0 0 1px rgba(201,168,76,.25),
    0 0 40px rgba(201,168,76,.20),
    0 20px 60px rgba(0,0,0,.75);
}

.zs-date-box__month {
  background: linear-gradient(135deg, #e8c96a 0%, var(--gold) 50%, #a0781e 100%);
  color: #1a1200;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  text-align: center;
}

.zs-date-box__day {
  background: linear-gradient(180deg, #1e1a0e 0%, #0c0b09 100%);
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  padding: 0.35rem 2rem 0.75rem;
  text-align: center;
  letter-spacing: -0.03em;
  text-shadow:
    0 0 20px rgba(201,168,76,.55),
    0 0 60px rgba(201,168,76,.25);
}

.zs-hero__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

/* Alt-Badge (entfernt, aber Kompatibilität erhalten) */
.zs-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  background: var(--gold-ghost);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.zs-hero__badge::before,
.zs-hero__badge::after { content: '✦'; opacity: 0.6; }

.zs-hero__date {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.zs-hero__date em {
  font-style: italic;
  color: var(--gold);
}

.zs-hero__sub {
  font-size: 1.05rem;
  color: var(--cream-2);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.zs-hero__stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.zs-hero__stat { text-align: center; }
.zs-hero__stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.zs-hero__stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* ─── Goldene Trennlinie ─────────────────────────────────────────────────── */
.zs-divider {
  border: none;
  border-top: 1px solid var(--gold-border);
  margin: 2rem 0;
}

/* ─── Filter-Bar ─────────────────────────────────────────────────────────── */
.zs-filter-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}

.zs-filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.zs-filter-bar select,
.zs-filter-bar input[type="text"],
.zs-filter-bar input[type="number"] {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.zs-filter-bar select:focus,
.zs-filter-bar input:focus { border-color: var(--gold-dim); }

.zs-filter-bar select { padding-right: 2rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.6rem center; }

.zs-filter-bar input[type="number"] { width: 90px; }

.zs-filter-bar__search { flex: 1; min-width: 160px; max-width: 260px; }

.zs-filter-bar__search input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  outline: none;
  transition: border-color var(--transition);
}

.zs-filter-bar__search input:focus { border-color: var(--gold-dim); }
.zs-filter-bar__search input::placeholder { color: var(--cream-3); }

.zs-btn-reset {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream-3);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.8rem;
  padding: 0.5rem 0.9rem;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.zs-btn-reset:hover { border-color: var(--gold-dim); color: var(--gold); }

/* ─── Länder + Tages-Navigation ──────────────────────────────────────────── */
.zs-country-nav {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.zs-country-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.zs-country-flags { display: flex; gap: 0.4rem; }

.zs-flag-btn {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream-2);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  transition: border-color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.zs-flag-btn .flag { font-size: 1.1rem; }
.zs-flag-btn:hover,
.zs-flag-btn.is-active { border-color: var(--gold-dim); background: var(--gold-ghost); color: var(--gold); }

.zs-day-nav { display: flex; align-items: center; gap: 0.5rem; }

.zs-day-nav__btn {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream-2);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  transition: border-color var(--transition), color var(--transition);
}
.zs-day-nav__btn:hover { border-color: var(--gold-dim); color: var(--gold); }

.zs-day-nav__today {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-color: var(--gold-border);
}

/* ─── Kalender ───────────────────────────────────────────────────────────── */
.zs-calendar { border-bottom: 1px solid var(--border); }

.zs-calendar-toggle {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem;
  transition: color var(--transition);
}
.zs-calendar-toggle:hover { color: var(--gold); }
.zs-calendar-toggle__icon { font-size: 0.6rem; }

.zs-calendar-wrapper {
  display: none;
  padding: 0.75rem 0 1rem;
}
.zs-calendar-wrapper.is-open { display: block; }

.zs-calendar-strip {
  display: flex;
  justify-content: var(--cal-align, center);
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0 1.5rem 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.15) transparent;
}
.zs-calendar-strip::-webkit-scrollbar { height: 4px; }
.zs-calendar-strip::-webkit-scrollbar-track { background: transparent; }
.zs-calendar-strip::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 2px; }

.zs-cal-day {
  flex-shrink: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream-2);
  cursor: pointer;
  font-family: var(--sans);
  padding: 0.4rem 0;
  text-align: center;
  width: 42px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.zs-cal-day__num { display: block; font-size: 0.95rem; font-weight: 600; }
.zs-cal-day:hover { border-color: var(--gold-dim); color: var(--gold); }
.zs-cal-day.is-today { border-color: var(--gold-border); color: var(--gold); background: var(--gold-ghost); }
.zs-cal-day.is-active { background: var(--gold); border-color: var(--gold); color: var(--bg); }

/* ─── Highlights-Box ─────────────────────────────────────────────────────── */
.zs-highlights {
  margin: 2rem 0;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  overflow: hidden;
}

.zs-highlights__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gold-border);
}

.zs-highlights__header::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}

.zs-highlights__title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.zs-highlights__list { padding: 0.5rem 0; }

.zs-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.zs-highlight-item:last-child { border-bottom: none; }
.zs-highlight-item:hover { background: var(--gold-ghost); }

.zs-highlight-item__year {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 60px;
}

.zs-highlight-item__content {}
.zs-highlight-item__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}
.zs-highlight-item__desc {
  font-size: 0.8rem;
  color: var(--cream-3);
  margin-top: 0.2rem;
  line-height: 1.5;
}

/* ─── Ergebnisliste & Entry Cards ────────────────────────────────────────── */
.zs-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.zs-results-count {
  font-size: 0.8rem;
  color: var(--cream-3);
  letter-spacing: 0.05em;
}

.zs-results-count strong { color: var(--gold); }

.zs-entry-list { display: flex; flex-direction: column; gap: 0.75rem; }

.zs-entry-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: pointer;
}
.zs-entry-card:hover { border-color: var(--gold-border); border-left-color: var(--gold); background: var(--bg-3); transform: translateX(2px); }

.zs-entry-card--ereignis { border-left-color: var(--typ-ereignis); }
.zs-entry-card--geburt   { border-left-color: var(--typ-geburt); }
.zs-entry-card--tod      { border-left-color: var(--typ-tod); }

.zs-entry-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.zs-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid;
}

.zs-badge--ereignis { color: var(--typ-ereignis); border-color: rgba(201,168,76,.3); background: rgba(201,168,76,.08); }
.zs-badge--geburt   { color: var(--typ-geburt);   border-color: rgba(122,184,168,.3); background: rgba(122,184,168,.08); }
.zs-badge--tod      { color: var(--typ-tod);       border-color: rgba(176,112,96,.3);  background: rgba(176,112,96,.08); }
.zs-badge--kategorie { color: var(--cream-3); border-color: var(--border); background: transparent; }

.zs-entry-card__year {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: auto;
}

.zs-entry-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.zs-entry-card__desc {
  font-size: 0.85rem;
  color: var(--cream-3);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.zs-entry-card__footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.zs-flag-small { font-size: 0.9rem; }

/* ─── Buchempfehlung Widget ──────────────────────────────────────────────── */
.zs-book-widget {
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.zs-book-widget__header {
  background: linear-gradient(135deg, var(--bg-4), var(--bg-3));
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gold-border);
}

.zs-book-widget__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.zs-book-widget__body {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  align-items: flex-start;
}

.zs-book-widget__cover {
  flex-shrink: 0;
  width: 70px;
  border-radius: 3px;
  box-shadow: 4px 4px 12px rgba(0,0,0,.5);
}

.zs-book-widget__info {}
.zs-book-widget__title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.zs-book-widget__year { font-size: 0.75rem; color: var(--gold); margin-bottom: 0.6rem; }
.zs-book-widget__desc { font-size: 0.78rem; color: var(--cream-3); line-height: 1.5; margin-bottom: 0.75rem; }

.zs-btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  border: none;
  border-radius: var(--radius);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  text-decoration: none;
  transition: background var(--transition);
}
.zs-btn-amazon:hover { background: var(--gold-bright); color: var(--bg); }

/* ─── AdSense / Widget ───────────────────────────────────────────────────── */
.zs-widget {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.zs-widget__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* ─── FacetWP Overrides ──────────────────────────────────────────────────── */
.facetwp-template { min-height: 300px; }

.facetwp-loading-overlay {
  background: rgba(12,11,9,.7) !important;
  backdrop-filter: blur(4px);
}

.facetwp-pager {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.facetwp-page {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream-2);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.facetwp-page:hover { border-color: var(--gold-dim); color: var(--gold); }
.facetwp-page.active { background: var(--gold); border-color: var(--gold); color: var(--bg); font-weight: 600; }
.facetwp-page.disabled { opacity: 0.3; pointer-events: none; }

/* ─── Main Content Bereich ───────────────────────────────────────────────── */
.zs-main { padding: 2rem 0 4rem; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.zs-footer {
  border-top: 1px solid var(--gold-border);
  background: var(--bg-2);
  padding: 3rem 0 1.5rem;
}

.zs-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.zs-footer__brand {}
.zs-footer__logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.75rem;
}
.zs-footer__logo span { color: var(--gold); }
.zs-footer__desc { font-size: 0.85rem; color: var(--cream-3); line-height: 1.65; max-width: 280px; }

.zs-footer__col-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.zs-footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.zs-footer__nav a { font-size: 0.85rem; color: var(--cream-3); transition: color var(--transition); }
.zs-footer__nav a:hover { color: var(--cream); }

.zs-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--cream-4);
}

.zs-footer__legal { display: flex; gap: 1.5rem; }
.zs-footer__legal a { color: var(--cream-4); }
.zs-footer__legal a:hover { color: var(--cream-2); }

/* ─── 404 Seite ──────────────────────────────────────────────────────────── */
.zs-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.zs-404__num {
  font-family: var(--serif);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -2rem;
}
.zs-404__title { font-size: 1.8rem; margin-bottom: 1rem; }
.zs-404__sub { color: var(--cream-3); margin-bottom: 2rem; }
.zs-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  border-radius: var(--radius);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  transition: background var(--transition);
}
.zs-btn-gold:hover { background: var(--gold-bright); color: var(--bg); }

/* ─── Animationen ────────────────────────────────────────────────────────── */
@keyframes zs-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.zs-entry-card { animation: zs-fade-in 0.25s ease both; }
.zs-entry-card:nth-child(1) { animation-delay: 0.02s; }
.zs-entry-card:nth-child(2) { animation-delay: 0.04s; }
.zs-entry-card:nth-child(3) { animation-delay: 0.06s; }
.zs-entry-card:nth-child(4) { animation-delay: 0.08s; }
.zs-entry-card:nth-child(5) { animation-delay: 0.10s; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .zs-layout { grid-template-columns: 1fr; }
  .zs-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .zs-header__toggle { display: flex; }
  .zs-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }
  .zs-nav.is-open { display: flex; }
  .zs-nav a { padding: 0.6rem 1rem; border-radius: var(--radius); }

  .zs-hero { padding: 3rem 0 2.5rem; }
  .zs-hero__stats { gap: 1.5rem; }

  .zs-filter-bar__inner { gap: 0.5rem; }
  .zs-filter-bar select,
  .zs-filter-bar input { font-size: 0.8rem; }
  .zs-filter-bar input[type="number"] { width: 72px; }
  .zs-filter-bar__search { max-width: 100%; width: 100%; }

  .zs-country-nav__inner { flex-direction: column; align-items: flex-start; }

  .zs-footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .zs-footer__desc { max-width: 100%; }
  .zs-footer__bottom { flex-direction: column; text-align: center; }
}
