/**
 * DE NAAMDRAGERS - GLOBALE STIJLEN
 * Warm licht thema
 */

/* ===== CSS VARIABELEN ===== */
:root {
  /* Licht thema kleuren */
  --bg: #fefdfb;
  --bg-2: #f8f6f3;
  --bg-3: #f0ebe5;
  --text: #1a1a1a;
  --text-2: #4a4a4a;
  --text-3: #7a7a7a;
  --border: rgba(0, 0, 0, 0.08);

  /* Hoofdkleuren uit logo */
  --gold: #E1B438;
  --gold-dark: #c99a2e;
  --purple: #734560;
  --purple-dark: #5a3650;
  --purple-deep: #4a2a42;
  --blue: #91bcd2;
  --blue-dark: #6a9cb8;
  --blue-deep: #4a7a98;
  --green: #5B8C6D;
  --lavender: #9D88A8;

  /* Gradient kleuren */
  --gradient-purple-blue: linear-gradient(135deg, var(--purple) 0%, var(--blue-dark) 100%);
  --gradient-blue-purple: linear-gradient(135deg, var(--blue) 0%, var(--lavender) 50%, var(--purple) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #f0c85a 50%, var(--gold) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(115, 69, 96, 0.08) 0%, rgba(145, 188, 210, 0.08) 50%, rgba(157, 136, 168, 0.06) 100%);

  /* Lichte accent varianten */
  --gold-light: rgba(225, 180, 56, 0.15);
  --purple-light: rgba(115, 69, 96, 0.12);
  --blue-light: rgba(145, 188, 210, 0.15);
  --lavender-light: rgba(157, 136, 168, 0.12);

  /* Glow effecten */
  --glow-purple: 0 0 40px rgba(115, 69, 96, 0.2);
  --glow-blue: 0 0 40px rgba(145, 188, 210, 0.25);
  --glow-gold: 0 0 30px rgba(225, 180, 56, 0.3);

  /* Border radius */
  --radius: 20px;
  --radius-sm: 12px;

  /* Container */
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

/* Quill editor alignment classes (used in rendered content) */
.ql-align-center { text-align: center; }
.ql-align-right { text-align: right; }
.ql-align-justify { text-align: justify; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

@media (max-width: 600px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* Gradient orbs achtergrond */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(115, 69, 96, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(145, 188, 210, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 60% 80%, rgba(157, 136, 168, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 10% 60%, rgba(145, 188, 210, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Subtiel grid patroon over de orbs */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(115, 69, 96, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 69, 96, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 40%, transparent 70%);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

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

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

::selection {
  background: var(--purple);
  color: white;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #E8C068 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(212, 168, 75, 0.25);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn--primary:hover::before {
  transform: translateX(100%);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(212, 168, 75, 0.45);
  background-position: 100% 100%;
}

.btn--secondary {
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.btn--secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(115, 69, 96, 0.08) 0%, rgba(145, 188, 210, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn--secondary:hover::before {
  opacity: 1;
}

.btn--secondary:hover {
  background: var(--bg-3);
  border-color: var(--purple);
  transform: translateY(-1px);
  box-shadow: var(--glow-purple);
}

/* Paars/Blauw gradient knop */
.btn--gradient {
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue-dark) 100%);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(115, 69, 96, 0.25);
}

.btn--gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--purple) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn--gradient:hover::before {
  opacity: 1;
}

.btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(115, 69, 96, 0.35);
}

/* Outline variant met gradient border */
.btn--outline-gradient {
  background: transparent;
  color: var(--purple);
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg), var(--bg)), linear-gradient(135deg, var(--purple), var(--blue));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
}

.btn--outline-gradient:hover {
  background-image: linear-gradient(135deg, rgba(115, 69, 96, 0.08), rgba(145, 188, 210, 0.08)), linear-gradient(135deg, var(--purple), var(--blue));
  transform: translateY(-2px);
  box-shadow: var(--glow-purple);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  padding: 12px 0;
}

.btn--ghost:hover {
  color: var(--purple);
}

/* ===== ANIMATIES ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
    filter: brightness(1);
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
    filter: brightness(1.1);
  }
  75% {
    background-position: 50% 0%;
  }
}

/* ===== LABEL ===== */
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: transparent;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 12px;
}

/* ===== EVENTS SECTION ===== */
.events {
  padding: 48px 32px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.events__header {
  margin-bottom: 40px;
}

.events__header h2 {
  font-size: 32px;
  font-weight: 700;
}

.events__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  text-decoration: none;
}

.event-card:hover {
  border-color: var(--purple);
  transform: translateX(4px);
  box-shadow: var(--glow-purple);
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue-dark) 100%);
  border-radius: 8px;
  color: white;
}

.event-card__dag {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.event-card__maand {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.event-card__content {
  flex: 1;
}

.event-card__content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.event-card__meta {
  font-size: 14px;
  color: var(--text-3);
}

.event-card__arrow {
  font-size: 20px;
  color: var(--purple);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.event-card:hover .event-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .events {
    padding: 40px 20px 60px;
  }

  .event-card {
    padding: 16px;
    gap: 16px;
  }

  .event-card__date {
    min-width: 50px;
    height: 50px;
  }

  .event-card__dag {
    font-size: 20px;
  }

  .event-card__arrow {
    display: none;
  }
}

/* ===== PIJLER PAGE ===== */
.pijler-hero {
  position: relative;
  padding: 140px 24px 80px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .pijler-hero { padding-top: 136px; }
}

.pijler-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, color-mix(in srgb, var(--accent) 15%, transparent) 0%, transparent 60%);
}

.pijler-hero__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .pijler-hero__content {
    grid-template-columns: 1fr;
  }
}

.pijler-hero__label {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 6px;
  margin-bottom: 20px;
}

.pijler-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}

.pijler-hero blockquote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.7;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.pijler-hero cite {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-3);
  font-style: normal;
}

.pijler-hero__visual {
  aspect-ratio: 16/10;
}

/* Image Swap */
.img-swap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.img-swap__layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.img-swap__layer--1 { opacity: 1; }

.img-swap:hover .img-swap__layer--1 {
  opacity: 0.15;
  transition-duration: 1.2s;
}

.img-swap:hover .img-swap__layer--2 {
  opacity: 1;
  transition-delay: 0.2s;
  transition-duration: 1.2s;
}

