/* =============================================
   MIANDMO – MAIN CSS  (Editorial Design)
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg) !important;
  color: var(--color-text) !important;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Fonts nur auf Theme-Elemente – Elementor-Bereiche bleiben frei */
h1.hero-title, .hero-featured__title,
.a-card__title,
.page-hero__title,
.about-text__title,
.lesung-card__title,
.lh-card__title,
.lesungen-highlight__title,
.editorial-quote blockquote,
.section-rule__label {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
}

.hero-label, .hero-sub,
.a-card__excerpt, .a-card__cat, .a-card__date, .a-card__read,
.page-hero__label, .page-hero__desc,
.about-text__label, .about-text__body,
.cat-bar__item, .cat-bar__dropdown-toggle,
.nav-cta, .btn-primary, .btn-ghost, .btn-gold,
.footer-col, .footer-bottom {
  font-family: 'Inter', system-ui, sans-serif !important;
}

.about-text__sig {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ─────────────────────────────────────────────
   ZODIAC HINTERGRUND
───────────────────────────────────────────── */
.zodiac-bg {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: max(100vw, 100vh);
  height: max(100vw, 100vh);
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

/* Alle Seiteninhalte über dem Hintergrund */
.site-header,
.site-main,
.site-footer { position: relative; z-index: 1; }

/* ─────────────────────────────────────────────
   HEADER & NAVIGATION
───────────────────────────────────────────── */
.site-header {
  height: var(--nav-height);
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.site-logo { justify-self: start; display: flex; align-items: center; }
.site-logo img { height: 48px; width: auto; }

/* Centered Nav */
.primary-nav { justify-self: center; }
.primary-nav > ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li.current-menu-item > a,
.primary-nav > ul > li.current-menu-ancestor > a {
  color: var(--color-text);
  background: var(--color-bg-alt);
}

/* Dropdown-Pfeil via CSS */
.primary-nav > ul > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.45;
  transition: transform var(--transition);
  margin-left: 2px;
}
.primary-nav > ul > li:hover > a::after { transform: rotate(180deg); }

/* Dropdown (sanft einfahrend) */
.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 99;
}
.primary-nav > ul > li:hover > .sub-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.primary-nav .sub-menu li a {
  display: block;
  padding: 11px 18px;
  font-size: 12.5px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), padding-left var(--transition);
}
.primary-nav .sub-menu li:last-child a { border-bottom: none; }
.primary-nav .sub-menu li a:hover {
  background: var(--color-bg-alt);
  padding-left: 24px;
  color: var(--color-gold-dark);
}

/* Nested sub-menu */
.primary-nav .sub-menu .sub-menu {
  top: 0; left: 100%;
  transform: translateX(0) translateY(-6px);
}
.primary-nav .sub-menu li:hover > .sub-menu {
  opacity: 1;
  transform: translateX(0) translateY(0);
  pointer-events: auto;
}

/* Rechte Header-Spalte: CTA + Hamburger */
.header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  display: inline-block;
  padding: 8px 18px;
  background: var(--color-gold);
  color: #1A1A1A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--color-gold-dark); color: #1A1A1A; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────
   MOBILE NAV
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; padding: 0 24px; }
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 199;
    justify-self: auto;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav > ul { flex-direction: column; gap: 0; }
  .primary-nav > ul > li > a { height: auto; line-height: 1.5; padding: 14px 24px; }
  .primary-nav .sub-menu {
    position: static;
    opacity: 1; pointer-events: auto;
    transform: none;
    border: none;
    border-left: 3px solid var(--color-gold);
    box-shadow: none;
    margin-left: 24px;
    background: var(--color-bg-alt);
  }
  .nav-cta { display: none; }
}

/* ─────────────────────────────────────────────
   KATEGORIE-LEISTE (Blog-Seiten)
───────────────────────────────────────────── */
.cat-bar {
  height: 56px;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.cat-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: stretch;
}
.cat-bar__item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.cat-bar__item:hover { color: var(--color-text); }
.cat-bar__item.current { color: var(--color-gold-dark); border-bottom-color: var(--color-gold); }
.cat-bar__divider { width: 1px; background: var(--color-border); margin: 14px 0; flex-shrink: 0; }

