/* ============================================
   wikipediapaginamaken.nl — static site
   v1.0
   ============================================ */

/* Self-hosted fonts — AVG-clean, geen externe request */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/merriweather-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/merriweather-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/merriweather-700.woff2') format('woff2');
}

:root {
  --primary: #1D7373;
  --primary-dark: #145757;
  --secondary: #47C2BC;
  --accent: #E0E8EA;
  --cream: #F5EFE6;
  --text: #0c1a1a;
  --muted: #666;
  --border: #E6E6E6;
  --bg: #ffffff;
  --bg-alt: #fafaf7;
  --ok: #1b7f4a;
  --warn: #b35300;
  --err: #a11a1a;
  --shadow-sm: 0 1px 2px rgba(12,26,26,0.04);
  --shadow-md: 0 2px 8px rgba(12,26,26,0.06);
  --shadow-lg: 0 8px 24px rgba(12,26,26,0.10);
  --radius: 4px;
  --maxw: 1120px;
  --maxw-narrow: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 0.4em;
}
h1 { font-size: 44px; line-height: 1.15; }
h2 { font-size: 32px; line-height: 1.2; margin-top: 1.4em; }
h3 { font-size: 22px; line-height: 1.3; margin-top: 1.4em; }
h4 { font-size: 18px; line-height: 1.4; margin-top: 1.2em; }
@media (max-width: 700px) {
  body { font-size: 16px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
}

p { margin: 0 0 1em; }

a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s;
}
a:hover { color: var(--primary-dark); }

small { font-size: 14px; color: var(--muted); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */

.site-header {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.site-logo-mark {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Merriweather", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.site-logo-text {
  display: inline-flex;
  flex-direction: column;
  min-width: 0;
}
.site-logo small {
  display: block;
  color: var(--primary);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: nowrap;
}
.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--primary); }
.header-cta {
  background: var(--primary);
  color: white !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s;
}
.header-cta:hover { background: var(--primary-dark); color: white !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

@media (max-width: 860px) {
  .site-nav { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; align-items: stretch; padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s; pointer-events: none; }
  .site-nav.open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-toggle { display: block; }
  .header-cta { text-align: center; }
}

@media (max-width: 600px) {
  .site-header-inner { padding: 14px 18px; gap: 12px; }
  .site-logo { font-size: 16px; gap: 10px; }
  .site-logo-mark { width: 36px; height: 36px; font-size: 19px; border-radius: 50%; }
  .site-logo small { font-size: 10px; letter-spacing: 0.06em; }
}

/* ============ HERO ============ */

.hero {
  background: linear-gradient(135deg, #f7fbfb 0%, var(--cream) 100%);
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero .eyebrow { text-align: center; }
/* Blog-post hero: compact so hero image + content sit higher on screen — keep left-aligned */
body:has(img.post-hero-image) .hero { padding: 40px 0 24px; border-bottom: 0; text-align: left; }
body:has(img.post-hero-image) .hero .eyebrow { text-align: left; }
body:has(img.post-hero-image) .hero h1 { font-size: 36px; margin-bottom: 10px; margin-left: 0; margin-right: 0; }
body:has(img.post-hero-image) .hero-lead { margin-left: 0; margin-right: 0; }
body:has(img.post-hero-image) .hero-cta-row { justify-content: flex-start; }
body:has(img.post-hero-image) .hero .post-meta { margin-bottom: 0; }
.hero h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}
.hero-lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.15s;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.3;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
}
.btn-lg { padding: 16px 34px; font-size: 17px; }

/* ============ SECTIONS ============ */

.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-dark {
  background: var(--primary);
  color: white;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark a { color: var(--secondary); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-dark .eyebrow { color: var(--secondary); }

.lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 720px;
}

/* ============ GRIDS ============ */

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

/* ============ CARDS ============ */

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0; }
.card-num {
  display: inline-block;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  text-align: center;
  line-height: 32px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 12px;
}
.card-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--primary);
}

/* ============ PITFALLS (BRIDGE SECTION) ============ */

.pitfalls-section { padding-top: 56px; padding-bottom: 56px; }
.pitfall {
  background: white;
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.pitfall h3 { margin-top: 10px; margin-bottom: 8px; }
.pitfall-num {
  font-family: "Merriweather", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
}

/* ============ STEP CARDS (PROCESS ICONS) ============ */

.step-card { text-align: left; }
.step-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--primary);
}
.step-icon {
  width: 32px;
  height: 32px;
}
.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  background: var(--primary);
  color: white;
  border: 2px solid var(--bg-alt);
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============ DIFFERENTIATOR ICONS ============ */