.img-swap:hover .img-swap__layer--3 {
  opacity: 1;
  transition-delay: 0.6s;
  transition-duration: 1.2s;
}

/* Sub Card */
.sub-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sub-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.sub-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.sub-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sub-card:hover .sub-card__image img {
  transform: scale(1.05);
}

.sub-card h3 {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.sub-card--clickable {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.sub-card__arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.sub-card:hover .sub-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Sprekers mini grid voor pijler pagina */
.sprekers-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.spreker-mini-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.spreker-mini-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.spreker-mini-card__image {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-3);
}

.spreker-mini-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
  filter: grayscale(100%) contrast(1.05);
}

.spreker-mini-card:hover .spreker-mini-card__image img {
  filter: grayscale(0%) contrast(1);
}

.spreker-mini-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1815 0%, #0f0e0c 50%, #1a1815 100%);
}

.spreker-mini-card__image--placeholder img {
  width: 40%;
  height: auto;
  object-fit: contain;
  opacity: 0.25;
  filter: sepia(1) saturate(2) hue-rotate(-10deg) brightness(1.4);
}

.spreker-mini-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.spreker-mini-card__body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spreker-mini-card__rol {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 8px;
}

.spreker-mini-card__badges {
  display: flex;
  gap: 6px;
}

.spreker-mini-card__badges .badge {
  padding: 2px 8px;
  font-size: 11px;
}

/* Spreker/Trainer badges */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

.badge--spreker {
  background: rgba(212, 168, 75, 0.15);
  color: var(--gold);
}

.badge--trainer {
  background: rgba(91, 140, 109, 0.15);
  color: var(--green);
}

/* Artikel Card */
.artikel-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.artikel-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateX(8px);
}

.artikel-card__image {
  position: relative;
  display: block;
  width: 100px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.artikel-card__image img {
  object-fit: cover;
}

.artikel-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.artikel-card__date {
  font-size: 12px;
  color: var(--text-3);
}

.artikel-card h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 4px 0;
}

.artikel-card:hover h4 {
  color: var(--purple);
}

.artikel-card__author {
  font-size: 12px;
  color: var(--text-3);
}

.sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.artikelen-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
}

/* Pijler Downloads Grid */
.pijler-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.pijler-download {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.pijler-download:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.pijler-download__cover {
  position: relative;
  height: 100px;
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 60%, var(--blue-dark)) 100%);
}

.pijler-download__cover-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pijler-download__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  color: white;
  border-radius: 4px;
}

.pijler-download__body {
  padding: 20px;
}

.pijler-download h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
}

.pijler-download p {
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 12px;
  line-height: 1.5;
}

.pijler-download__meta {
  font-size: 12px;
  color: var(--text-3);
}

.section__footer {
  margin-top: 24px;
}

@media (max-width: 640px) {
  .pijler-downloads-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BLOG PAGE ===== */
.filters-section {
  padding: 24px 0 40px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-2);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
}

.filter-btn.active {
  color: var(--bg);
  background: var(--accent, var(--purple));
  border-color: var(--accent, var(--purple));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.no-articles {
  text-align: center;
  padding: 60px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.no-articles p {
  color: var(--text-2);
  margin-bottom: 20px;
}

.cta-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, rgba(167,139,250,0.1) 0%, rgba(103,232,249,0.05) 100%);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: var(--radius);
  text-align: center;
}

.cta-card h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-card p {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 24px;
}

/* Blog Card */
.blog-grid-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  animation: slideUp 0.5s ease-out backwards;
  animation-delay: calc(var(--delay) * 0.05s);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-grid-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(115, 69, 96, 0.12),
    0 0 0 1px rgba(115, 69, 96, 0.1),
    inset 0 1px 0 rgba(145, 188, 210, 0.1);
}

.blog-grid-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-grid-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-grid-card:hover .blog-grid-card__image img {
  transform: scale(1.05);
}

.blog-grid-card__cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  border-radius: 6px;
}

.blog-grid-card__body {
  padding: 24px;
}

.blog-grid-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-grid-card__date {
  font-size: 12px;
  color: var(--text-3);
}

.blog-grid-card__readtime {
  font-size: 12px;
  color: var(--text-3);
  opacity: 0.7;
}

.blog-grid-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 8px 0 12px;
  transition: color 0.2s;
}

.blog-grid-card:hover h3 {
  color: var(--purple);
}

.blog-grid-card__body > p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-grid-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.blog-grid-card__author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-grid-card__author span {
  font-size: 13px;
  color: var(--text-2);
}

/* ===== BLOG SEARCH ===== */
.blog-search {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: all 0.2s;
}

.blog-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(225, 180, 56, 0.1);
}

.blog-search__icon {
  flex-shrink: 0;
  color: var(--text-3);
}

.blog-search__input {
  flex: 1;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
}

.blog-search__input::placeholder {
  color: var(--text-3);
}

.blog-search__clear {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: var(--bg-3);
  border-radius: 50%;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.2s;
}

.blog-search__clear:hover {
  background: var(--border);
  color: var(--text);
}

.blog-results-count {
  text-align: center;
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 8px;
}

/* ===== BLOG PAGINATION ===== */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.blog-pagination__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-2);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-pagination__btn:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--text);
}

.blog-pagination__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.blog-pagination__pages {
  display: flex;
  gap: 4px;
}

.blog-pagination__page {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-2);
  color: var(--text-2);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-pagination__page:hover {
  border-color: var(--gold);
}

.blog-pagination__page.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1a1a;
  font-weight: 600;
}

@media (max-width: 600px) {
  .blog-pagination {
    flex-wrap: wrap;
  }
  .blog-pagination__pages {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
  }
}

/* ===== BLOG POST PAGE ===== */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 24px 100px; /* Extra padding for nav + banner */
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 32px;
}

.breadcrumbs a {
  color: var(--text-3);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--purple);
}

.breadcrumbs__sep {
  color: var(--text-3);
  opacity: 0.5;
}

.breadcrumbs__current {
  color: var(--text-2);
}

/* Author Badge (header) */
.blog-post__header-authors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.2s;
}

.author-badge:hover {
  border-color: rgba(255,255,255,0.15);
  background: var(--bg-3);
}

.author-badge img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.blog-post__header {
  margin-bottom: 48px;
}

.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.blog-post__cat {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}

.blog-post__cat:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.blog-post__serie-badge {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(252, 211, 77, 0.15);
  border: 1px solid rgba(252, 211, 77, 0.3);
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
}