/* Cat-bar Dropdown */
.cat-bar__dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}
.cat-bar__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  height: 100%;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.cat-bar__dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform 0.22s ease;
  flex-shrink: 0;
}
.cat-bar__dropdown:hover .cat-bar__dropdown-toggle,
.cat-bar__dropdown-toggle:focus {
  color: var(--color-text);
  outline: none;
}
.cat-bar__dropdown:hover .cat-bar__dropdown-toggle::after {
  transform: rotate(180deg);
}

.cat-bar__submenu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
}
.cat-bar__dropdown:hover .cat-bar__submenu,
.cat-bar__dropdown:focus-within .cat-bar__submenu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cat-bar__submenu li a {
  display: block;
  padding: 13px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.cat-bar__submenu li:last-child a { border-bottom: none; }
.cat-bar__submenu li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-gold-dark);
  padding-left: 26px;
}

/* ─────────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────────── */
.page-hero {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
  padding: 60px 40px 48px;
}
.page-hero__inner { max-width: var(--max-width); margin: 0 auto; }
.page-hero__label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--color-text);
}
.page-hero__desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* Gold Divider */
.gold-divider { width: 40px; height: 1px; background: var(--color-gold); margin: 16px 0; }
.gold-divider--center { margin: 16px auto; }

/* Back-Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.back-link:hover { color: var(--color-gold-dark); }

/* Section Rule */
.section-rule {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 40px 0;
}
.section-rule__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}
.section-rule__line { flex: 1; height: 1px; background: var(--color-border); }

/* ─────────────────────────────────────────────
   HERO (Startseite)
───────────────────────────────────────────── */
.hero { border-bottom: 1px solid var(--color-border); background: var(--color-white); }
.hero-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
}
.hero-left {
  padding: 72px 60px 72px 0;
  border-right: 1px solid var(--color-border);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--color-gold);
  margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
}
.hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--color-gold); }
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 300; line-height: 1.08; color: var(--color-text); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--color-gold-dark); }
.hero-sub {
  font-size: 1rem; color: var(--color-text-muted); line-height: 1.8;
  max-width: 420px; margin-bottom: 36px;
  border-left: 2px solid var(--color-gold); padding-left: 18px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  padding: 12px 28px; background: var(--color-text); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; transition: background var(--transition); display: inline-block;
}
.btn-primary:hover { background: var(--color-gold-dark); color: #fff; }
.btn-ghost {
  padding: 12px 28px; border: 1px solid var(--color-border);
  color: var(--color-text-muted); font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px; transition: all var(--transition); display: inline-block;
}
.btn-ghost:hover { border-color: var(--color-gold); color: var(--color-gold-dark); }
.hero-right {
  padding: 40px 0 40px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-featured { display: block; cursor: pointer; }
.hero-featured__image {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(145deg, #EDE9E0 0%, #D6D0C4 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; overflow: hidden;
}
.hero-featured__image img { width: 100%; height: 100%; object-fit: cover; }
.hero-featured__image-text {
  font-family: 'Noto Sans Symbols 2','Segoe UI Symbol',serif;
  font-size: 4rem; color: var(--color-gold); opacity: 0.25;
  font-variant-emoji: text;
}
.hero-featured__cat {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-gold); margin-bottom: 8px;
}
.hero-featured__title {
  font-family: var(--font-serif); font-size: 1.7rem; line-height: 1.25;
  margin-bottom: 10px; color: var(--color-text); transition: color var(--transition);
}
.hero-featured:hover .hero-featured__title { color: var(--color-gold-dark); }
.hero-featured__meta { font-size: 11px; color: var(--color-text-muted); }

/* ─────────────────────────────────────────────
   ÜBER MICH (Startseite)
───────────────────────────────────────────── */
.about-section { border-top: 1px solid var(--color-border); background: var(--color-white); }
.about-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center;
}
.about-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #EDE9E1 0%, #D8D2C6 100%);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
}
.about-photo__placeholder {
  font-family: var(--font-serif); font-size: 7rem; color: var(--color-gold);
  opacity: 0.12; line-height: 1; padding-bottom: 20px;
}
.about-photo__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-photo__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.35));
  padding: 32px 20px 20px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); text-align: center;
}
.about-text__label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--color-gold);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.about-text__label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--color-gold); }
.about-text__title {
  font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 24px;
}
.about-text__title em { font-style: italic; color: var(--color-gold-dark); }
.about-text__body { font-size: 15px; color: var(--color-text-muted); line-height: 1.85; margin-bottom: 20px; }
.about-text__sig { font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; margin-top: 28px; }

