/* ============================================
   pages.css — Shared Components + Frontend Screens
   stattZEITUNG.net Design
   ============================================ */

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  padding: 12px 24px;
  background: var(--red-500);
  color: white;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* --- Nav right-align --- */
.header-inner .nav-links {
  margin-left: auto;
}

/* --- Header Search --- */
.header-search {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-left: 12px;
}
.header-search-input {
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  width: 180px;
  background: transparent;
  color: var(--gray-900);
  outline: none;
  font-family: var(--font-body);
}
.header-search-input::placeholder { color: var(--gray-400); }
.header-search button {
  padding: 8px 12px;
  background: none;
  border: none;
  color: var(--gray-500);
  cursor: pointer;
  font-size: 14px;
}

/* Search expanding animation for mobile */
@media (max-width: 959px) {
  .header-search { display: none; }
}

/* --- Dropdown Menu --- */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  transition: color var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  background: none;
  font-family: var(--font-body);
}
.nav-dropdown-btn:hover { color: var(--red-500); }
.nav-dropdown-btn.open { color: var(--red-500); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--gray-0);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px 0;
  z-index: 1001;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--gray-700);
  transition: background var(--transition);
  text-decoration: none;
}
.nav-dropdown-menu a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}
.nav-dropdown-menu a:hover { background: var(--gray-100); color: var(--red-500); }

/* Desktop: open dropdown on hover */
@media (min-width: 960px) {
  .nav-dropdown:hover .nav-dropdown-menu { display: block; }
  .nav-dropdown:hover .nav-dropdown-btn { color: var(--red-500); }
}

/* --- Mobile Nav Search --- */
.mobile-nav-search {
  padding: 0 0 16px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 8px;
}
.mobile-nav-search form {
  display: flex;
  gap: 8px;
}
.mobile-nav-search input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--gray-0);
  color: var(--gray-900);
}
.mobile-nav-search input:focus {
  border-color: var(--red-500);
  outline: none;
}
.mobile-nav-search button {
  width: 48px;
  height: 48px;
  background: var(--red-500);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.mobile-nav-search button svg { width: 20px; height: 20px; stroke: white; }

/* --- Social Bar --- */
.social-bar {
  background: var(--gray-900);
  padding: 24px 0;
}
.social-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-bar a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.social-bar a svg { width: 20px; height: 20px; }
.social-bar a:hover { background: var(--red-500); color: white; }
.social-bar-spenden {
  background: var(--red-500) !important;
  color: white !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 24px !important;
  width: auto !important;
  border-radius: var(--radius) !important;
}
.social-bar-spenden:hover { background: var(--red-600) !important; }

/* --- Newsletter Full Form (Footer) --- */
.nl-form-full {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.nl-fields {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.nl-fields input {
  flex: 1;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: var(--font-body);
  min-height: 48px;
  transition: border-color var(--transition);
}
.nl-fields input::placeholder { color: var(--gray-500); }
.nl-fields input:focus { border-color: var(--red-500); outline: none; }
.nl-lists, .nl-consent {
  margin-bottom: 12px;
}
.nl-lists label, .nl-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
  cursor: pointer;
}
.nl-lists input, .nl-consent input {
  margin-top: 2px;
  accent-color: var(--red-500);
}
.nl-consent a { color: var(--red-400); text-decoration: underline; }
.nl-form-full button {
  width: 100%;
  background: var(--red-500);
  color: white;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  min-height: 48px;
  transition: background var(--transition);
}
.nl-form-full button:hover { background: var(--red-600); }

/* --- Footer Enhanced --- */
.footer-col-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col-links a:hover { color: white; }
.footer-col-legal {
  display: flex;
  gap: 24px;
  font-size: 13px;
  width: 100%;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-col-legal a {
  color: rgba(255,255,255,0.4);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer-col-legal a:hover { color: white; }

/* --- Page Hero --- */
.page-hero {
  background: var(--gray-900);
  color: white;
  padding: 48px 0;
}
[data-theme="dark"] .page-hero { background: #0a0a09; }
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.page-hero-sub {
  font-size: 16px;
  opacity: 0.6;
}

/* --- Breadcrumb --- */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 14px;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--red-500); }
.breadcrumb span { margin: 0 8px; }

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 32px 0;
}
.pagination a, .pagination span {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.pagination a:hover { background: var(--gray-100); }
.pagination .active {
  background: var(--red-500);
  color: white;
  font-weight: 700;
}
.pagination .disabled { opacity: 0.3; pointer-events: none; }

/* --- Analysen Filter Form --- */
.analysen-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin: 24px auto 16px;
  padding: 0 24px;
  max-width: var(--max-width);
}
.analysen-filter-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  display: block;
  margin-bottom: 4px;
}
.analysen-filter-search {
  flex: 1;
  min-width: 200px;
}
.analysen-filter-search input,
.analysen-filter-date input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--gray-0);
  color: var(--gray-900);
}
.analysen-filter-search input:focus,
.analysen-filter-date input:focus {
  border-color: var(--red-500);
  outline: none;
}
.analysen-filter-form .btn-yellow,
.analysen-filter-form .btn {
  padding: 10px 24px;
  font-size: 15px;
  background: var(--red-500);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
}
.analysen-filter-form .btn-yellow:hover,
.analysen-filter-form .btn:hover { background: var(--red-600); }
.analysen-filter-reset {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--gray-500);
  text-decoration: none;
}
.analysen-filter-reset:hover { color: var(--red-500); }

