/*
Theme Name:  TST Germany
Theme URI:   https://thesatanictemple.de
Author:      Jan F. Kennedy
Author URI:  https://janfkennedy.de
Description: Offizielles WordPress-Theme für The Satanic Temple Deutschland.
Version:     1.2.0
License:     GNU General Public License v2 or later
Text Domain: tst-germany
Tags:        dark, gothic, fullwidth, portfolio
*/

/* ═══════════════════════════════════════════════
   FONTS
═══════════════════════════════════════════════ */
@font-face {
  font-family: 'NewRocker';
  src: url('assets/NewRocker-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  /* Farben */
  --c-bg:           #080808;
  --c-surface:      #0f0f0f;
  --c-surface-2:    #161616;
  --c-surface-3:    #1d1d1d;
  --c-border:       #282828;
  --c-border-2:     #333;

  --c-red:          #8B1A1A;
  --c-red-mid:      #A52020;
  --c-red-bright:   #C0392B;
  --c-red-glow:     rgba(139, 26, 26, 0.15);

  --c-gold:         #b8985a;
  --c-gold-muted:   #8a7040;

  --c-text:         #c0c0c0;
  --c-text-muted:   #666;
  --c-heading:      #f0f0f0;
  --c-white:        #ffffff;

  /* Typografie */
  --f-display:  'NewRocker', 'Times New Roman', serif;
  --f-heading:  'NewRocker', 'Times New Roman', serif;
  --f-body:     'Lato', system-ui, sans-serif;
  --f-mono:     'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --sp-xs:   0.5rem;
  --sp-sm:   1rem;
  --sp-md:   2rem;
  --sp-lg:   4rem;
  --sp-xl:   7rem;

  /* Layout */
  --max-w:      1100px;
  --max-w-text: 760px;

  /* Übergänge */
  --transition: 0.25s ease;
}

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

/* html + body explizit dunkel setzen —
   verhindert, dass WP-Admin-Styles oder Caching
   den Hintergrund mit #f0f0f1 überschreiben */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #080808;
}

body {
  background-color: #080808;
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--c-red-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-white); }

::selection { background: var(--c-red); color: #fff; }

/* ═══════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-red); border-radius: 3px; }

/* ═══════════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  width: 100%;
}

.container--text {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-main { flex: 1; width: 100%; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  color: var(--c-heading);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.display-title {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: var(--sp-sm); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--c-text);
  line-height: 1.8;
}

blockquote {
  border-left: 3px solid var(--c-red);
  padding: var(--sp-sm) var(--sp-md);
  color: var(--c-text-muted);
  font-style: italic;
  margin: var(--sp-md) 0;
  background: var(--c-surface-2);
}

ul, ol { padding-left: var(--sp-md); margin-bottom: var(--sp-sm); }

hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-red), transparent);
  margin: var(--sp-lg) 0;
}

/* ═══════════════════════════════════════════════
   SECTION STRUCTURE
═══════════════════════════════════════════════ */
.section {
  padding: var(--sp-xl) 0;
}

.section--tight {
  padding: var(--sp-lg) 0;
}

.section--dark   { background: var(--c-surface); }
.section--darker { background: var(--c-surface-2); }
.section--red    { background: var(--c-red); }

.section-label {
  font-family: var(--f-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-family: var(--f-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--c-heading);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-md);
}

.section-title--center { text-align: center; }

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--c-red);
  margin-top: 0.6em;
}

.section-title--center::after { margin: 0.6em auto 0; }

/* ── Konsistenter Sektionsheader ── */
/* Alle Content-Sektionen nutzen diesen Block für
   Label + Titel + optionalen Intro-Text.
   Einheitlich linksbündig, max-width = --max-w-text für Lesekomfort. */
.section-header {
  max-width: var(--max-w-text);
  margin-bottom: var(--sp-md);
}

.section-header .section-title { margin-bottom: 0; }

.section-header__intro {
  margin-top: var(--sp-sm);
  font-size: 1.05rem;
  color: var(--c-text);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--f-heading);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75em 2em;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}

.btn--red {
  color: var(--c-white);
  background: var(--c-red);
  border-color: var(--c-red);
}
.btn--red:hover {
  background: var(--c-red-bright);
  border-color: var(--c-red-bright);
  color: var(--c-white);
}