/* ─────────────────────────────────────────────
   LESUNGEN HIGHLIGHT (Startseite, dunkler Block)
───────────────────────────────────────────── */
.lesungen-highlight { background: #111; color: rgba(255,255,255,0.85); border-top: 3px solid var(--color-gold); }
.lesungen-highlight__inner { max-width: var(--max-width); margin: 0 auto; padding: 72px 40px; }
.lesungen-highlight__head {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 24px; margin-bottom: 48px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lesungen-highlight__label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--color-gold); margin-bottom: 14px;
}
.lesungen-highlight__title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15; color: #fff;
}
.lesungen-highlight__title em { font-style: italic; color: var(--color-gold-light); }
.lesungen-highlight__cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08);
}
.lh-card {
  padding: 36px 28px; background: #111;
  display: flex; flex-direction: column;
  transition: background var(--transition); cursor: pointer;
}
.lh-card:hover { background: #1A1A1A; }
.lh-card__num {
  font-family: var(--font-serif); font-size: 3.5rem;
  color: var(--color-gold); opacity: 0.25; line-height: 1; margin-bottom: 18px;
}
.lh-card__title { font-family: var(--font-serif); font-size: 1.45rem; color: #fff; line-height: 1.3; margin-bottom: 12px; }
.lh-card__desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; flex: 1; margin-bottom: 24px; }
.lh-card__link {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-gold);
  display: flex; align-items: center; gap: 6px; transition: gap var(--transition);
}
.lh-card:hover .lh-card__link { gap: 10px; }

/* ─────────────────────────────────────────────
   BLOG ARCHIV – Editorial Grid
───────────────────────────────────────────── */
.blog-section { padding: 28px 0 80px; }
.blog-outer { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

/* Großes Featured + 2 kleine */
.editorial-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-bottom: 1px;
}
.editorial-grid__right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  background: var(--color-border);
  gap: 1px;
}

/* Standard 3-Spalten */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  margin-top: 1px;
}

/* Artikel-Karte */
.a-card {
  background: var(--color-white);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background var(--transition);
}
.a-card:hover { background: #FEFEFE; }
.a-card--featured { padding: 36px; }
.a-card--featured .a-card__title { font-size: 2rem; }
.a-card--small .a-card__title { font-size: 1.15rem; }

.a-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, #E2DDD5 100%);
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.a-card--small .a-card__thumb { aspect-ratio: 3/2; margin-bottom: 14px; }

.a-card__meta-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.a-card__cat {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--color-gold);
}
.a-card__dot { width: 3px; height: 3px; background: var(--color-border); border-radius: 50%; }
.a-card__date { font-size: 10px; color: var(--color-text-muted); }
.a-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.22;
  color: var(--color-text);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.a-card:hover .a-card__title { color: var(--color-gold-dark); }
.a-card__title a { color: inherit; }
.a-card__excerpt { font-size: 13px; color: var(--color-text-muted); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.a-card--small .a-card__excerpt { display: none; }
.a-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}
.a-card__read {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--color-gold-dark); text-transform: uppercase;
}
.a-card__read::after { content: ' →'; }