.blog-post__serie-badge:hover {
  background: rgba(252, 211, 77, 0.25);
  border-color: rgba(252, 211, 77, 0.5);
  transform: translateY(-1px);
}

.blog-post__date {
  font-size: 13px;
  color: var(--text-3);
}

.blog-post__readtime {
  font-size: 13px;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
}

.blog-post__header h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog-post__excerpt {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
}

.blog-post__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}

.blog-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TABLE OF CONTENTS ===== */

.toc {
  max-width: 720px;
  margin: 0 auto 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.toc__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toc__toggle:hover {
  background: rgba(255,255,255,0.03);
}

.toc__chevron {
  margin-left: auto;
  transition: transform 0.2s;
}

.toc__chevron.open {
  transform: rotate(180deg);
}

.toc__list {
  list-style: none;
  padding: 0 20px 16px;
  margin: 0;
  counter-reset: toc;
}

.toc__item {
  counter-increment: toc;
  padding: 0;
  margin: 0;
}

.toc__item a {
  display: block;
  padding: 6px 0;
  color: var(--text-2);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}

.toc__item a:hover {
  color: var(--gold);
}

.toc__item a::before {
  counter-increment: none;
  content: counter(toc) ". ";
  color: var(--text-3);
  font-size: 12px;
  margin-right: 6px;
}

.toc__item--3 a {
  padding-left: 20px;
  font-size: 13px;
}

.blog-post__content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}

.blog-post__content h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 48px 0 20px;
}

.blog-post__content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 36px 0 16px;
}

.blog-post__content p {
  margin-bottom: 24px;
}

.blog-post__content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--bg-2);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-2);
}

.blog-post__content ul,
.blog-post__content ol {
  margin: 24px 0;
  padding-left: 24px;
}

.blog-post__content li {
  margin-bottom: 12px;
}

.blog-post__content a {
  color: var(--purple);
  text-decoration: underline;
}

.blog-post__content a:hover {
  color: var(--cyan);
}

/* HTML content from WYSIWYG editor */
.blog-html-content {
  line-height: 1.8;
}

.blog-html-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 24px 0;
}

.blog-html-content strong {
  font-weight: 600;
}

.blog-html-content em {
  font-style: italic;
}

.blog-html-content u {
  text-decoration: underline;
}

/* Woord verdieping */
.woord-deepening {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 28px;
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.1) 0%, rgba(115, 69, 96, 0.08) 100%);
  border: 1px solid rgba(212, 168, 75, 0.22);
  border-radius: var(--radius);
}

.woord-deepening__label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.woord-deepening h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 650;
}

.woord-deepening p {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--text-2);
  line-height: 1.6;
}

.woord-deepening__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.woord-deepening__link {
  min-height: 118px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.woord-deepening__link:hover {
  border-color: rgba(212, 168, 75, 0.45);
  transform: translateY(-2px);
}

.woord-deepening__link strong,
.woord-deepening__link span {
  display: block;
}

.woord-deepening__link strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 14px;
}

.woord-deepening__link span {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.5;
}

.article-action-hub {
  max-width: 800px;
  margin: 18px auto 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.article-action-hub__label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-action-hub h4 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 650;
}

.article-action-hub__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.article-action-hub__link {
  min-height: 112px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.article-action-hub__link:hover {
  border-color: rgba(157, 196, 212, 0.42);
  background: rgba(157, 196, 212, 0.07);
  transform: translateY(-2px);
}

.article-action-hub__link strong,
.article-action-hub__link span {
  display: block;
}

.article-action-hub__link strong {
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
}

.article-action-hub__link span {
  color: var(--text-2);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .woord-deepening {
    padding: 22px;
  }

  .woord-deepening__links {
    grid-template-columns: 1fr;
  }

  .woord-deepening__link {
    min-height: auto;
  }

  .article-action-hub {
    padding: 20px;
  }

  .article-action-hub__grid {
    grid-template-columns: 1fr;
  }

  .article-action-hub__link {
    min-height: auto;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .article-action-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Author info */
.blog-post__authors {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.blog-post__authors h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.author-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: all 0.2s;
}

.author-card:hover {
  border-color: rgba(255,255,255,0.15);
}

.author-card__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.author-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card__info h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.author-card__info span {
  font-size: 13px;
  color: var(--text-3);
}

.author-card__info p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 12px;
}

/* ===== RELATED ARTICLES ===== */
.blog-post__related {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.blog-post__related h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-2);
}

.blog-post__related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.related-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card:hover .related-card__image img {
  transform: scale(1.05);
}

.related-card__tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  color: white;
}

.related-card__body {
  padding: 12px;
}