/* --- Filter Bar (Pills) --- */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 0 24px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.filter-pill {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--gray-0);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-pill:hover { border-color: var(--red-500); color: var(--red-500); }
.filter-pill.active {
  background: var(--red-500);
  border-color: var(--red-500);
  color: white;
}

/* --- Card Grid --- */
.card-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* --- Post Card (light bg variant) --- */
.post-card-light {
  background: var(--gray-0);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--gray-900);
  display: block;
}
.post-card-light:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.post-card-light:hover .post-card-title { color: var(--red-500); }
.post-card-light .post-card-body { padding: 16px 20px 20px; }
.post-card-light .post-card-title {
  color: var(--gray-900);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.post-card-light .post-card-excerpt {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.5;
}
.post-card-light .post-card-date {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.post-card-light .post-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.post-card-light .post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card-light .post-tag {
  position: absolute;
  top: 12px;
  left: 12px;
}
.post-card-comments {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 8px;
}

/* --- Share Bar --- */
.share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin: 32px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.share-bar-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  margin-right: 8px;
}
.share-btn {
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  background: var(--gray-0);
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-btn:hover { border-color: var(--red-500); color: var(--red-500); }
.share-btn svg { width: 18px; height: 18px; }

/* --- Content Body --- */
.content-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--gray-700);
}
.content-body h1 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--gray-900);
}
.content-body h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gray-900);
  margin: 32px 0 16px;
}
.content-body h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gray-900);
  margin: 32px 0 14px;
}
.content-body p { margin-bottom: 16px; font-family: var(--font-heading); font-size: 17px; line-height: 1.8; color: var(--gray-800); }
.content-body img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
[data-theme="dark"] .content-body img[src*="Unterschrift"] {
  filter: invert(1);
}
.content-body blockquote {
  border-left: 4px solid var(--red-500);
  padding: 16px 24px;
  margin: 32px 0;
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  color: var(--gray-700);
}
.content-body blockquote cite {
  display: block;
  font-size: 14px;
  font-style: normal;
  color: var(--gray-500);
  margin-top: 8px;
  font-family: var(--font-body);
}
.content-body a { color: var(--red-500); text-decoration: underline; }
.content-body a:hover { color: var(--red-600); }