.btn--outline {
  color: var(--c-heading);
  background: transparent;
  border-color: var(--c-border-2);
}
.btn--outline:hover {
  border-color: var(--c-red-bright);
  color: var(--c-white);
}

.btn--outline-red {
  color: var(--c-red-bright);
  background: transparent;
  border-color: var(--c-red-bright);
}
.btn--outline-red:hover {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
}

/* ═══════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

/* WP Admin-Bar: Fixed Header nach unten schieben */
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--sp-md);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__line1 {
  font-family: var(--f-display);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-logo__line1 {
  font-family: var(--f-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--c-white);
  font-weight: 400;
}

.site-logo__line2 {
  font-family: var(--f-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--c-text);
  font-weight: 400;
}

/* Desktop Nav */
.nav-primary { display: flex; align-items: center; gap: 0; }

.nav-primary ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
}

.nav-primary > ul > li > a {
  display: block;
  font-family: var(--f-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--c-white);
  text-decoration: none;
  padding: 0.6em 1.1em;
  transition: color var(--transition);
  position: relative;
}

.nav-primary > ul > li > a:hover,
.nav-primary > ul > li.current-menu-item > a {
  color: var(--c-white);
}

.nav-primary > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 1.1em;
  right: 1.1em;
  height: 1px;
  background: var(--c-red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-primary > ul > li > a:hover::after,
.nav-primary > ul > li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-primary ul li { position: relative; }

.nav-primary ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-top: 2px solid var(--c-red);
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  z-index: 100;
}

.nav-primary ul li:hover > ul { display: flex; }

.nav-primary ul ul a {
  font-family: var(--f-heading);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--c-text);
  padding: 0.6em 1.2em;
  display: block;
  text-transform: none;
  transition: color var(--transition), background var(--transition);
}

.nav-primary ul ul a:hover { color: var(--c-white); background: var(--c-surface-2); }

/* Header Social Icons */
.header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: var(--sp-sm);
}

.header-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: color var(--transition);
}

.header-social a:hover { color: var(--c-red-bright); }

.nav-cta { margin-left: var(--sp-sm); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--c-border-2);
  color: var(--c-text);
  padding: 0.6rem;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--c-white);
  transition: transform var(--transition), opacity var(--transition);
}

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px var(--sp-md) var(--sp-xl);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--c-bg);
  background-image:
    radial-gradient(ellipse at center bottom, rgba(100, 10, 10, 0.25) 0%, transparent 60%);
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(8,8,8,0.4) 0%,
    rgba(8,8,8,0.1) 40%,
    rgba(8,8,8,0.8) 85%,
    var(--c-bg) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__eyebrow {
  font-family: var(--f-heading);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-red-bright);
  margin-bottom: var(--sp-sm);
  display: block;
}

.hero__title {
  font-family: var(--f-heading);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 0.2em;
}

.hero__title em {
  font-style: normal;
  color: var(--c-red-bright);
}

.hero__subtitle {
  font-family: var(--f-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin-bottom: var(--sp-md);
}

.hero__tagline {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 520px;
  margin: 0 auto var(--sp-md);
}

.hero__actions {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* Einzelner Button → zentriert */
.hero__actions .btn:only-child,
.hero__actions--single .btn {
  margin: 0 auto;
}

.hero__scroll {
  position: absolute;
  bottom: var(--sp-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  text-decoration: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero__scroll svg { opacity: 0.4; }

/* ═══════════════════════════════════════════════
   NEWS CARDS
═══════════════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
}

.news-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
}

.news-card:hover {
  border-color: var(--c-red);
  transform: translateY(-3px);
}

.news-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__thumb img { transform: scale(1.04); }

.news-card__body { padding: var(--sp-sm); flex: 1; display: flex; flex-direction: column; }

.news-card__cat {
  font-family: var(--f-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red-bright);
  margin-bottom: 0.4rem;
}

.news-card__title {
  font-family: var(--f-heading);
  font-size: 1rem;
  color: var(--c-heading);
  line-height: 1.4;
  margin-bottom: 0.6rem;
  flex: 1;
}

.news-card__title a { color: inherit; text-decoration: none; }
.news-card__title a:hover { color: var(--c-white); }

.news-card__excerpt {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-sm);
  line-height: 1.6;
}

.news-card__meta {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  font-family: var(--f-mono);
}

/* ═══════════════════════════════════════════════
   TENETS / TEXT SECTIONS
═══════════════════════════════════════════════ */
.tenets-list {
  list-style: none;
  padding: 0;
  counter-reset: tenet;
}

.tenets-list li {
  counter-increment: tenet;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--sp-sm);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--c-border);
}

.tenets-list li:last-child { border-bottom: none; }

.tenets-list li::before {
  content: counter(tenet, upper-roman);
  font-family: var(--f-heading);
  color: var(--c-red-bright);
  font-size: 0.9rem;
  padding-top: 0.1em;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   FEATURE SPLIT (Bild + Text)
═══════════════════════════════════════════════ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.feature-split--reverse { direction: rtl; }
.feature-split--reverse > * { direction: ltr; }

.feature-split__media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.feature-split__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.feature-split__media--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--c-surface));
}