.related-card__body h5 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card__body p {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

@media (max-width: 700px) {
  .blog-post__related-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .related-card {
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .related-card__image {
    aspect-ratio: 1;
  }

  .related-card__tag {
    display: none;
  }

  .related-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ===== ONDERSTEUNING CTA ===== */
.spreker-cta {
  margin-top: 64px;
  margin-bottom: 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(145, 188, 210, 0.1) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
}

.spreker-cta__content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.spreker-cta__content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.spreker-cta__content p strong {
  color: var(--blue);
}

/* ===== BLOG SERIE NAVIGATIE ===== */
.blog-post__serie {
  margin-top: 60px;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.blog-post__serie h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.serie-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.serie-nav__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s;
}

.serie-nav__item:hover {
  border-color: var(--gold);
  background: rgba(252, 211, 77, 0.05);
}

.serie-nav__item--active {
  border-color: var(--gold);
  background: rgba(252, 211, 77, 0.1);
}

.serie-nav__item--active .serie-nav__num {
  background: var(--gold);
  color: var(--bg-1);
}

.serie-nav__num {
  flex-shrink: 0;
  padding: 4px 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.serie-nav__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
}

.serie-nav__item:hover .serie-nav__title {
  color: var(--gold);
}

@media (max-width: 600px) {
  .blog-post__serie {
    padding: 20px;
  }

  .serie-nav__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
  }

  .serie-nav__title {
    font-size: 14px;
  }
}

/* ===== BIJBEL TOOLTIP ===== */
.bijbel-ref {
  position: relative;
  display: inline;
  color: var(--purple, #734560);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: rgba(115, 69, 96, 0.5);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}

.bijbel-ref:hover,
.bijbel-ref:focus {
  color: var(--purple, #734560);
  text-decoration-color: var(--purple, #734560);
  text-decoration-style: solid;
  outline: none;
}

/* Bijbel Modal - Gecentreerd in viewport */
.bijbel-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: modalFadeIn 0.25s ease forwards;
}

@keyframes modalFadeIn {
  to {
    opacity: 1;
  }
}

.bijbel-modal__content {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 80vh;
  overflow-y: auto;
  background: var(--bg, #fefdfb);
  border: 2px solid var(--purple, #734560);
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.bijbel-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2, #f8f6f3);
  border: 1px solid var(--border, rgba(0, 0, 0, 0.1));
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 1;
}

.bijbel-modal__close:hover {
  background: var(--purple-light, rgba(115, 69, 96, 0.15));
  border-color: var(--purple, #734560);
}

.bijbel-modal__close svg {
  width: 18px;
  height: 18px;
  color: var(--text-2, #4a4a4a);
}

.bijbel-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  padding-right: 56px; /* Ruimte voor sluit knop */
  background: var(--purple-light, rgba(115, 69, 96, 0.1));
  border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.1));
}

.bijbel-modal__ref {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple, #734560);
}

.bijbel-modal__vertaling-toggle {
  display: flex;
  gap: 0;
  background: var(--bg, #fefdfb);
  border-radius: 6px;
  border: 1px solid var(--border, rgba(0, 0, 0, 0.1));
  overflow: hidden;
}

.bijbel-modal__vertaling-btn {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3, #7a7a7a);
  background: transparent;
  padding: 6px 12px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.bijbel-modal__vertaling-btn:hover {
  background: var(--purple-light, rgba(115, 69, 96, 0.1));
  color: var(--purple, #734560);
}

.bijbel-modal__vertaling-btn.active {
  background: var(--purple, #734560);
  color: white;
}

.bijbel-modal__body {
  padding: 24px;
}

.bijbel-modal__context {
  margin: 0 0 16px 0;
  padding: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-3, #7a7a7a);
  font-style: italic;
  border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.bijbel-modal__context:last-of-type {
  margin: 16px 0 0 0;
  padding: 16px 0 0 0;
  border-bottom: none;
  border-top: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.bijbel-modal__tekst {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  font-style: italic;
  font-weight: 500;
  color: var(--purple, #734560);
}

.bijbel-modal__loading {
  color: var(--text-3, #7a7a7a);
}

.bijbel-modal__error {
  color: #dc2626;
}

.bijbel-modal__opmerking {
  margin: 16px 0 0 0;
  padding: 12px;
  background: var(--gold-light, rgba(225, 180, 56, 0.1));
  border-radius: 8px;
  font-size: 13px;
  color: var(--gold-dark, #a17c1a);
}

.bijbel-modal__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border, rgba(0, 0, 0, 0.1));
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}

.bijbel-modal__link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 16px 24px;
  background: var(--bg-2, #f8f6f3);
  color: var(--purple, #734560);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.bijbel-modal__link + .bijbel-modal__link {
  border-left: 1px solid var(--border, rgba(0, 0, 0, 0.1));
}

.bijbel-modal__link--woord {
  color: var(--gold-dark, #a17c1a);
}

.bijbel-modal__link:hover {
  background: var(--purple-light, rgba(115, 69, 96, 0.1));
  color: var(--purple, #734560);
}

/* Responsive - Modal op mobiel */
@media (max-width: 600px) {
  .bijbel-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .bijbel-modal__content {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
  }

  .bijbel-modal__header {
    padding: 16px 20px;
    padding-right: 52px;
  }

  .bijbel-modal__body {
    padding: 20px;
  }

  .bijbel-modal__tekst {
    font-size: 15px;
  }

  .bijbel-modal__links {
    grid-template-columns: 1fr;
  }

  .bijbel-modal__link + .bijbel-modal__link {
    border-left: 0;
    border-top: 1px solid var(--border, rgba(0, 0, 0, 0.1));
  }
}

/* ===== SEARCH ===== */
.nav__search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 13px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.2s;
}

.nav__search:hover {
  border-color: var(--purple);
  color: var(--text);
}

.nav__search svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav__search-text {
  display: inline-block;
  min-width: 100px;
  animation: searchFade 0.4s ease;
  font-style: italic;
  color: var(--text-3);
  white-space: nowrap;
}

@keyframes searchFade {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav__search {
    display: none;
  }
}

.mobile-menu__search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  cursor: pointer;
  margin-bottom: 16px;
}

.mobile-menu__search svg {
  width: 20px;
  height: 20px;
}

.mobile-menu__search-text {
  display: inline-block;
  min-width: 120px;
  animation: searchFade 0.4s ease;
  font-style: italic;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.search-modal {
  width: 100%;
  max-width: 600px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideDown 0.2s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-modal__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.search-modal__icon {
  width: 20px;
  height: 20px;
  color: var(--text-3);
  flex-shrink: 0;
}

.search-modal__input {
  flex: 1;
  background: none;
  border: none;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  outline: none;
}

.search-modal__input::placeholder {
  color: var(--text-3);
}

.search-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.search-modal__close kbd {
  font-family: inherit;
  font-size: 11px;
  padding: 4px 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-3);
}

.search-modal__results {
  max-height: 400px;
  overflow-y: auto;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.search-result:hover {
  background: var(--bg-3);
}

.search-result:last-child {
  border-bottom: none;
}

.search-result__type {
  flex-shrink: 0;
}

.search-result__badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  border-radius: 4px;
}

.search-result__badge--page {
  background: var(--bg-3);
  color: var(--text-2);
}

.search-result__content {
  flex: 1;
  min-width: 0;
}

.search-result__title {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.search-result__desc {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result__arrow {
  width: 18px;
  height: 18px;
  color: var(--text-3);
  opacity: 0;
  transition: opacity 0.15s;
  flex-shrink: 0;
}

.search-result:hover .search-result__arrow {
  opacity: 1;
}

.search-modal__empty,
.search-modal__hint {
  padding: 32px 20px;
  text-align: center;
}

.search-modal__empty p,
.search-modal__hint p {
  color: var(--text-3);
  font-size: 14px;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: opacity 0.3s ease;
}

/* ===== BEWEGING BANNER ===== */
.beweging-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  z-index: 101;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shimmer flash effect */
.beweging-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 168, 75, 0.15) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: flash 5s ease-in-out infinite;
}

@keyframes flash {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.beweging-banner__content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.beweging-banner__logo {
  width: 22px;
  height: 22px;
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(5deg); }
}

.beweging-banner__text {
  display: flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Individuele dansende letters */
.beweging-banner__char {
  display: inline-block;
  background: linear-gradient(180deg,
    #7B5B6D 0%,
    #9DC4D4 50%,
    #D4A84B 100%
  );
  background-size: 100% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: dance 2s ease-in-out infinite;
}

@keyframes dance {
  0%, 100% {
    transform: translateY(0);
    background-position: 0% 0%;
  }
  25% {
    transform: translateY(-2px);
    background-position: 0% 50%;
  }
  50% {
    transform: translateY(0);
    background-position: 0% 100%;
  }
  75% {
    transform: translateY(1px);
    background-position: 0% 50%;
  }
}

/* Taalswitch in banner */
.beweging-banner__lang {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.beweging-banner__lang:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 600px) {
  .beweging-banner { height: 32px; }
  .beweging-banner__text { font-size: 10px; letter-spacing: 0.06em; }
  .beweging-banner__logo { width: 18px; height: 18px; }
  .beweging-banner__lang { padding: 3px 8px; font-size: 9px; right: 10px; }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: all 0.3s ease;
}

@media (max-width: 600px) {
  .nav { top: 32px; }
}

.nav--blur {
  background: rgba(254,253,251,0.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 80px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .nav__inner { min-height: 60px; }
  .nav__logo img { width: 110px; }
}

@media (max-width: 380px) {
  .nav { padding: 0 12px; }
  .nav__logo img { width: 90px; }
}

/* Nav logo - Clean shine sweep effect */
.nav__logo {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.nav__logo img {
  width: 140px;
  height: auto;
  transition: transform 0.3s ease;
}

.nav__logo:hover img {
  transform: scale(1.03);
}

/* Shine sweep container - clips the shine effect */
.nav__logo-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: 4px;
}

.nav__logo-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
}

.nav__logo:hover .nav__logo-shine::after {
  animation: logoShine 0.6s ease-out forwards;
}

@keyframes logoShine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__item {
  position: relative;
}

.nav__item > a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav__item:hover > a {
  color: var(--text);
  background: var(--bg-2);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 200;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-2);
  border-radius: 8px;
  transition: all 0.15s;
}

.nav__dropdown a:hover {
  color: var(--text);
  background: var(--bg-3);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav__lang {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
}

.nav__lang:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  min-width: 36px;
  min-height: 36px;
  justify-content: center;
  align-items: center;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 600px) {
  .nav {
    padding: 0 16px;
  }

  .nav__inner {
    min-height: 60px;
    padding: 4px 0;
  }

  .nav__logo {
    min-width: 0;
    padding: 12px 0;
  }

  .nav__logo img {
    width: 104px;
    max-width: 34vw;
  }

  .nav__right {
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .nav {
    padding: 0 12px;
  }

  .nav__logo img {
    width: 88px;
  }
}

/* Nav Highlight Button */
.nav__btn {
  background: linear-gradient(135deg, var(--gold) 0%, #E8C068 50%, var(--gold) 100%) !important;
  background-size: 200% 200% !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 10px rgba(212, 168, 75, 0.25);
  position: relative;
  overflow: hidden;
}

.nav__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.nav__btn:hover::before {
  transform: translateX(100%);
}

.nav__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 168, 75, 0.45);
  background-position: 100% 100% !important;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 108px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  padding: 24px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

@media (max-width: 600px) {
  .mobile-menu { top: 104px; }
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__submenu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
  padding: 0 0 8px 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__submenu a {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-2);
  border-bottom: 0;
}

.mobile-menu__submenu a:hover {
  color: var(--gold);
}

.mobile-menu__highlight {
  background: linear-gradient(135deg, var(--gold) 0%, #E8C068 100%);
  color: white !important;
  border-radius: 8px;
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(212, 168, 75, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  border-top: 1px solid transparent;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 30%, var(--bg-3) 100%);
  padding: 64px 24px 32px;
  overflow: hidden;
}

/* Gradient border top */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--gold) 50%, var(--blue-dark) 100%);
}

/* Subtle glow orbs in footer */
.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background:
    radial-gradient(ellipse 50% 60% at 10% 100%, rgba(115, 69, 96, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 90% 100%, rgba(145, 188, 210, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 50% 100%, rgba(212, 168, 75, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer__brand-section {}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__brand img {
  height: 22px;
  opacity: 0.9;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer__brand:hover img {
  transform: rotate(15deg) scale(1.15);
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(212, 168, 75, 0.3));
}

.footer__brand span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__mission {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-3);
  margin: 0;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links nav a {
  font-size: 14px;
  color: var(--text-3);
  transition: color 0.2s;
}

.footer__links nav a:hover {
  color: var(--gold);
}

.footer__contact p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  margin: 0 0 16px;
}

.footer__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue-dark) 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer__contact-btn svg {
  width: 18px;
  height: 18px;
}

.footer__contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115, 69, 96, 0.3);
}

.footer__woord h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.4px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.footer__woord p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  margin: 0 0 14px;
}

.footer__woord-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 16px;
}

.footer__woord-links a {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.footer__woord-links a:hover {
  border-color: var(--accent);
}

.footer__woord-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #b08a3a 100%);
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer__woord-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 75, 0.3);
}

.footer__woord-cta svg {
  width: 14px;
  height: 14px;
}

.woord-bridge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(212, 168, 75, 0.08) 0%, rgba(157, 196, 212, 0.05) 60%, rgba(123, 91, 109, 0.06) 100%);
  border: 1px solid rgba(212, 168, 75, 0.18);
}

.woord-bridge__body {
  flex: 1 1 320px;
  min-width: 0;
}

.woord-bridge__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.woord-bridge__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
}

.woord-bridge__text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}

.woord-bridge__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.woord-bridge__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.woord-bridge__link:hover {
  border-color: var(--accent);
}

.woord-bridge__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, #b08a3a 100%);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.woord-bridge__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 75, 0.35);
}

.woord-bridge__cta svg {
  width: 18px;
  height: 18px;
}

.section--woord-bridge {
  padding-top: 24px;
}

.footer__bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-3);
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-3);
}

.footer__divider {
  margin: 0 8px;
  color: var(--text-3);
  opacity: 0.5;
}

.footer__employee-link {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer__employee-link:hover {
  opacity: 1;
  color: var(--gold);
}

/* VrijLeven branding */
.footer__vl {
  text-align: center;
  padding-top: 1rem;
}
.footer__vl-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(0, 0, 0, 0.20);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__vl-link:hover {
  color: rgba(0, 0, 0, 0.45);
}
@keyframes vl-bolt-flash {
  0%, 85%, 100% { opacity: 0.7; }
  90% { opacity: 1; filter: brightness(0.5) drop-shadow(0 0 2px rgba(0,0,0,0.15)); }
}
.footer__vl-bolt {
  animation: vl-bolt-flash 8s ease-in-out infinite;
}

/* Footer Newsletter */
.footer-newsletter__heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-newsletter {
  background: rgba(255, 255, 255, 0.035);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(225, 180, 56, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-newsletter__text {
  font-size: 14px;
  color: var(--text-3);
  margin: 0 0 16px;
  line-height: 1.5;
}

.footer-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter__inputs {
  display: flex;
  gap: 10px;
}

.footer-newsletter__input {
  flex: 1;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
}

.footer-newsletter__input:focus {
  outline: none;
  border-color: var(--gold);
}

.footer-newsletter__input::placeholder {
  color: var(--text-3);
}

.footer-newsletter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #09090b;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-newsletter__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 180, 56, 0.4);
}

.footer-newsletter__btn svg {
  width: 16px;
  height: 16px;
}

.footer-newsletter__success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #22c55e;
  font-size: 14px;
}

.footer-newsletter__success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-newsletter__error {
  font-size: 13px;
  color: #ef4444;
}

.footer-newsletter__hint,
.footer-newsletter__privacy {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-3);
}

.footer-newsletter__hint {
  display: block;
}

.footer-newsletter__privacy {
  margin: 2px 0 0;
}

.footer-newsletter__privacy a {
  color: var(--gold);
  font-weight: 600;
}

.footer-newsletter__hint a,
.newsletter-popup__hint a,
.floating-cta__hint a {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-newsletter-wrapper {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-newsletter-wrapper {
    grid-column: span 1;
  }
  .footer-newsletter__inputs {
    flex-direction: column;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== NEWSLETTER POPUP ===== */
.newsletter-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.newsletter-popup {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.newsletter-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.newsletter-popup__close:hover {
  background: var(--bg-3);
}

.newsletter-popup__close svg {
  width: 18px;
  height: 18px;
  color: var(--text-3);
}

.newsletter-popup__content {
  padding: 40px 32px;
  text-align: center;
}

.newsletter-popup__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  position: relative;
}

.newsletter-popup__logo::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(212, 168, 75, 0.3) 0%, transparent 70%);
  animation: popupLogoPulse 2s ease-in-out infinite;
}

@keyframes popupLogoPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.newsletter-popup__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.newsletter-popup__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

.newsletter-popup__text {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.6;
  margin: 0 0 24px;
}

.newsletter-popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-popup__input {
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter-popup__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.1);
}

.newsletter-popup__input::placeholder {
  color: var(--text-3);
}

.newsletter-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue-dark) 100%);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.newsletter-popup__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115, 69, 96, 0.4);
}

