/* Aago blog/artikel */

:root {
  --cream: #F7F3EE;
  --sand: #D8C3A5;
  --brown: #5A463B;
  --brown-deep: #3D2E24;
  --ink: #2F2F2F;
  --terra: #C06A4A;
  --terra-glow: #E08560;
  --moss: #849053;
  --moss-soft: #A5B272;
  --fuchsia: #E30B50;
  --fuchsia-glow: #FF2C6E;

  --body: 'Ubuntu', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--brown-deep);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--terra); color: var(--cream); }

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(192, 106, 74, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 80%, rgba(132, 144, 83, 0.10) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3CfeColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.9 0 0 0 0 0.8 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 1;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
section, nav, footer { position: relative; z-index: 3; }

/* ===== TOP BAR + NAV ===== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.6);
  border-bottom: 1px solid rgba(247, 243, 238, 0.08);
  background: var(--ink);
  position: relative; z-index: 10;
}
.topbar a { color: rgba(247, 243, 238, 0.7); text-decoration: none; }
.topbar a:hover { color: var(--terra-glow); }
.topbar .contact-line { display: flex; gap: 1.5rem; align-items: center; }
.topbar .contact-line .sep { opacity: 0.4; }

nav {
  position: sticky; top: 0;
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ink);
  z-index: 100;
  border-bottom: 1px solid rgba(247, 243, 238, 0.08);
}
nav .logo { display: flex; align-items: center; text-decoration: none; }
nav .logo img { height: 44px; width: auto; display: block; }
nav .nav-links { display: flex; gap: 2rem; align-items: center; }
nav .nav-links a {
  color: rgba(247, 243, 238, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}
nav .nav-links a:hover,
nav .nav-links a.active { color: var(--terra-glow); }
nav .cta {
  background: var(--cream);
  color: var(--brown-deep) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  font-weight: 500;
  border: 1.5px solid var(--cream);
  transition: all 0.3s ease;
}
nav .cta:hover {
  background: transparent;
  color: var(--cream) !important;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  font-size: 0.82rem;
  color: rgba(247, 243, 238, 0.55);
  letter-spacing: 0.02em;
}
.breadcrumb a {
  color: rgba(247, 243, 238, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb a:hover { color: var(--terra-glow); }
.breadcrumb .sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* ===== EVENT HERO ===== */
.event-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.event-hero-text .type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  background: rgba(192, 106, 74, 0.18);
  color: var(--terra-glow);
}
.event-hero-text .type-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
}
.event-hero-text h1 {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.event-hero-text h1 em {
  font-style: italic;
  color: var(--terra-glow);
  font-weight: 400;
}
.event-hero-text .tagline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(247, 243, 238, 0.82);
  margin-bottom: 2rem;
  font-weight: 300;
}

.event-meta {
  background: rgba(247, 243, 238, 0.05);
  border: 1px solid rgba(247, 243, 238, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.event-meta .meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(247, 243, 238, 0.06);
  font-size: 0.92rem;
}
.event-meta .meta-row:last-child { border-bottom: none; }
.event-meta .meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.5);
  font-weight: 500;
  min-width: 80px;
}
.event-meta .meta-value {
  color: var(--cream);
  font-weight: 400;
}
.event-meta .meta-value strong { font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-signup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--terra);
  color: var(--cream);
  padding: 1.05rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(192, 106, 74, 0.35);
}
.btn-signup:hover {
  background: var(--terra-glow);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(224, 133, 96, 0.5);
}
.btn-back {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 1.05rem 1.5rem;
  border: 1px solid rgba(247, 243, 238, 0.22);
  border-radius: 100px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-back:hover {
  border-color: var(--cream);
  background: rgba(247, 243, 238, 0.05);
}

.event-hero-photo {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}
.event-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.92);
}
.event-hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(61, 46, 36, 0.5) 100%);
  pointer-events: none;
}
.event-hero-photo .photo-credit {
  position: absolute;
  bottom: 1rem; right: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.75);
}

/* ===== STATEMENT ===== */
.event-statement {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--brown-deep) 0%, var(--brown) 100%);
  margin-top: 2rem;
}
.event-statement-inner {
  max-width: 800px;
  margin: 0 auto;
}
.event-statement p {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  line-height: 1.4;
  font-weight: 300;
  color: var(--cream);
  font-style: italic;
}
.event-statement p em {
  font-style: italic;
  color: var(--terra-glow);
  font-weight: 400;
}