.feature-split__body {
  background: var(--c-surface);
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   KAMPAGNEN GRID
═══════════════════════════════════════════════ */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
}

.campaign-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: border-color var(--transition);
}

.campaign-card:hover { border-color: var(--c-red); }

.campaign-card__thumb { aspect-ratio: 4/3; overflow: hidden; }
.campaign-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.campaign-card:hover .campaign-card__thumb img { transform: scale(1.05); }

.campaign-card__body { padding: var(--sp-sm); }
.campaign-card__label {
  font-family: var(--f-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-red-bright);
  margin-bottom: 0.4rem;
}
.campaign-card__title {
  font-family: var(--f-heading);
  font-size: 0.95rem;
  color: var(--c-heading);
  line-height: 1.4;
}
.campaign-card__title a { color: inherit; text-decoration: none; }
.campaign-card__title a:hover { color: var(--c-white); }

/* ═══════════════════════════════════════════════
   CONGREGATION FINDER
═══════════════════════════════════════════════ */
.congregation-section {
  background: var(--c-surface);
  position: relative;
  overflow: hidden;
}

.congregation-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   GET INVOLVED
═══════════════════════════════════════════════ */
.involve-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  justify-content: center;
}

.involve-item {
  text-align: center;
  padding: var(--sp-md);
  border: 1px solid var(--c-border);
  background: var(--c-surface-2);
  transition: border-color var(--transition);
  flex: 1 1 280px;
  max-width: 360px;
}

.involve-item:hover { border-color: var(--c-red); }

.involve-item__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-sm);
  color: var(--c-red-bright);
}

.involve-item__title {
  font-family: var(--f-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-heading);
  margin-bottom: 0.5rem;
}

.involve-item__text {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

/* ═══════════════════════════════════════════════
   SIEBEN GRUNDSÄTZE (Tenets Block)
═══════════════════════════════════════════════ */
.principles-section {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-surface) 100%);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

.principle-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--sp-sm);
  padding: var(--sp-sm);
  border: 1px solid var(--c-border);
  background: var(--c-surface-2);
}

.principle-item__num {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--c-red);
  line-height: 1;
  padding-top: 0.1em;
}

.principle-item__text {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   ENTRY CONTENT (Blog/Seiten)
═══════════════════════════════════════════════ */
.entry-header {
  padding: 120px 0 var(--sp-lg);
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  text-align: center;
}

.entry-header .section-label { display: inline-block; }

.entry-meta {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--c-text-muted);
  margin-top: var(--sp-sm);
  letter-spacing: 0.05em;
}

.entry-content {
  padding: var(--sp-lg) 0;
  background: var(--c-bg);
}

.entry-content h2, .entry-content h3 {
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-sm);
}

.entry-content p { margin-bottom: var(--sp-sm); }

.entry-content ul, .entry-content ol {
  margin-bottom: var(--sp-sm);
  color: var(--c-text);
}

.entry-content a {
  color: var(--c-red-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover { color: var(--c-white); }

.entry-content figure {
  margin: var(--sp-md) 0;
}

.entry-content figcaption {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════
   ARCHIVE
═══════════════════════════════════════════════ */
.archive-header {
  padding: 120px 0 var(--sp-lg);
  background: var(--c-surface);
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}

.post-list {
  list-style: none;
  padding: 0;
}

.post-list__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-sm);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--c-border);
  align-items: center;
}