/* Red rule divider */
.red-rule {
  height: 3px;
  width: 48px;
  background: var(--red-500);
  border-radius: 2px;
  margin-bottom: 32px;
}

/* Category badge (article detail) */
.post-category-badge {
  display: inline-block;
  background: var(--red-500) !important;
  color: white !important;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Copy Button --- */
.copy-group {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 8px 12px;
  margin-bottom: 8px;
}
.copy-value {
  flex: 1;
  font-family: monospace;
  font-size: 14px;
  word-break: break-all;
  color: var(--gray-700);
  letter-spacing: 0.3px;
}
.copy-btn {
  padding: 6px 16px;
  background: var(--red-500);
  color: white;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
  border: none;
}
.copy-btn:hover { background: var(--red-600); }
.copy-btn.copied { background: var(--green); }

/* --- Platform Switcher --- */
.platform-switcher {
  margin: 24px 0;
}
.platform-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 0;
}
.platform-tab {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  background: none;
  font-family: var(--font-body);
}
.platform-tab:hover { color: var(--gray-900); }
.platform-tab.active {
  color: var(--red-500);
  border-bottom-color: var(--red-500);
}
.platform-embed { display: none; }
.platform-embed.active { display: block; }

.video-embed-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--gray-900);
}
.video-embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Embed placeholder */
.embed-placeholder {
  background: var(--gray-100);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 48px 24px;
  text-align: center;
}
.embed-placeholder-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.embed-placeholder p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.embed-placeholder-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--red-500);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.embed-placeholder-btn:hover { background: var(--red-600); color: white; }

/* --- Video Grid --- */
.video-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--gray-0);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: var(--gray-900);
  display: block;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-200);
}
.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity var(--transition);
}
.video-card:hover .video-card-play { opacity: 1; }
.video-card-play svg {
  width: 48px;
  height: 48px;
  fill: white;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.video-card-body { padding: 16px; }
.video-card-series {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 6px;
}
.video-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.video-card:hover .video-card-title { color: var(--red-500); }
.video-card-date { font-size: 13px; color: var(--gray-500); }
.video-card-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.video-card-views {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
}
.video-card-views svg { width: 14px; height: 14px; }
.video-card-comments {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--gray-500);
}
.video-card-comments svg { width: 14px; height: 14px; }

/* Video Controls (search + sort) */
.video-controls {
  max-width: var(--max-width);
  margin: 0 auto 24px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.video-search {
  flex: 1;
  min-width: 200px;
  position: relative;
}
.video-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}
.video-search-icon svg { width: 16px; height: 16px; }
.video-search input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--gray-0);
  color: var(--gray-900);
}
.video-search input:focus { border-color: var(--red-500); outline: none; }
.video-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.video-sort-label {
  font-size: 14px;
  color: var(--gray-500);
}
.video-sort-btn {
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-0);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.video-sort-btn:hover { border-color: var(--red-500); color: var(--red-500); }
.video-sort-btn.active { background: var(--red-500); color: white; border-color: var(--red-500); }

/* Video no results */
.video-no-results {
  padding: 48px 24px;
  text-align: center;
  color: var(--gray-500);
  font-size: 16px;
  grid-column: 1 / -1;
}

/* --- Load More Button --- */
.load-more {
  text-align: center;
  padding: 24px;
}
.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-0);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-outline:hover { border-color: var(--red-500); color: var(--red-500); }