/* Fallback: Standard post-card (für einfachere Archive) */
.post-card {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post-card__image { aspect-ratio: 16/9; overflow: hidden; background: var(--color-bg-alt); }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.post-card__category {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-gold); margin-bottom: 10px;
}
.post-card__title { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400; line-height: 1.3; margin-bottom: 12px; }
.post-card__title a { color: var(--color-text); }
.post-card__title a:hover { color: var(--color-gold-dark); }
.post-card__excerpt { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.7; flex: 1; }
.post-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--color-border);
}
.post-card__date { font-size: 12px; color: var(--color-text-muted); }
.read-more { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: var(--color-gold-dark); }
.read-more:hover { color: var(--color-gold); }
.no-posts { text-align: center; padding: 80px 24px; color: var(--color-text-muted); font-family: var(--font-serif); font-size: 1.4rem; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 24px; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--color-border);
  font-size: 14px; color: var(--color-text); background: var(--color-white);
  transition: all var(--transition);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--color-gold); border-color: var(--color-gold); color: var(--color-white);
}

/* Editorial Quote */
.editorial-quote {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 64px 40px;
  text-align: center;
  background: var(--color-white);
}
.editorial-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text);
  max-width: 820px;
  margin: 0 auto 16px;
  line-height: 1.4;
}
.editorial-quote cite {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-gold); font-style: normal;
}

/* ─────────────────────────────────────────────
   SINGLE POST
───────────────────────────────────────────── */
.single-post { max-width: 760px; margin: 0 auto; padding: 64px 40px; }
.single-post__header { margin-bottom: 40px; }
.single-post__category {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--color-gold); margin-bottom: 12px;
}
.single-post__title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
.single-post__meta { font-size: 13px; color: var(--color-text-muted); display: flex; gap: 20px; }
.single-post__thumbnail { margin: 32px 0; overflow: hidden; }
.single-post__thumbnail img { width: 100%; height: auto; }
.single-post__content { font-size: 1.05rem; line-height: 1.85; }
.single-post__content p { margin-bottom: 1.5em; }
.single-post__content h2 { font-size: 1.8rem; margin: 2em 0 0.75em; }
.single-post__content h3 { font-size: 1.4rem; margin: 1.5em 0 0.5em; }
.single-post__content ul, .single-post__content ol { margin: 1em 0 1em 1.5em; }
.single-post__content li { margin-bottom: 0.4em; }
.single-post__content blockquote {
  border-left: 2px solid var(--color-gold);
  padding: 12px 20px; margin: 1.5em 0;
  font-family: var(--font-serif); font-size: 1.2rem; font-style: italic;
  color: var(--color-text-muted); background: var(--color-bg-alt);
}

/* ─────────────────────────────────────────────
   LESUNGEN ÜBERSICHT
───────────────────────────────────────────── */
.lesungen-section { max-width: var(--max-width); margin: 0 auto; padding: 48px 40px 80px; }
.lesungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
.lesung-card {
  background: var(--color-white);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: background var(--transition);
}
.lesung-card:hover { background: var(--color-bg); }
.lesung-card__number {
  font-family: var(--font-serif); font-size: 4rem; color: var(--color-gold);
  opacity: 0.15; line-height: 1; margin-bottom: 20px;
}
.lesung-card__title { font-family: var(--font-serif); font-size: 1.55rem; margin-bottom: 14px; line-height: 1.3; }
.lesung-card__desc { font-size: 13.5px; color: var(--color-text-muted); line-height: 1.75; flex: 1; margin-bottom: 28px; }