.newsletter-popup__btn svg {
  width: 18px;
  height: 18px;
}

.newsletter-popup__success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: #22c55e;
  font-size: 15px;
}

.newsletter-popup__success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.newsletter-popup__error {
  font-size: 13px;
  color: #ef4444;
  text-align: center;
}

.newsletter-popup__hint {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}

.newsletter-popup__privacy {
  font-size: 12px;
  color: var(--text-3);
  margin: 16px 0 0;
}

.spinner-small {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.floating-cta__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #E8C068 50%, var(--gold) 100%);
  background-size: 200% 200%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 168, 75, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatHeart 3s ease-in-out infinite;
}

@keyframes floatHeart {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(212, 168, 75, 0.4);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 168, 75, 0.5);
  }
}

@keyframes buttonGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 168, 75, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(212, 168, 75, 0.6); }
}

.floating-cta__toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 35px rgba(212, 168, 75, 0.6);
  background-position: 100% 100%;
}

.floating-cta__toggle svg {
  width: 24px;
  height: 24px;
  color: white;
}

.floating-cta__panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.floating-cta.open .floating-cta__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-cta__section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.floating-cta__section p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.5;
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.floating-cta__btn svg {
  width: 18px;
  height: 18px;
}

.floating-cta__btn--donate {
  background: linear-gradient(135deg, var(--gold) 0%, #E8C068 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: white;
  position: relative;
  overflow: hidden;
}

.floating-cta__btn--donate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.floating-cta__btn--donate:hover::before {
  transform: translateX(100%);
}

.floating-cta__btn--donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 168, 75, 0.4);
  background-position: 100% 100%;
}