/* --- Comments Section --- */
.comments-section {
  margin-top: 48px;
  border-top: 1px solid var(--gray-200);
  padding-top: 32px;
}
.comment-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.comment-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--gray-100);
  transition: background var(--transition);
}
.comment-card:hover { background: var(--gray-0); box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.comment-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.comment-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
/* Avatar color palette — 8 variants */
.avatar-color-0 { background: #FDE8E8; color: #C41E1E; }
.avatar-color-1 { background: #E0F2FE; color: #0369A1; }
.avatar-color-2 { background: #DCFCE7; color: #15803D; }
.avatar-color-3 { background: #FEF3C7; color: #B45309; }
.avatar-color-4 { background: #EDE9FE; color: #7C3AED; }
.avatar-color-5 { background: #FCE7F3; color: #BE185D; }
.avatar-color-6 { background: #CCFBF1; color: #0F766E; }
.avatar-color-7 { background: #FFF7ED; color: #C2410C; }
.comment-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.comment-card-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
}
.comment-card-date {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.2;
}
.comment-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  padding-left: 52px;
}

/* Comment form */
.comment-form {
  margin-top: 24px;
  margin-bottom: 8px;
}
.comment-form textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
  min-height: 100px;
  background: var(--gray-0);
  color: var(--gray-900);
  transition: border-color var(--transition);
}
.comment-form textarea:focus { outline: none; border-color: var(--red-500); }
.comment-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.comment-char-count {
  font-size: 12px;
  color: var(--gray-400);
}
.comment-login-cta {
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 24px;
  text-align: center;
}
.comment-login-cta p {
  font-size: 15px;
  color: var(--gray-700);
  margin: 0;
}
.comment-login-cta a { color: var(--red-500); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.comment-login-cta a:hover { color: var(--gray-900); }

/* --- Heart Widget --- */
.heart-widget {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.heart-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--gray-0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
}
.heart-btn:hover, .heart-btn.hearted {
  border-color: var(--red-500);
  color: var(--red-500);
}
.heart-btn svg { width: 20px; height: 20px; }
.heart-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

/* --- Prev/Next Navigation --- */
.prev-next {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  margin-top: 24px;
}
.prev-next a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  max-width: 45%;
}
.prev-next a:hover { color: var(--red-500); }
.prev-next a svg { width: 16px; height: 16px; flex-shrink: 0; }

/* --- Back Button --- */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  text-decoration: none;
  margin: 24px 0;
}
.back-btn:hover { color: var(--red-500); }
.back-btn svg { width: 16px; height: 16px; }

/* --- Early Access Badge --- */
.early-access-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.early-access-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--green-bg);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
}

/* --- Clip Play Badge --- */
.clip-play-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip-play-badge svg { width: 16px; height: 16px; fill: white; }

/* --- Konto Pages --- */
.konto-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 24px;
}
.konto-page h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.konto-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.konto-form input[type="email"],
.konto-form input[type="password"],
.konto-form input[type="text"] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font-body);
  margin-bottom: 16px;
  background: var(--gray-0);
  color: var(--gray-900);
}
.konto-form input:focus { border-color: var(--red-500); outline: none; }
.konto-form button[type="submit"] {
  width: 100%;
  padding: 14px 24px;
  background: var(--red-500);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  min-height: 48px;
  transition: background var(--transition);
}
.konto-form button[type="submit"]:hover { background: var(--red-600); }
.konto-links {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
}
.konto-links a { color: var(--red-500); font-weight: 600; }

/* Konto Dashboard */
.konto-dashboard {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px;
}
.konto-dashboard h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.konto-card {
  background: var(--gray-0);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
}
.konto-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.konto-card p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* Password toggle */
.pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--gray-500);
  padding: 4px;
}
.pw-field-wrap {
  position: relative;
}
.pw-field-wrap input { padding-right: 44px; }

/* Password strength */
.pw-strength {
  margin: -8px 0 16px;
}
.pw-strength-track {
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}
.pw-strength-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s, background 0.3s;
}
.pw-strength-label {
  font-size: 12px;
  margin-top: 4px;
}