.diff-card { text-align: left; }
.diff-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 18px;
  color: var(--primary);
}
.diff-icon {
  width: 30px;
  height: 30px;
}

/* ============ STATS BAND ============ */

.stats-band {
  background: var(--primary);
  color: white;
  padding: 40px 0;
}
.stats-band .grid-4 { gap: 20px; }
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Merriweather", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  color: white;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* ============ TESTIMONIALS ============ */

.quote {
  background: white;
  border-left: 3px solid var(--primary);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-family: "Merriweather", Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
}
.quote-cite {
  display: block;
  margin-top: 14px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ============ CTA BOX ============ */

.cta-box {
  background: var(--primary);
  color: white;
  padding: 40px 40px;
  border-radius: var(--radius);
  text-align: center;
}
.cta-box h2, .cta-box h3 { color: white; margin-top: 0; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-box p { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 560px; margin-left: auto; margin-right: auto; margin-bottom: 22px; }
.cta-box .btn { margin: 0 auto; }
.cta-box .btn-primary {
  background: white;
  color: var(--primary);
}
.cta-box .btn-primary:hover {
  background: var(--cream);
  color: var(--primary-dark);
}

/* ============ FAQ (accordion) ============ */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  padding: 16px 0;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 22px;
  color: var(--primary);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--primary); }
.faq-body {
  padding: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============ FORM ============ */

.form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,115,115,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: 13px; color: var(--muted); margin-top: 4px; }
.form .btn-primary { width: 100%; }

/* ============ BREADCRUMBS ============ */

.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  padding: 20px 0 0;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs-sep { margin: 0 8px; color: var(--border); }

/* ============ BLOG ============ */

.post-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.post-meta span + span::before {
  content: "·";
  margin: 0 8px;
  color: var(--border);
}
.post-content {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.post-content h2 { margin-top: 2em; }
.post-content h3 { margin-top: 1.8em; }
.post-content ul, .post-content ol { padding-left: 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 3px solid var(--primary);
  padding: 8px 20px;
  margin: 24px 0;
  color: var(--muted);
  font-style: italic;
}

.post-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.15s, transform 0.15s;
}
.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.post-card-inner { padding: 24px; }
.post-card h3 { margin-top: 0; font-size: 19px; }
.post-card a { text-decoration: none; color: var(--text); }
.post-card a:hover h3 { color: var(--primary); }

/* ============ TABLE ============ */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
th, td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  background: var(--cream);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
tr:last-child td { border-bottom: 0; }

/* ============ TRUST STRIP (footer top + reusable) ============ */