/* ===== CONTENT SECTIES ===== */
.event-content {
  padding: 5rem 2rem;
  background: var(--cream);
  color: var(--brown);
}
.event-content-inner {
  max-width: 920px;
  margin: 0 auto;
}
.event-section {
  margin-bottom: 4rem;
}
.event-section:last-child { margin-bottom: 0; }
.event-section .overline {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.event-section .overline::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--terra);
}
.event-section h2 {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}
.event-section h2 em { font-style: italic; color: var(--terra); font-weight: 400; }
.event-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 1.2rem;
  max-width: 700px;
}
.event-section p:last-child { margin-bottom: 0; }
.event-section strong { font-weight: 500; color: var(--brown-deep); }

/* Bento style voor 'voor wie' / 'wat neem je mee' */
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.grid-card {
  background: rgba(247, 243, 238, 0.6);
  border: 1px solid rgba(192, 106, 74, 0.18);
  border-radius: 14px;
  padding: 1.8rem;
  transition: all 0.3s ease;
}
.grid-card:hover {
  background: var(--cream);
  border-color: var(--terra);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(90, 70, 59, 0.15);
}
.grid-card .icon {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 106, 74, 0.12);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--terra);
  font-size: 1.2rem;
}
.grid-card h3 {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.grid-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--brown);
  opacity: 0.82;
  margin: 0;
}

/* Programma timeline */
.program {
  border-left: 2px solid var(--sand);
  padding-left: 2rem;
  margin-top: 1.5rem;
  max-width: 700px;
}
.program-item {
  position: relative;
  padding-bottom: 2rem;
}
.program-item:last-child { padding-bottom: 0; }
.program-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 0.4rem;
  width: 14px; height: 14px;
  background: var(--terra);
  border-radius: 50%;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--sand);
}
.program-item .time {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.program-item h3 {
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.program-item p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--brown);
  opacity: 0.82;
  margin: 0;
}

/* FAQ */
.faq {
  margin-top: 1rem;
  max-width: 760px;
}
.faq-item {
  border-top: 1px solid rgba(90, 70, 59, 0.15);
}
.faq-item:last-child { border-bottom: 1px solid rgba(90, 70, 59, 0.15); }
.faq-q {
  padding: 1.3rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--brown);
  transition: color 0.3s ease;
  user-select: none;
}
.faq-q:hover { color: var(--terra); }
.faq-q .toggle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(192, 106, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--terra);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 400;
}
.faq-item.open .toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--brown);
  opacity: 0.85;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.3rem;
}

/* Begeleiders */
.begeleiders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}
.begeleider {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.begeleider-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--terra), var(--moss));
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-weight: 500;
  font-size: 1.4rem;
}
.begeleider h3 {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 0.3rem;
}
.begeleider .role {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.begeleider p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--brown);
  opacity: 0.82;
  margin: 0;
}

/* ===== INSCHRIJF CTA ===== */
.signup-cta {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--brown) 0%, var(--brown-deep) 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.signup-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at bottom, rgba(224, 133, 96, 0.32) 0%, transparent 60%);
  pointer-events: none;
}
.signup-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.signup-cta .overline {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.signup-cta .overline::before,
.signup-cta .overline::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--terra-glow);
}
.signup-cta h2 {
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.3rem;
}
.signup-cta h2 em { font-style: italic; color: var(--terra-glow); font-weight: 400; }
.signup-cta p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(247, 243, 238, 0.8);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-weight: 300;
}
.signup-cta .price-info {
  margin: 1.5rem 0 2rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(247, 243, 238, 0.05);
  border: 1px solid rgba(247, 243, 238, 0.1);
  border-radius: 12px;
}
.signup-cta .price-info .label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.5);
}
.signup-cta .price-info .amount {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--terra-glow);
}
.btn-signup-large {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--terra);
  color: var(--cream);
  padding: 1.2rem 2.4rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(192, 106, 74, 0.4);
}
.btn-signup-large:hover {
  background: var(--terra-glow);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(224, 133, 96, 0.55);
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(247, 243, 238, 0.7);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-inner .logo img { height: 32px; }
.footer-inner .copy {
  font-size: 0.78rem;
  color: rgba(247, 243, 238, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  .topbar { flex-direction: column; align-items: stretch; gap: 0.3rem; padding: 0.5rem 1.1rem; font-size: 0.64rem; letter-spacing: 0.05em; }
  .topbar .contact-line { align-self: flex-start; justify-content: flex-start; gap: 0.5rem; flex-wrap: nowrap; white-space: nowrap; }
  .topbar .contact-line .sep { display: inline; opacity: 0.4; }
  .topbar > div:last-child:not(.contact-line) { align-self: flex-end; justify-content: flex-end; text-align: right; }
  .topbar .loc-extra { display: none; }
  nav { padding: 0.8rem 1.2rem; }
  nav .logo img { height: 32px; }
  nav .nav-links a:not(.cta) { display: none; }
  nav .cta { font-size: 0.82rem; padding: 0.5rem 1rem; }

  .breadcrumb { padding: 1rem 1.2rem 0; font-size: 0.78rem; }
  .event-hero { padding: 2rem 1.2rem 1rem; grid-template-columns: 1fr; gap: 2rem; }
  .event-hero-photo { max-width: 380px; margin: 0 auto; }
  .event-hero-text h1 { font-size: 2rem; }

  .event-statement { padding: 3rem 1.2rem; }
  .event-content { padding: 3.5rem 1.2rem; }
  .event-section { margin-bottom: 3rem; }
  .event-section h2 { font-size: 1.6rem; }
  .event-grid { grid-template-columns: 1fr; }
  .begeleiders { grid-template-columns: 1fr; gap: 1.5rem; }

  .program { padding-left: 1.5rem; }
  .program-item::before { left: -1.9rem; }

  .signup-cta { padding: 4rem 1.2rem; }
  .signup-cta h2 { font-size: 1.8rem; }

  footer { padding: 2rem 1.2rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}



/* ===== BLOG ARTICLE ===== */
.article-hero { max-width: 820px; margin: 0 auto; padding: 3.5rem 2rem 2rem; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terra-glow); margin-bottom: 1.6rem;
}
.cat-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fuchsia); box-shadow: 0 0 10px var(--fuchsia-glow); }
.article-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.08; font-weight: 500;
  letter-spacing: -0.01em; margin-bottom: 1.6rem;
}
.article-hero h1 em { font-style: italic; color: var(--terra-glow); }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; align-items: center;
  font-size: 0.84rem; color: rgba(247,243,238,0.55); letter-spacing: 0.02em;
}
.article-meta .who { color: var(--cream); }
.article-meta .sep { opacity: 0.35; }