/* Success/Error messages */
.pb-success-msg, [role="status"] {
  background: var(--green-bg);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.pb-error-msg, [role="alert"] {
  background: var(--red-50);
  border: 1px solid var(--red-200);
  color: var(--red-600);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* --- Newsletter Page --- */
.newsletter-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 24px;
}
.newsletter-page h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.newsletter-page p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* --- Search Page --- */
.search-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
}
.search-page h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.search-form {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.search-form input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: var(--font-body);
  background: var(--gray-0);
  color: var(--gray-900);
}
.search-form input:focus { border-color: var(--red-500); outline: none; }
.search-form button {
  padding: 12px 24px;
  background: var(--red-500);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
}
.search-form button:hover { background: var(--red-600); }

/* --- Error Pages --- */
.error-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.error-page h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--red-500);
  margin-bottom: 16px;
}
.error-page p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.error-code {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 900;
  color: var(--red-500);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.error-back-link {
  color: var(--red-500);
  font-weight: 700;
  text-decoration: underline;
}
.error-back-link:hover {
  color: var(--red-600);
}

/* --- Sendung (Series) Page --- */
.sendung-hero {
  padding: 48px 0;
  background: var(--gray-900);
  color: white;
}
[data-theme="dark"] .sendung-hero { background: #0a0a09; }
.sendung-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.sendung-hero-logo {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--red-500);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sendung-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sendung-info h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 8px;
}
.sendung-info p {
  font-size: 16px;
  opacity: 0.7;
}
.sendung-meta {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 8px;
}

/* Interview section (for videos page) */
.interview-section { padding: 48px 0; }
.alpha-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.alpha-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--gray-0);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  color: var(--gray-900);
  font-family: var(--font-body);
}
.alpha-btn:hover { border-color: var(--red-500); color: var(--red-500); }
.alpha-btn.active { background: var(--red-500); color: white; border-color: var(--red-500); }
.alpha-btn.disabled { opacity: 0.3; cursor: default; }

/* Maintenance page */
.maintenance-page {
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.maintenance-page h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--gray-900);
  margin-bottom: 16px;
}

/* VG Wort Pixel */
.vgwort-pixel { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Sort arrow */
.sort-arrow { font-size: 10px; }

/* Responsive card grid */
@media (max-width: 959px) {
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .sendung-hero-inner { flex-direction: column; text-align: center; }
  .sendung-hero-logo { width: 80px; height: 80px; }
}

@media (max-width: 640px) {
  .nl-fields { flex-direction: column; }
  .prev-next { flex-direction: column; gap: 12px; }
  .prev-next a { max-width: 100%; }
}

/* ============================================
   INTERVIEWS PAGE
   ============================================ */
.interview-group { margin-bottom: 32px; }
.interview-letter {
  font-size: 32px;
  font-weight: 800;
  color: var(--red-500);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-200);
}
.interview-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 12px;
  border-radius: var(--radius);
  transition: background 0.1s;
  text-decoration: none;
  color: var(--gray-900);
}
.interview-item:hover { background: var(--gray-100); }
.interview-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
  overflow: hidden;
}
.interview-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
}
.interview-role { font-size: 13px; color: var(--gray-500); }
.interview-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 4px 10px;
  border-radius: 12px;
  flex-shrink: 0;
}

/* ============================================
   MELDUNGEN PAGE
   ============================================ */
.meldung-disclaimer {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.5;
}
.meldung-list { }
.meldung-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.meldung-item:last-child { border-bottom: none; }
.meldung-source {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.meldung-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
}
.meldung-title a { color: var(--gray-900); text-decoration: none; }
.meldung-title a:hover { color: var(--red-500); }
.meldung-meta { font-size: 12px; color: var(--gray-400); }
.meldung-date { font-size: 12px; color: var(--gray-400); }

/* ============================================
   AKTIONEN PAGE
   ============================================ */

/* Hero */
.aktionen-hero {
  padding: 80px 24px 56px;
  text-align: center;
  background: var(--gray-900);
  color: white;
}
[data-theme="dark"] .aktionen-hero { background: #0a0a09; }
.aktionen-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.aktionen-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.aktionen-hero p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-400);
}