.btn-gold {
  display: inline-block; padding: 12px 24px;
  background: var(--color-gold); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: background var(--transition);
  text-align: center; border: none;
}
.btn-gold:hover { background: var(--color-gold-dark); color: #fff; }

.btn-outline {
  display: inline-block; padding: 12px 24px;
  border: 1px solid var(--color-gold); color: var(--color-gold-dark);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; transition: all var(--transition); text-align: center;
}
.btn-outline:hover { background: var(--color-gold); color: #fff; }

/* ─────────────────────────────────────────────
   LESUNG DETAIL
───────────────────────────────────────────── */
.lesung-detail { max-width: 860px; margin: 0 auto; padding: 64px 40px; }
.lesung-detail__content { font-size: 1.05rem; line-height: 1.85; margin-bottom: 60px; }
.lesung-detail__content p { margin-bottom: 1.5em; }
.lesung-detail__content h3 { font-family: var(--font-serif); font-size: 1.65rem; margin: 2em 0 0.6em; }
.lesung-detail__content blockquote {
  border-left: 2px solid var(--color-gold); padding: 12px 20px; margin: 1.5em 0;
  font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: var(--color-text-muted);
}

/* Calendly */
.calendly-section { border-top: 1px solid var(--color-border); padding-top: 56px; margin-top: 56px; }
.calendly-section__title { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; margin-bottom: 8px; }
.calendly-section__subtitle { font-size: 13px; color: var(--color-text-muted); margin-bottom: 36px; }
.calendly-inline-widget { min-width: 320px; height: 700px; border: 1px solid var(--color-border); }
.calendly-placeholder {
  padding: 60px 40px; text-align: center;
  background: var(--color-bg-alt); border: 2px dashed var(--color-border);
}
.calendly-placeholder p { color: var(--color-text-muted); font-size: 0.9rem; margin-top: 12px; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer { background: #111; color: rgba(255,255,255,0.6); }
.footer-top {
  max-width: var(--max-width); margin: 0 auto; padding: 64px 40px 48px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand__logo img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand__text { font-size: 13px; line-height: 1.8; max-width: 260px; }
.footer-col__title {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.footer-col__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col__links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col__links a:hover { color: var(--color-gold-light); }
.footer-nl__title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: #fff; margin-bottom: 6px; }
.footer-nl__sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.nl-row { display: flex; gap: 8px; }
.nl-input {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 13px; font-family: var(--font-sans);
  outline: none; border-radius: 2px; transition: border-color var(--transition);
}
.nl-input::placeholder { color: rgba(255,255,255,0.3); }
.nl-input:focus { border-color: var(--color-gold); }
.nl-btn {
  padding: 10px 18px; background: var(--color-gold); color: #fff;
  border: none; font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px;
  transition: background var(--transition);
}
.nl-btn:hover { background: var(--color-gold-light); }

/* MailerLite Override */
.footer-newsletter input[type="email"] {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 13px; font-family: var(--font-sans);
  outline: none; transition: border-color var(--transition);
}
.footer-newsletter input[type="email"]:focus { border-color: var(--color-gold); }
.footer-newsletter button, .footer-newsletter input[type="submit"] {
  padding: 10px 18px; background: var(--color-gold); color: #fff; border: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background var(--transition);
}
.footer-newsletter button:hover { background: var(--color-gold-light); }

.footer-bottom {
  max-width: var(--max-width); margin: 0 auto; padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 11px; color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }
.footer-nav ul { display: flex; list-style: none; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }
.footer-nav a:hover { color: var(--color-gold-light); }

/* ─────────────────────────────────────────────
   404
───────────────────────────────────────────── */
.page-404 { text-align: center; padding: 120px 24px; }
.page-404__number { font-family: var(--font-serif); font-size: clamp(6rem,20vw,14rem); color: var(--color-gold); opacity: 0.15; line-height: 1; }
.page-404__title { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 16px; }
.page-404__text { color: var(--color-text-muted); margin-bottom: 32px; }

/* ─────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.elementor-page .site-main { padding: 0; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; padding: 48px 24px 32px; }
  .hero-right { padding: 0 24px 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px; }
  .lesungen-highlight__cards { grid-template-columns: 1fr; }
  .lesungen-highlight__head { grid-template-columns: 1fr; }
  .lesungen-highlight__inner { padding: 48px 24px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-grid__right { grid-template-rows: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .lesungen-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .blog-outer, .lesungen-section, .single-post, .lesung-detail { padding-left: 24px; padding-right: 24px; }
  .page-hero { padding: 48px 24px 36px; }
  .section-rule { padding: 24px 24px 0; }
  .cat-bar__inner { padding: 0 16px; overflow-x: auto; }
}

@media (max-width: 600px) {
  .nl-row { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