.floating-cta__divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.floating-cta__form {
  display: flex;
  gap: 8px;
}

.floating-cta__form input {
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.floating-cta__form input:focus {
  border-color: var(--purple);
}

.floating-cta__form input::placeholder {
  color: var(--text-3);
}

.floating-cta__form button {
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 600;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.floating-cta__form button:hover {
  background: var(--purple);
}

.floating-cta__form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.floating-cta__success {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #4ade80;
}

.floating-cta__error {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #f87171;
}

.floating-cta__hint,
.floating-cta__privacy {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-3);
}

@media (max-width: 600px) {
  .floating-cta {
    bottom: 16px;
    right: 16px;
  }
  .floating-cta__panel {
    width: calc(100vw - 32px);
    right: -8px;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 130px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(115, 69, 96, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(145, 188, 210, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(157, 136, 168, 0.08) 0%, transparent 40%);
}

/* Animated glow effect */
.page-header__bg::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(145, 188, 210, 0.15) 0%, transparent 60%);
  animation: headerGlow 8s ease-in-out infinite alternate;
}

@keyframes headerGlow {
  0% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.page-header__content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .page-header {
    padding: 120px 20px 44px;
  }

  .page-header__content {
    max-width: 100%;
  }

  .page-header h1 {
    font-size: clamp(34px, 10vw, 42px);
    letter-spacing: 0;
  }

  .page-header p {
    max-width: calc(100vw - 40px);
    margin-inline: auto;
    font-size: 16px;
    overflow-wrap: anywhere;
  }
}

/* ===== SECTION ===== */
.section {
  padding: 48px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  margin-bottom: 32px;
}

.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple);
  margin-bottom: 12px;
}