/* Action Block */
.aktion-block {
  padding: 72px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.aktion-block-alt {
  background: var(--gray-50);
}
[data-theme="dark"] .aktion-block-alt {
  background: var(--gray-100);
}
.aktion-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.aktion-inner-reverse {
  grid-template-columns: 1.2fr 1fr;
  direction: rtl;
}
.aktion-inner-reverse > * {
  direction: ltr;
}
@media (max-width: 768px) {
  .aktion-inner,
  .aktion-inner-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Action Image */
.aktion-img-wrap { position: relative; }
.aktion-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Action Content */
.aktion-content {}
.aktion-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.aktion-status-active {
  color: var(--red-500);
  background: var(--red-50);
}
[data-theme="dark"] .aktion-status-active {
  background: rgba(224,69,69,0.15);
}
.aktion-status-success {
  color: #16a34a;
  background: #f0fdf4;
}
[data-theme="dark"] .aktion-status-success {
  color: #4ade80;
  background: rgba(74,222,128,0.1);
}
.aktion-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.aktion-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.aktion-meta {
  display: flex;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.aktion-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.aktion-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--red-500);
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.15s;
}
.aktion-btn-primary:hover {
  background: var(--red-600);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,30,30,0.2);
}
.aktion-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: transparent;
  color: var(--red-500);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--red-500);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.15s;
}
.aktion-btn-outline:hover {
  background: var(--red-50);
  color: var(--red-500);
}
[data-theme="dark"] .aktion-btn-outline:hover {
  background: rgba(224,69,69,0.1);
}

/* Related Posts within Action */
.aktion-posts {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}
.aktion-posts-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.aktion-post-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.15s;
}
.aktion-post-link:last-child { border-bottom: none; }
.aktion-post-link:hover .aktion-post-title { color: var(--red-500); }
.aktion-post-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
  transition: color 0.15s;
}
.aktion-post-date {
  font-size: 13px;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Closing CTA */
.aktionen-closing {
  padding: 72px 24px;
  text-align: center;
  background: var(--gray-900);
  color: white;
}
[data-theme="dark"] .aktionen-closing { background: #0a0a09; }
.aktionen-closing-inner {
  max-width: 560px;
  margin: 0 auto;
}
.aktionen-closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 12px;
}
.aktionen-closing p {
  font-size: 16px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 28px;
}
.aktionen-closing .aktion-btn-primary {
  background: var(--red-500);
}
.aktionen-closing .aktion-btn-primary:hover {
  background: var(--red-600);
}

/* ============================================
   FREE FINDEISEN PAGE
   ============================================ */
.findeisen-section {
  background: var(--gray-900);
  color: white;
  padding: 64px 0;
}
[data-theme="dark"] .findeisen-section { background: #0a0a09; }
.findeisen-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .findeisen-inner { grid-template-columns: 1fr; }
}
.findeisen-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-400);
  margin-bottom: 12px;
}
.findeisen-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.findeisen-text {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 24px;
}
.findeisen-img {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: linear-gradient(135deg, #2a2520, #3a3530);
}
.findeisen-action {
  display: inline-flex;
  gap: 12px;
  margin-top: 16px;
}
.findeisen-timeline {
  margin: 32px 0;
}

/* ============================================
   UNTERSTÜTZEN PAGE (Spendenseite)
   ============================================ */

/* -- Page container -- */
.donate-page { padding-bottom: 0; }

/* -- Hero -- */
.donate-hero {
  padding: 80px 24px 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--red-50) 0%, transparent 100%);
}
[data-theme="dark"] .donate-hero {
  background: linear-gradient(180deg, rgba(224,69,69,0.08) 0%, transparent 100%);
}
.donate-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.donate-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.donate-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 40px;
}
.donate-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.donate-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.donate-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--red-500);
}
.donate-stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
}