.hero-band {
  max-width: 1100px; margin: 1.5rem auto 0; padding: 0 2rem;
}
.hero-band .img {
  height: clamp(220px, 38vw, 440px); border-radius: 4px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(224,133,96,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(132,144,83,0.45) 0%, transparent 60%),
    linear-gradient(135deg, var(--brown) 0%, var(--brown-deep) 60%, var(--ink) 100%);
  border: 1px solid rgba(247,243,238,0.08);
}
.hero-band .img::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.9 0 0 0 0 0.8 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero-band .caption {
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(247,243,238,0.4); margin-top: 0.7rem; text-align: right;
}

.prose { max-width: 720px; margin: 3rem auto 0; padding: 0 2rem; }
.prose > .lede {
  font-size: 1.35rem; line-height: 1.55; color: var(--cream); font-weight: 300;
  margin-bottom: 2.2rem;
}
.prose > .lede em { font-style: italic; color: var(--terra-glow); }
.prose p { margin-bottom: 1.4rem; color: rgba(247,243,238,0.82); }
.prose p em { font-style: italic; color: var(--sand); }
.prose h2 {
  font-size: 1.7rem; font-weight: 500; line-height: 1.2; margin: 2.8rem 0 1.1rem;
  color: var(--cream); letter-spacing: -0.01em;
}
.prose h2 em { font-style: italic; color: var(--terra-glow); }
.prose h3 { font-size: 1.2rem; font-weight: 500; margin: 2rem 0 0.8rem; color: var(--sand); }
.prose a { color: var(--terra-glow); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { margin: 0 0 1.4rem 1.2rem; }
.prose li { margin-bottom: 0.6rem; color: rgba(247,243,238,0.82); }
.prose li::marker { color: var(--terra); }

.pull {
  margin: 2.6rem 0; padding: 0 0 0 1.6rem; border-left: 3px solid var(--terra);
  font-size: 1.5rem; line-height: 1.4; font-weight: 300; font-style: italic; color: var(--cream);
}
.pull em { color: var(--terra-glow); font-style: italic; }

.ritueel {
  margin: 2.4rem 0; padding: 1.8rem 2rem; border-radius: 4px;
  background: rgba(132,144,83,0.10); border: 1px solid rgba(132,144,83,0.25);
}
.ritueel h3 { margin-top: 0; color: var(--moss-soft); }
.ritueel ol { margin: 0 0 0 1.2rem; }
.ritueel li { margin-bottom: 0.7rem; color: rgba(247,243,238,0.85); }
.ritueel li::marker { color: var(--moss-soft); font-weight: 700; }

/* author bio */
.author {
  max-width: 720px; margin: 3.2rem auto 0; padding: 1.8rem 2rem; display: flex; gap: 1.4rem;
  align-items: center; border-top: 1px solid rgba(247,243,238,0.1); border-bottom: 1px solid rgba(247,243,238,0.1);
}
.author .avatar {
  flex: 0 0 64px; width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--terra-glow), var(--brown) 70%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 500; color: var(--cream);
}
.author .who-name { font-weight: 500; color: var(--cream); margin-bottom: 0.2rem; }
.author .who-role { font-size: 0.82rem; color: rgba(247,243,238,0.55); }
.author .who-bio { font-size: 0.9rem; color: rgba(247,243,238,0.7); margin-top: 0.5rem; }