.post-list__item:last-child { border-bottom: none; }

.post-list__title {
  font-family: var(--f-heading);
  font-size: 1rem;
  color: var(--c-heading);
}

.post-list__title a { color: inherit; text-decoration: none; }
.post-list__title a:hover { color: var(--c-white); }

.post-list__date {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════ */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: var(--sp-lg) 0;
  font-family: var(--f-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.pagination a, .pagination span {
  padding: 0.5em 0.9em;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}

.pagination a:hover { border-color: var(--c-red); color: var(--c-white); }
.pagination .current { border-color: var(--c-red); color: var(--c-red-bright); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

.site-footer__top {
  padding: var(--sp-xl) 0 var(--sp-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-lg);
}

.footer-col__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer-logo {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-white);
  text-decoration: none;
}

.footer-tagline {
  font-family: var(--f-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold-muted);
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.footer-col__heading {
  font-family: var(--f-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-sm);
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li { margin-bottom: 0.5rem; }

.footer-nav a {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--sp-sm);
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover { border-color: var(--c-red); color: var(--c-white); }

.site-footer__bottom {
  border-top: 1px solid var(--c-border);
  padding: var(--sp-sm) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--c-text-muted);
  font-family: var(--f-mono);
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.site-footer__bottom a { color: var(--c-text-muted); }
.site-footer__bottom a:hover { color: var(--c-white); }

/* ═══════════════════════════════════════════════
   404
═══════════════════════════════════════════════ */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: var(--sp-xl) var(--sp-md);
  padding-top: 120px;
}

.error-404__number {
  font-family: var(--f-display);
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 700;
  color: var(--c-border);
  line-height: 1;
  margin-bottom: var(--sp-sm);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .news-grid         { grid-template-columns: repeat(2, 1fr); }
  .campaign-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
  .feature-split     { grid-template-columns: 1fr; }
  .feature-split__media { min-height: 350px; }
}

/* Mobile-Menü global verstecken — sichtbar nur via .is-open (JS) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #111111;
  border-top: 3px solid var(--c-red);
  z-index: 9999;
  overflow-y: auto;
  padding: var(--sp-md) var(--sp-md) var(--sp-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,0.8);
}

.mobile-menu.is-open  { display: block; }
.admin-bar .mobile-menu { top: 112px; }

@media (max-width: 768px) {
  :root { --sp-lg: 3rem; --sp-xl: 4rem; }

  .nav-primary { display: none; }
  .nav-cta     { display: none; }
  .nav-toggle  { display: flex; }

  /* Mobile-Menü-Inhalte stylen */
  .mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu__list > li {
    border-bottom: 1px solid var(--c-border);
  }

  .mobile-menu__list > li:last-child {
    border-bottom: none;
  }

  .mobile-menu__list > li > a {
    display: block;
    font-family: var(--f-heading);
    font-size: 1.6rem;
    color: var(--c-white);
    padding: 0.6em 0;
    text-decoration: none;
    transition: color var(--transition);
  }

  .mobile-menu__list > li > a:hover,
  .mobile-menu__list > li.current-menu-item > a {
    color: var(--c-red-bright);
  }

  /* Sub-Menü mobil */
  .mobile-menu__list ul {
    list-style: none;
    padding: 0.3rem 0 0.8rem 1rem;
    margin: 0;
    display: block !important;
  }

  .mobile-menu__list ul li a {
    display: block;
    font-family: var(--f-heading);
    font-size: 1.1rem;
    color: var(--c-text-muted);
    padding: 0.35em 0;
    text-decoration: none;
    transition: color var(--transition);
  }

  .mobile-menu__list ul li a:hover { color: var(--c-white); }

  .news-grid         { grid-template-columns: 1fr; }
  .campaign-grid     { grid-template-columns: 1fr; }
  .involve-grid      { grid-template-columns: 1fr; }
  .principles-grid   { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .post-list__item   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2rem, 12vw, 3rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
}

/* ═══════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════ */
.text-center  { text-align: center; }
.text-red     { color: var(--c-red-bright); }
.text-gold    { color: var(--c-gold); }
.text-muted   { color: var(--c-text-muted); }
.mt-0         { margin-top: 0; }
.sr-only      { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