/* -- Sections shared -- */
.donate-section {
  padding: 64px 24px;
}
.donate-section-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.donate-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.donate-section-desc {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* -- PayPal Quick Donate -- */
.donate-paypal-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.donate-paypal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 36px;
  background: var(--gray-0);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--gray-900);
  transition: all 0.2s;
  min-width: 180px;
}
.donate-paypal-card:hover {
  border-color: var(--red-500);
  box-shadow: 0 8px 24px rgba(196,30,30,0.1);
  transform: translateY(-2px);
  color: var(--gray-900);
}
.donate-paypal-amount {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
}
.donate-paypal-period {
  font-size: 14px;
  color: var(--gray-500);
}
.donate-paypal-type {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red-500);
  margin-top: 4px;
}
.donate-paypal-single {
  border-style: dashed;
}

/* -- Patenschaft Störer (Teaser) -- */
.donate-patenschaft-teaser {
  padding: 48px 24px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  text-align: center;
}
[data-theme="dark"] .donate-patenschaft-teaser {
  background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
}
.donate-patenschaft-teaser h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #78350f;
  margin-bottom: 12px;
}
[data-theme="dark"] .donate-patenschaft-teaser h2 {
  color: #fef3c7;
}
.donate-patenschaft-teaser p {
  font-size: 16px;
  color: #92400e;
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
[data-theme="dark"] .donate-patenschaft-teaser p {
  color: #fde68a;
}
.donate-paten-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #92400e;
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.15s;
}
.donate-paten-cta-btn:hover {
  background: #78350f;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(120,53,15,0.3);
}
[data-theme="dark"] .donate-paten-cta-btn {
  background: #fef3c7;
  color: #78350f;
}
[data-theme="dark"] .donate-paten-cta-btn:hover {
  background: white;
  color: #78350f;
}

/* -- Patenschaft Section -- */
.donate-patenschaft {
  padding: 72px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
[data-theme="dark"] .donate-patenschaft {
  background: var(--gray-100);
}

/* -- Patenschaft Urkunde Block -- */
.donate-patenschaft-urkunde {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 640px;
  margin: 32px auto;
  padding: 28px;
  background: var(--gray-0);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
}
.donate-urkunde-icon {
  flex-shrink: 0;
  color: var(--red-500);
}
.donate-urkunde-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.donate-urkunde-text p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 540px) {
  .donate-patenschaft-urkunde { flex-direction: column; align-items: center; text-align: center; }
}

/* -- Patenschaft Freitext -- */
.donate-patenschaft-frei {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.donate-patenschaft-betrag {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.donate-patenschaft-frei p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}
.donate-patenschaft-frei a {
  color: var(--red-500);
  font-weight: 600;
}
.donate-patenschaft-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-500);
  background: rgba(196,30,30,0.08);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
}
[data-theme="dark"] .donate-patenschaft-badge {
  background: rgba(224,69,69,0.15);
}
.donate-patenschaft h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.donate-patenschaft .donate-section-desc {
  margin-bottom: 44px;
}
.donate-patenschaft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .donate-patenschaft-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .donate-patenschaft-grid { grid-template-columns: 1fr; max-width: 340px; }
}

/* -- Paten Cards -- */
.donate-paten-card {
  position: relative;
  background: var(--gray-0);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}
.donate-paten-card:hover {
  border-color: var(--gray-400);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.donate-paten-featured {
  border-color: var(--red-500);
  box-shadow: 0 4px 20px rgba(196,30,30,0.12);
}
.donate-paten-featured:hover {
  border-color: var(--red-500);
  box-shadow: 0 12px 32px rgba(196,30,30,0.18);
}
.donate-paten-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-500);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
}
.donate-paten-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.donate-paten-featured .donate-paten-tier {
  color: var(--red-500);
}
.donate-paten-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.donate-paten-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-500);
}
.donate-paten-perks {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--gray-600);
}
.donate-paten-perks li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
}
.donate-paten-perks li svg {
  flex-shrink: 0;
  color: var(--red-500);
  margin-top: 1px;
}
.donate-paten-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  border: 2px solid var(--gray-200);
  background: var(--gray-0);
  color: var(--gray-900);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.donate-paten-btn:hover {
  border-color: var(--gray-900);
  color: var(--gray-900);
}
.donate-paten-btn-primary {
  background: var(--red-500);
  color: white;
  border-color: var(--red-500);
}
.donate-paten-btn-primary:hover {
  background: var(--red-600);
  border-color: var(--red-600);
  color: white;
}
.donate-patenschaft-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--gray-500);
  text-align: center;
}