/* related */
.related { max-width: 1100px; margin: 4rem auto 0; padding: 0 2rem; }
.related .overline { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra-glow); }
.related h2 { font-size: 1.9rem; font-weight: 500; margin: 0.6rem 0 1.8rem; }
.related h2 em { font-style: italic; color: var(--terra-glow); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.rcard {
  display: block; text-decoration: none; color: inherit; border-radius: 4px; overflow: hidden;
  background: rgba(247,243,238,0.03); border: 1px solid rgba(247,243,238,0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.rcard:hover { transform: translateY(-4px); border-color: rgba(224,133,96,0.4); }
.rcard .rimg { height: 110px; background: linear-gradient(135deg, var(--brown), var(--ink)); }
.rcard:nth-child(2) .rimg { background: linear-gradient(135deg, var(--moss), var(--brown-deep)); }
.rcard:nth-child(3) .rimg { background: linear-gradient(135deg, var(--terra), var(--brown-deep)); }
.rcard .rbody { padding: 1.1rem 1.2rem 1.4rem; }
.rcard .rcat { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra-glow); }
.rcard h3 { font-size: 1.05rem; font-weight: 500; margin: 0.5rem 0 0; line-height: 1.25; color: var(--cream); }
.rcard h3 em { font-style: italic; color: var(--terra-glow); }

/* newsletter */
.news { max-width: 820px; margin: 4.5rem auto 0; padding: 3rem 2rem 1rem; text-align: center; }
.news h2 { font-size: 1.9rem; font-weight: 500; margin-bottom: 0.8rem; }
.news h2 em { font-style: italic; color: var(--terra-glow); }
.news p { color: rgba(247,243,238,0.65); max-width: 460px; margin: 0 auto 1.6rem; }
.news-form { display: flex; gap: 0.6rem; max-width: 440px; margin: 0 auto; }
.news-form input {
  flex: 1; padding: 0.85rem 1.1rem; border-radius: 4px; border: 1px solid rgba(247,243,238,0.18);
  background: rgba(247,243,238,0.04); color: var(--cream); font-family: var(--body); font-size: 0.95rem;
}
.news-form input::placeholder { color: rgba(247,243,238,0.4); }
.news-form button {
  padding: 0.85rem 1.4rem; border: none; border-radius: 4px; cursor: pointer;
  background: var(--terra); color: var(--cream); font-family: var(--body); font-weight: 500; font-size: 0.95rem;
  transition: background 0.2s ease;
}
.news-form button:hover { background: var(--terra-glow); }

.back-link { max-width: 720px; margin: 2.5rem auto 0; padding: 0 2rem 1rem; }
.back-link a { color: rgba(247,243,238,0.6); text-decoration: none; font-size: 0.9rem; }
.back-link a:hover { color: var(--terra-glow); }

@media (max-width: 760px) {
  .related-grid { grid-template-columns: 1fr; }
  .news-form { flex-direction: column; }
  .article-hero { padding: 2.5rem 1.2rem 1.5rem; }
  .prose, .author, .back-link { padding-left: 1.2rem; padding-right: 1.2rem; }
}


/* WP: the_content() typografie binnen .prose */
.prose > h2 { font-size: 1.7rem; font-weight: 500; line-height: 1.2; margin: 2.8rem 0 1.1rem; color: var(--cream); letter-spacing: -0.01em; }
.prose > h2 em { font-style: italic; color: var(--terra-glow); }
.prose > h3 { font-size: 1.2rem; font-weight: 500; margin: 2rem 0 0.8rem; color: var(--sand); }
.prose > p em { font-style: italic; color: var(--sand); }
.prose > ul, .prose > ol { margin: 0 0 1.4rem 1.2rem; }
.prose > ul li::marker, .prose > ol li::marker { color: var(--terra); }
.prose > blockquote { margin: 2.6rem 0; padding-left: 1.6rem; border-left: 3px solid var(--terra); font-size: 1.4rem; line-height: 1.4; font-style: italic; color: var(--cream); }
.prose img { max-width: 100%; height: auto; border-radius: 4px; margin: 1.5rem 0; }
.hero-band img { width: 100%; height: clamp(220px, 38vw, 440px); object-fit: cover; border-radius: 4px; }