.trust-strip {
  background: var(--primary);
  border-bottom: 1px solid var(--primary-dark);
  padding: 28px 0;
  color: white;
}
.trust-strip .trust-label { color: white; }
.trust-strip .trust-sub { color: rgba(255,255,255,0.75); }
.trust-strip .trust-icon {
  background: rgba(255,255,255,0.15);
  color: white;
}
.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cfd8d8;
  font-size: 14px;
  line-height: 1.4;
}
.trust-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(71, 194, 188, 0.12);
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: "Merriweather", Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 0 2px;
  box-sizing: border-box;
}
.trust-icon.trust-icon-lg { font-size: 20px; }
.trust-label {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 2px;
}
.trust-sub {
  color: #8aa0a0;
  font-size: 12.5px;
}
@media (max-width: 900px) {
  .trust-strip-inner { gap: 32px; }
}
@media (max-width: 500px) {
  .trust-strip-inner { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* Trust strip — light variant for inside-page use */
.trust-strip.trust-strip-light {
  background: var(--accent);
  border: 0;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}
.trust-strip-light .trust-item { color: var(--text); }
.trust-strip-light .trust-icon {
  background: white;
  color: var(--primary);
}
.trust-strip-light .trust-label { color: var(--text); }
.trust-strip-light .trust-sub { color: var(--muted); }

/* ============ EDITOR / FOUNDER PORTRAIT ============ */

.editor-portrait {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 24px 0 32px;
  padding: 24px;
  background: var(--accent);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}
.editor-portrait img {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: #cfd8d8;
}
.editor-portrait-body { flex: 1; min-width: 0; }
.editor-portrait-name {
  font-family: "Merriweather", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}
.editor-portrait-role {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.editor-portrait-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}
@media (max-width: 600px) {
  .editor-portrait { flex-direction: column; text-align: center; }
  .editor-portrait img { flex: 0 0 96px; width: 96px; height: 96px; }
}

/* Compact founder card for homepage */
.founder-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 560px;
  margin: 0 auto;
}
.founder-card img {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #cfd8d8;
}
.founder-card-body { flex: 1; min-width: 0; }
.founder-card-name {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 2px;
  color: var(--text);
}
.founder-card-role {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 6px;
}
.founder-card-quote {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  font-style: italic;
}

/* ============ FOOTER ============ */

.site-footer {
  background: var(--cream);
  color: var(--text);
  padding: 56px 0 24px;
  font-size: 15px;
  border-top: 1px solid var(--border);
}
.site-footer a { color: var(--text); text-decoration: none; }
.site-footer a:hover { color: var(--primary); }
.site-footer h4 { color: var(--text); }
.site-footer p { color: var(--muted) !important; }
.footer-bottom { color: var(--muted); border-top-color: rgba(0,0,0,0.08) !important; }
.footer-bottom a { color: var(--muted); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-logo-mark {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Merriweather", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.footer-col h4 {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.lang-switch {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.lang-switch .active { color: var(--text); font-weight: 600; }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ UTILITIES ============ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 48px; }
.mb-lg { margin-bottom: 48px; }
.muted { color: var(--muted); }
.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
}

/* Skip to content (a11y) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ============ HERO CENTER VARIANT ============ */
.hero-center { text-align: center; }
.hero-center h1 { margin-left: auto; margin-right: auto; }
.hero-center .hero-lead { margin-left: auto; margin-right: auto; }
.hero-center .hero-cta-row { justify-content: center; }
.hero-center .eyebrow { text-align: center; }

/* ============ GOOGLE SERP MOCKUP ============ */
.serp-section {
  background: linear-gradient(135deg, #f7fbfb 0%, var(--cream) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.serp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .serp-layout { grid-template-columns: 1fr; gap: 40px; }
}
.serp-layout h2 {
  margin-top: 0;
  font-size: 30px;
  line-height: 1.25;
}
.serp-layout .lead { font-size: 17px; color: var(--text); max-width: 520px; }

.serp {
  background: white;
  border: 1px solid #dadce0;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  font-family: arial, sans-serif;
  font-size: 14px;
  color: #202124;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.serp-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #ebebeb;
}
.serp-logo {
  font-family: arial, sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.serp-logo .g1 { color: #4285F4; }
.serp-logo .g2 { color: #EA4335; }
.serp-logo .g3 { color: #FBBC05; }
.serp-logo .g4 { color: #4285F4; }
.serp-logo .g5 { color: #34A853; }
.serp-logo .g6 { color: #EA4335; }
.serp-search {
  flex: 1;
  border: 1px solid #dfe1e5;
  border-radius: 24px;
  padding: 7px 14px;
  font-size: 13px;
  color: #202124;
  background: white;
  display: flex;
  align-items: center;
  gap: 8px;
}
.serp-search::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #9aa0a6;
  border-radius: 50%;
  position: relative;
  top: -1px;
  flex-shrink: 0;
}
.serp-tabs {
  display: flex;
  gap: 22px;
  padding: 0 16px;
  border-bottom: 1px solid #ebebeb;
  font-size: 13px;
  color: #5f6368;
}
.serp-tabs .tab {
  padding: 10px 0 11px;
  border-bottom: 2px solid transparent;
}
.serp-tabs .tab.active {
  color: #1a73e8;
  border-bottom-color: #1a73e8;
  font-weight: 500;
}
.serp-results { padding: 14px 16px 4px; }
.serp-meta {
  font-size: 12px;
  color: #70757a;
  margin-bottom: 14px;
}
.serp-result { margin-bottom: 20px; }
.serp-result-first {
  background: #f4f7f9;
  border-left: 3px solid #1D7373;
  padding: 10px 12px 12px;
  margin: 0 -12px 20px -12px;
  border-radius: 4px;
  position: relative;
}
.serp-result-first::after {
  content: "Wikipedia staat bovenaan";
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--primary);
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
}
html[lang="en"] .serp-result-first::after { content: "Wikipedia ranks #1"; }
.serp-url {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #202124;
  margin-bottom: 2px;
}
.serp-url .favicon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #202124;
  flex-shrink: 0;
}
.serp-url .favicon.wiki {
  background: #ffffff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: "Merriweather", "Linux Libertine", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  padding-bottom: 1px;
}
.serp-url .favicon.own { background: #1D7373; color: white; }
.serp-url .domain { color: #202124; }
.serp-url .path { color: #5f6368; font-size: 11px; }
.serp-title {
  font-size: 20px;
  line-height: 1.3;
  color: #1a0dab;
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  cursor: pointer;
  display: block;
  margin: 2px 0 4px;
}
.serp-snippet {
  font-size: 13px;
  line-height: 1.58;
  color: #4d5156;
}
.serp-snippet b { font-weight: 700; color: #202124; }
.serp-panel {
  background: white;
  border: 1px solid #dadce0;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-family: arial, sans-serif;
  padding: 16px;
  max-width: 280px;
  margin-top: 24px;
}
.serp-panel-label {
  font-size: 11px;
  color: #5f6368;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.serp-panel-name {
  font-size: 20px;
  font-weight: 400;
  color: #202124;
  margin-bottom: 2px;
  font-family: arial, sans-serif;
}
.serp-panel-sub {
  font-size: 13px;
  color: #5f6368;
  margin-bottom: 12px;
}
.serp-panel-row {
  font-size: 12px;
  color: #202124;
  margin-bottom: 6px;
}
.serp-panel-row b { color: #5f6368; font-weight: 500; margin-right: 6px; }
.serp-panel-footer {
  font-size: 11px;
  color: #70757a;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ebebeb;
}
.serp-visual-wrap {
  position: relative;
}
.serp-arrow {
  position: absolute;
  top: 60px;
  left: -18px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: center;
  display: none;
}
.serp-caption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
  font-style: italic;
}

/* ============ BREADTH BAND (inclusive audiences) ============ */
.breadth-band {
  background: var(--accent);
  border-left: 3px solid var(--primary);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 32px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}
.breadth-band strong { color: var(--primary-dark); }

/* ============ MOBILE POLISH (final pass) ============ */

@media (max-width: 700px) {
  /* Tighter container */
  .container, .container-narrow, .post-content { padding-left: 18px; padding-right: 18px; }

  /* Hero — bigger touch target, tighter spacing */
  .hero { padding: 44px 0 40px; }
  .hero h1 { font-size: 32px; line-height: 1.18; margin-bottom: 14px; }
  .hero-lead { font-size: 17px; line-height: 1.55; margin-bottom: 24px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta-row .btn { width: 100%; text-align: center; }

  /* Sections breathe less */
  .section { padding: 48px 0; }

  /* Buttons full-width on mobile when standalone */
  .cta-box .btn,
  .form .btn { width: 100%; text-align: center; }

  /* Generic h2 slightly tighter */
  h2 { font-size: 26px; line-height: 1.25; }

  /* Stats band readable */
  .grid-4 .card-num { font-size: 32px; }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 28px; }
  .hero-lead { font-size: 16px; }
  h2 { font-size: 23px; }

  /* Trust strip — single column, left align */
  .trust-strip { padding: 22px 0; }
  .trust-item { gap: 14px; }
}

/* SERP mockup mobile fit */
@media (max-width: 600px) {
  .serp-layout h2 { font-size: 24px; }
  .serp { font-size: 13px; }
  .serp-bar { padding: 10px 12px 8px; gap: 8px; }
  .serp-logo { font-size: 18px; }
  .serp-result { padding: 14px 14px; }
  .serp-result-first::after { font-size: 11px \!important; padding: 3px 8px \!important; }
}

/* Footer breathing room on mobile */
@media (max-width: 600px) {
  .site-footer { padding: 40px 0 20px; }
  .footer-bottom {
    font-size: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-right: 56px; /* room so scroll-top arrow never covers lang-switch */
  }
  .footer-bottom .lang-switch { align-self: flex-start; }
}

/* Tap targets >= 44px (a11y) */
@media (max-width: 700px) {
  .site-nav a, .footer-col a { padding: 6px 0; display: inline-block; min-height: 32px; }
  .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ============= Audience pills (homepage breadth row) ============= */
.audience-pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--primary-dark);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  min-height: 36px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.audience-pill:hover {
  background: var(--cream);
  border-color: var(--secondary);
  transform: translateY(-1px);
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  padding: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs li + li::before {
  content: "›";
  margin: 0 8px;
  color: #bbb;
}
.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 500; }

/* ============ PRESS STRIP (klanten in onafhankelijke pers) ============ */
.press-strip {
  background: var(--cream, #faf6ee);
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.press-strip-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.press-strip-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  font-weight: 600;
}
.press-strip-outlets {
  display: flex;
  gap: 14px 24px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.press-strip-outlets span {
  font-family: "Merriweather", Georgia, serif;
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
  opacity: 0.55;
  letter-spacing: -0.005em;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}
/* Desktop: force press outlets on a single row */
@media (min-width: 900px) {
  .press-strip-outlets { flex-wrap: nowrap; }
}
.press-strip-outlets span:hover { opacity: 0.85; }
.press-strip-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.02em;
  font-style: italic;
  opacity: 0.75;
}
@media (max-width: 600px) {
  .press-strip { padding: 24px 0; }
  .press-strip-outlets { gap: 8px 14px; }
  .press-strip-outlets span { font-size: 13px; }
  .press-strip-label { font-size: 10px; letter-spacing: 0.12em; }
}

/* ============ TRANSPARENCY BAR (Google Ads LPE signals) ============ */
.transparency-bar {
  background: var(--bg-alt);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
.transparency-item {
  padding: 8px 6px;
}
.transparency-value {
  font-family: "Merriweather", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.transparency-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
@media (max-width: 800px) {
  .transparency-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; text-align: left; }
  .transparency-item { padding: 6px 0; }
}

/* ============ CHECKLIST (bronnen-criteria) ============ */
.checklist {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

/* ============= Footer contact row (LinkedIn / WhatsApp / Call) ============= */
.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.footer-contact-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  min-height: 36px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.footer-contact-row a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.footer-contact-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-contact-row a.icon-only {
  padding: 9px;
  width: 36px;
  justify-content: center;
}

/* ============= Hero trust badges (Confidential / Free / No obligations) ============= */
.hero-trust-badges {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
}
.hero-trust-badge .check {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 600px) {
  .hero-trust-badges {
    gap: 10px;
    margin-top: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .hero-trust-badge {
    font-size: 12px;
    gap: 5px;
    white-space: nowrap;
  }
  .hero-trust-badge .check {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .hero-trust-badges { gap: 6px; }
  .hero-trust-badge { font-size: 11px; }
}

/* ============= Blog hero image ============= */
img.post-hero-image {
  width: 100% !important;
  max-width: 640px !important;
  max-height: 260px !important;
  height: auto !important;
  margin: 24px auto 8px !important;
  display: block;
  border-radius: 12px;
  background: var(--cream);
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(20, 87, 87, 0.08);
}
/* Blog-post hero section: tighten padding so content + CTA sit higher */
.blog-post-hero { padding: 36px 0 20px !important; }
section.hero + .container-narrow img.post-hero-image { margin-top: 24px !important; }
/* Tight spacing under the blog hero image — reduce the section padding-top
   so the body paragraph sits close to the image */
body:has(img.post-hero-image) section.hero + .container-narrow + section.section { padding-top: 20px; }
body:has(img.post-hero-image) section.section:has(.post-content) { padding-top: 20px; }

.post-card {
  display: block;
  overflow: hidden;
}
.post-card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  display: block;
  border-radius: 12px 12px 0 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--cream);
  margin-bottom: 0;
}
.post-card-inner { padding: 22px 24px 24px; }

@media (max-width: 600px) {
  img.post-hero-image { max-width: 100% !important; max-height: 180px !important; margin-bottom: 20px !important; border-radius: 10px; }
  .blog-post-hero { padding: 24px 0 12px !important; }
}

/* MID-POST INLINE CTA (added 2026-04-22) */
.inline-cta {
  background: var(--cream);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  border-radius: 8px;
  margin: 32px 0;
}
.inline-cta h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 19px;
}
.inline-cta p {
  margin: 0 0 14px;
  color: var(--muted);
}
.inline-cta .btn {
  margin-top: 4px;
}
@media (max-width: 600px) {
  .inline-cta { padding: 20px; margin: 24px 0; }
}

/* Compact inline CTA for top-of-post placement */
.inline-cta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 36px 0 40px;
  padding: 20px 24px;
}
.inline-cta-top .inline-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.inline-cta-top .inline-cta-text strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}
.inline-cta-top .inline-cta-text span {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.inline-cta-top .btn {
  flex-shrink: 0;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .inline-cta-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .inline-cta-top .btn { width: 100%; text-align: center; }
}

/* LANG PILL IN HEADER NAV (added 2026-04-22) */
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  margin-left: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  transition: all .15s ease;
  text-decoration: none;
}
.lang-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}
.lang-pill-active {
  color: var(--fg);
  font-weight: 600;
}
.lang-pill-sep {
  color: #ccc;
  font-weight: 300;
}
@media (max-width: 900px) {
  .lang-pill {
    margin-left: 0;
    margin-top: 6px;
    align-self: flex-start;
  }
}

/* ============ VIDEO EMBED (ready, not yet used) ============ */
.video-section {
  padding: 56px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-section-head {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}
.video-section-head .eyebrow { margin-bottom: 12px; }
.video-section-head h2 { margin: 0 0 10px; font-size: 32px; color: var(--text); }
.video-section-head p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.video-embed {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(20, 87, 87, 0.14);
  background: #000;
}
.video-embed iframe,
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Compact inline variant (for use inside blog posts) */
.video-embed--inline {
  max-width: 100%;
  margin: 28px 0;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(20, 87, 87, 0.1);
}
@media (max-width: 600px) {
  .video-section { padding: 36px 0; }
  .video-section-head h2 { font-size: 26px; }
  .video-embed { border-radius: 10px; }
}

/* ============ MOBILE STICKY CTA BAR ============ */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 700px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: white;
    border-top: 1px solid var(--border);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(20, 87, 87, 0.08);
    gap: 10px;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.25s ease;
  }
  .mobile-cta-bar.is-visible { transform: translateY(0); }
  .mobile-cta-bar .btn {
    flex: 1;
    padding: 13px 16px;
    font-size: 15px;
    min-height: 46px;
  }
  .mobile-cta-bar-meta {
    flex: 0 0 auto;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.2;
    padding-left: 4px;
  }
  /* prevent content being covered by sticky bar */
  body { padding-bottom: 72px; }
  /* footer already has its own spacing — extra breathing room above sticky bar */
  .site-footer { padding-bottom: 32px; }
}

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 84px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(20, 87, 87, 0.25);
  z-index: 55;
  transition: transform 0.15s ease, opacity 0.2s ease;
  opacity: 0;
}
.scroll-top.is-visible { display: flex; opacity: 1; }
.scroll-top:hover { transform: translateY(-2px); background: var(--primary-dark); }
.scroll-top svg { width: 20px; height: 20px; fill: currentColor; }
@media (max-width: 700px) {
  .scroll-top { right: 14px; bottom: 78px; }
}

/* ============ BREADCRUMB WRAP-SAFE ============ */
.breadcrumbs {
  flex-wrap: wrap;
  word-break: break-word;
}

/* ============ EDITOR SPLIT SECTION ============ */
.editor-split {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: start;
}
.editor-split-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #f0ece5;
  aspect-ratio: 700 / 1571;
  max-height: 640px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.25);
}
.editor-split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
}
.editor-split-content .eyebrow { margin-bottom: 16px; }
.editor-split-content h2 {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.2;
}
.editor-split-content p {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.65;
}
.editor-split-signature {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.editor-split-signature .name {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  color: var(--text);
  font-size: 17px;
}
.editor-split-signature .role {
  color: var(--muted);
  font-size: 14px;
}
.editor-split-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 108, 104, 0.35);
  padding-bottom: 2px;
}
.editor-split-link:hover {
  border-bottom-color: var(--primary);
}
@media (max-width: 800px) {
  .editor-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .editor-split-image {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    min-height: 0;
    aspect-ratio: 700 / 1571;
    max-height: none;
    height: auto;
  }
  /* Fallback for Safari < 15.4 that doesn't support aspect-ratio */
  @supports not (aspect-ratio: 1) {
    .editor-split-image { height: 628px; }
  }
}
@media (max-width: 600px) {
  .editor-split-image { max-width: 240px; }
  @supports not (aspect-ratio: 1) {
    .editor-split-image { height: 538px; }
  }
}
@media (max-width: 360px) {
  .editor-split-image { max-width: 210px; }
  @supports not (aspect-ratio: 1) {
    .editor-split-image { height: 471px; }
  }
}