/* -- Bank Transfer -- */
.donate-bank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.donate-bank-card {
  background: var(--gray-0);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.donate-bank-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.donate-bank-title svg { color: var(--gray-400); }
.donate-bank-table {
  width: 100%;
  font-size: 14px;
  line-height: 2;
}
.donate-bank-table td:first-child {
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  padding-right: 12px;
  width: 1%;
}
.donate-bank-table td:last-child {
  font-weight: 700;
  color: var(--gray-900);
}
.donate-mono {
  font-family: monospace;
  letter-spacing: 0.5px;
  word-break: break-all;
}

/* -- Crypto Section -- */
.donate-crypto-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}
[data-theme="dark"] .donate-crypto-section {
  background: var(--gray-100);
}
.donate-crypto-quick {
  margin-bottom: 32px;
}
.donate-crypto-checkout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #F7931A;
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.15s;
}
.donate-crypto-checkout-btn:hover {
  background: #E8850F;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(247,147,26,0.3);
}
.donate-crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.donate-crypto-card {
  background: var(--gray-0);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.donate-crypto-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.donate-crypto-addr {
  font-family: monospace;
  font-size: 12px;
  color: var(--gray-500);
  word-break: break-all;
  line-height: 1.5;
  margin-bottom: 12px;
}
.donate-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
}
.donate-copy-btn:hover {
  border-color: var(--gray-400);
  color: var(--gray-900);
}

/* -- Closing / Quote -- */
.donate-closing {
  padding: 72px 24px;
  text-align: center;
}
.donate-quote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 26px);
  font-style: italic;
  line-height: 1.5;
  color: var(--gray-700);
  max-width: 560px;
  margin: 0 auto 8px;
}
.donate-cite {
  font-size: 14px;
  color: var(--gray-400);
  display: block;
  margin-bottom: 24px;
}
.donate-closing-text {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   AUDIO PLAYER (Readspeaker)
   ============================================ */
.audio-player {
  background: var(--gray-900);
  color: white;
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
}
[data-theme="dark"] .audio-player { background: #282826; }
.audio-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-500);
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audio-play-btn:hover { background: var(--red-600); }
.audio-info { flex: 1; min-width: 0; }
.audio-title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-subtitle { font-size: 11px; color: var(--gray-500); }
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-top: 6px;
  cursor: pointer;
}
.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--red-500);
  border-radius: 2px;
  transition: width 0.1s;
}
.audio-time {
  font-size: 12px;
  color: var(--gray-500);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

/* Audio Player — Homepage variant */
.audio-player--home {
  margin: -20px auto 0;
  position: relative;
  z-index: 2;
  max-width: var(--max-width, 1200px);
}

/* Speed button */
.audio-speed-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.audio-speed-btn:hover { background: rgba(255,255,255,0.2); }

/* Playing state — pause icon */
.audio-player.playing .audio-play-btn {
  font-size: 10px;
  letter-spacing: 2px;
}

/* Focus styles for keyboard navigation */
.audio-play-btn:focus-visible,
.audio-speed-btn:focus-visible,
.progress-bar:focus-visible {
  outline: 2px solid var(--red-500);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 639px) {
  .audio-player { padding: 10px 14px; gap: 10px; }
  .audio-player--home { margin-top: -12px; }
  .audio-title { font-size: 12px; }
  .audio-time { font-size: 11px; }
}