.section__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section__desc {
  color: var(--text-2);
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

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

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__body {
  padding: 24px;
}

.card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ===== UTILITY ===== */
.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== CONTACT PAGINA ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(115, 69, 96, 0.3);
  transform: translateY(-2px);
}

.info-card.highlight {
  background: linear-gradient(135deg, rgba(115, 69, 96, 0.08) 0%, rgba(145, 188, 210, 0.05) 100%);
  border-color: rgba(115, 69, 96, 0.2);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--purple);
}

.info-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-card > p {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 8px;
}

.info-card a {
  color: var(--purple);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.info-card a:hover {
  color: var(--purple-dark);
}

.info-card > span {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  display: block;
}

.info-card ul {
  list-style: none;
  margin-top: 12px;
}

.info-card li {
  font-size: 14px;
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.info-card li:last-child {
  border-bottom: none;
}

/* Contact Form */
.contact-form-wrapper {
  position: sticky;
  top: 100px;
}

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.form-help,
.form-privacy-note,
.form-security-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-3);
}

.form-help {
  margin: 0 0 28px;
}

.form-privacy-note {
  margin: -4px 0 16px;
}

.form-security-note {
  margin: 0 0 12px;
}

.form-privacy-note a {
  color: var(--purple);
  font-weight: 600;
}

.form-security-note a {
  color: var(--purple);
  font-weight: 600;
}

.btn:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.form-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #16a34a;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

.form-status svg {
  width: 18px;
  height: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(115, 69, 96, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237a7a7a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--purple);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-2);
  cursor: pointer;
}

/* Full width button in forms */
.contact-form .btn {
  width: 100%;
  justify-content: center;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ===== ENHANCED EVENTS SECTION ===== */
.events-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.events-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.events-section__title .label {
  margin-bottom: 8px;
}

.events-section__title h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--purple) 50%, var(--lavender) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
  animation-delay: 2s;
}

.events-section__title p {
  color: var(--text-3);
  font-size: 16px;
  margin: 0;
}

.events-section__all {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  transition: gap 0.2s;
}

.events-section__all:hover {
  gap: 12px;
}

.events-section__all svg {
  width: 18px;
  height: 18px;
}

.events-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.events-section__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

/* Featured Event Card */
.event-featured {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.event-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.event-featured:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.event-featured__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(212, 168, 75, 0.15);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  width: fit-content;
}

.event-featured__badge svg {
  width: 14px;
  height: 14px;
}

.event-featured__date {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.event-featured__weekdag {
  font-size: 14px;
  color: var(--text-3);
  text-transform: capitalize;
}

.event-featured__dag {
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.event-featured__maand {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-2);
}

.event-featured__content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
}

.event-featured__desc {
  color: var(--text-3);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.event-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.event-featured__location,
.event-featured__time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-2);
}

.event-featured__location svg,
.event-featured__time svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.event-featured__arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.event-featured__arrow svg {
  width: 20px;
  height: 20px;
  color: white;
}

.event-featured:hover .event-featured__arrow {
  transform: scale(1.1);
}

/* Regular Event Card */
.event-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}

.event-card:hover {
  border-color: var(--gold);
  background: var(--bg-3);
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  padding: 12px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue-dark) 100%);
  border-radius: 10px;
}

.event-card__dag {
  font-size: 24px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.event-card__maand {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}

.event-card__content {
  flex: 1;
  min-width: 0;
}

.event-card__content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-card__meta {
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
}

.event-card__arrow {
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.2s;
}

.event-card:hover .event-card__arrow {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .events-section__grid {
    grid-template-columns: 1fr;
  }
  .events-section__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ===== DOWNLOADS SECTION ===== */
.downloads-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.downloads-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.downloads-section__header .label {
  margin-bottom: 8px;
}

.downloads-section__header h2 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 12px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 50%, var(--lavender) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
  animation-delay: 3s;
}

.downloads-section__header p {
  color: var(--text-3);
  font-size: 16px;
  margin: 0;
}

.downloads-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.download-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Cover section */
.download-card__cover {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.download-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.download-card__cover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 60%, black) 100%);
  opacity: 0.9;
}

.download-card__cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.download-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-card__downloads {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: white;
}

/* Body section */
.download-card__body {
  display: flex;
  flex-direction: column;
  padding: 24px;
  flex: 1;
}

.download-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}

.download-card__subtitle {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0 0 12px;
  flex: 1;
}

.download-card__meta {
  font-size: 12px;
  color: var(--text-3);
  margin: 0 0 20px;
}

/* Actions */
.download-card__actions {
  display: flex;
  gap: 10px;
}

.download-card__info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s;
  flex: 1;
  justify-content: center;
}

.download-card__info svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.download-card__info:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.download-card__info:hover svg {
  transform: translateX(3px);
}

.download-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--accent);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  transition: all 0.2s;
  flex: 1;
  justify-content: center;
}

.download-card__btn svg {
  width: 16px;
  height: 16px;
}

.download-card:hover .download-card__btn {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .downloads-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .downloads-section__grid {
    grid-template-columns: 1fr;
  }

  .download-card__actions {
    flex-direction: column;
  }
}

/* ===== AUTEUR DOWNLOADS ===== */
.auteur-downloads {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.auteur-downloads .download-card {
  display: flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auteur-downloads .download-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.download-card__image {
  position: relative;
  width: 140px;
  min-height: 180px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--bg-3, #1a1a1a);
}

.download-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.download-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.download-card__placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.5);
}

.download-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.download-card__type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
  margin-bottom: 8px;
}

.download-card__content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.download-card__content p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

@media (max-width: 500px) {
  .auteur-downloads {
    grid-template-columns: 1fr;
  }
  .download-card__image {
    width: 110px;
  }
}

/* ===== PIJLER DOWNLOADS ===== */
.pijler-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.pijler-download {
  display: flex;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pijler-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pijler-download__cover {
  position: relative;
  width: 140px;
  min-height: 160px;
  flex-shrink: 0;
  overflow: hidden;
}

.pijler-download__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.pijler-download__cover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 60%, black) 100%);
  opacity: 0.9;
}

.pijler-download__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 2;
}

.pijler-download__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pijler-download__body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.pijler-download__body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 8px;
}

.pijler-download__meta {
  font-size: 12px;
  color: var(--text-3);
}

@media (max-width: 600px) {
  .pijler-downloads-grid {
    grid-template-columns: 1fr;
  }
  .pijler-download__cover {
    width: 100px;
  }
}

/* ===== HEBREEUWS ===== */
/* Basis Hebreeuwse tekst */
.hebrew,
[lang="he"] {
  font-family: 'Frank Ruhl Libre', 'Noto Sans Hebrew', 'David Libre', serif;
  direction: rtl;
  text-align: right;
  line-height: 1.8;
}

/* Inline Hebreeuws (binnen Nederlandse tekst) */
.hebrew-inline {
  font-family: 'Frank Ruhl Libre', 'Noto Sans Hebrew', serif;
  direction: rtl;
  unicode-bidi: isolate;
}

/* Groot Hebreeuws (voor uitvergroten/studie) */
.hebrew-large {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 2.5rem;
  line-height: 1.6;
  direction: rtl;
  letter-spacing: 0.05em;
}

.hebrew-xlarge {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 4rem;
  line-height: 1.4;
  direction: rtl;
  letter-spacing: 0.08em;
}

/* Hebreeuwse letter met toelichting */
.hebrew-letter {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  margin: 4px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.hebrew-letter:hover {
  background: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hebrew-letter__char {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 3rem;
  color: var(--text);
  line-height: 1;
}

.hebrew-letter__name {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hebrew-letter__meaning {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: 4px;
}

/* Hebreeuwse woord met vertaling */
.hebrew-word {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 16px;
  margin: 4px 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--purple-light));
  border-radius: var(--radius-sm);
}

.hebrew-word__text {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.5rem;
  color: var(--text);
  direction: rtl;
}

.hebrew-word__transliteration {
  font-size: 0.75rem;
  color: var(--purple);
  font-style: italic;
  margin-top: 4px;
}

.hebrew-word__translation {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: 2px;
}

/* Hebreeuwse tekst blok (bijv. voor citaten) */
.hebrew-block {
  font-family: 'Frank Ruhl Libre', serif;
  direction: rtl;
  text-align: right;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(225, 180, 56, 0.08), rgba(115, 69, 96, 0.05));
  border-right: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.25rem;
  line-height: 2;
  margin: 24px 0;
}

/* Interactieve Hebreeuwse letter grid */
.hebrew-alphabet {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 12px;
  padding: 24px;
  background: var(--bg-2);
  border-radius: var(--radius);
}

/* Hebreeuwse tekst met hover tooltip */
.hebrew-tooltip {
  position: relative;
  cursor: help;
  border-bottom: 2px dotted var(--gold);
}

.hebrew-tooltip:hover::after {
  content: attr(data-meaning);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  direction: ltr;
  white-space: nowrap;
  border-radius: 6px;
  margin-bottom: 8px;
  z-index: 10;
}

.hebrew-tooltip:hover::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--text);
  margin-bottom: -4px;
  z-index: 10;
}

/* Responsive */
@media (max-width: 600px) {
  .hebrew-large {
    font-size: 2rem;
  }

  .hebrew-xlarge {
    font-size: 3rem;
  }

  .hebrew-letter__char {
    font-size: 2.5rem;
  }

  .hebrew-alphabet {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  }
}

/* ===== NEWSLETTER ARCHIVE ===== */

.newsletter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.newsletter-archive__meta {
  max-width: 720px;
  margin: 0 auto 16px;
  color: var(--text-3);
  font-size: 13px;
}

.newsletter-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.newsletter-card:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.newsletter-card__icon {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.7;
}

.newsletter-card__body {
  flex: 1;
  min-width: 0;
}

.newsletter-card__date {
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 4px 0 0;
  color: var(--text);
}

.newsletter-card__excerpt {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
  margin: 8px 0 0;
}

.newsletter-card__badge,
.newsletter-detail__badge {
  flex-shrink: 0;
  border: 1px solid rgba(212,168,75,0.28);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 9px;
  text-transform: uppercase;
}

.newsletter-card__arrow {
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform 0.2s;
}

.newsletter-card:hover .newsletter-card__arrow {
  transform: translateX(3px);
  color: var(--gold);
}

.newsletter-detail__date {
  font-size: 13px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter-detail__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.newsletter-detail__intro {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.7;
  margin: -12px 0 24px;
}

.newsletter-detail__content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.newsletter-detail__frame {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
  background: #0f1419;
}

/* ===== ONDERSTEUNING ===== */
.ond-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.ond-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.ond-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.ond-card__header {
  border-left: 4px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 12px;
}

.ond-card__header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.ond-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 16px;
}

.ond-card__people {
  background: var(--bg);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
  flex: 1;
}

.ond-card__people-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
  margin-bottom: 10px;
}

.ond-card__faces {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ond-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ond-face:hover {
  transform: translateY(-2px);
}

.ond-face img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.ond-face:hover img {
  filter: grayscale(0%);
  border-color: var(--gold);
}

.ond-face__placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.ond-face span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
}

.ond-face:hover span {
  color: var(--gold);
}

.ond-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ond-approach {
  max-width: 700px;
}

.ond-approach p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 16px;
}

.ond-values {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ond-values li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.ond-values li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.ond-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.ond-resource {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.ond-resource:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.ond-resource strong {
  font-size: 16px;
}

.ond-resource span {
  font-size: 14px;
  color: var(--text-2);
}

@media (max-width: 600px) {
  .ond-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SERIE ARTICLES ===== */

.serie-articles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.serie-article {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.serie-article:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.serie-article__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,168,75,0.15);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.serie-article__image {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.serie-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serie-article__body {
  flex: 1;
  min-width: 0;
}

.serie-article__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.serie-article__cat {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.serie-article__date,
.serie-article__readtime {
  font-size: 12px;
  color: var(--text-3);
}

.serie-article h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
}

.serie-article p {
  font-size: 14px;
  color: var(--text-2);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.serie-article__author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.serie-article__author img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.serie-article__author span {
  font-size: 12px;
  color: var(--text-3);
}

@media (max-width: 640px) {
  .serie-article {
    flex-wrap: wrap;
  }
  .serie-article__image {
    display: none;
  }
  .newsletter-card {
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .newsletter-card__badge,
  .newsletter-card__arrow {
    display: none;
  }
  .newsletter-detail__frame {
    min-height: 820px;
  }
}

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .cursor-glow,
  .gradient-orb,
  .beweging-banner__char {
    animation: none !important;
  }
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}

.skip-to-content:focus {
  left: 0;
}
