/* ==========================================================================
   SlimPoetsen.nl — CSS Design Tokens & Base Styles
   Adapted from the shared FocusThuis/GladGids design system for the
   slimme-schoonmaakapparatuur niche (robotstofzuigers, stoomreinigers,
   draagbare stofzuigers, accessoires).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens (CSS Custom Properties)
   -------------------------------------------------------------------------- */

:root {
  /* Colors — Primary (fresh tech blue) */
  --primary:        #0F6E8C;
  --primary-dark:   #0A4A5E;
  --primary-soft:   #E5F2F5;

  /* Colors — Accent (cyan/teal) */
  --accent:         #2FB6A8;
  --accent-warm:    #EAF9F7;

  /* Colors — Text */
  --text:           #1A1A1A;
  --text-soft:      #4A4A4A;
  --muted:          #7A7A7A;

  /* Colors — Surfaces */
  --border:         #E1E8EA;
  --border-soft:    #F2F6F7;
  --bg:             #FFFFFF;
  --bg-alt:         #F0F7F8;

  /* Colors — Semantic */
  --warn:           #C0392B;
  --star:           #E8A33C;

  /* Spacing & Sizing */
  --radius:         4px;
  --radius-lg:      8px;
  --shadow-sm:      0 1px 2px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.04);
  --shadow-md:      0 10px 30px rgba(0,0,0,.08);
  --shadow-lg:      0 30px 60px -15px rgba(0,0,0,.18);
  --max-w:          1365px;
  --container-pad:  30px;

  /* Typography */
  --font-head:      "Trocchi", Georgia, "Times New Roman", serif;
  --font-body:      "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* --------------------------------------------------------------------------
   5. Topbar
   -------------------------------------------------------------------------- */

.topbar {
  background-color: var(--primary-dark);
  color: var(--bg);
  font-size: 0.8125rem;
  padding: 0.375rem 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar__trust {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.topbar__trust li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

.topbar__links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.topbar__links a {
  color: var(--bg);
  opacity: 0.85;
}

.topbar__links a:hover {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */

.header {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo:hover {
  color: var(--primary-dark);
}

/* Hamburger button (mobile) */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Main navigation */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-radius: var(--radius);
}

.nav__link:hover,
.nav__link:focus {
  color: var(--primary);
  background-color: var(--primary-soft);
}

.nav__link--active {
  color: var(--primary);
  font-weight: 600;
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 0.5rem 1.25rem;
  color: var(--text-soft);
  font-size: 0.875rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__dropdown-link:hover,
.nav__dropdown-link:focus {
  color: var(--primary);
  background-color: var(--primary-soft);
}

/* --------------------------------------------------------------------------
   7. Mobile Navigation
   -------------------------------------------------------------------------- */

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

  .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg);
    overflow-y: auto;
    z-index: 999;
    padding: 1rem var(--container-pad);
  }

  .nav.is-open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    padding: 0.875rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-soft);
    border-radius: 0;
  }

  /* Mobile dropdown — always visible, indented */
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: var(--bg-alt);
    border-radius: 0;
    padding: 0;
    min-width: auto;
  }

  .nav__dropdown-link {
    padding: 0.625rem 0 0.625rem 1.5rem;
    font-size: 0.9375rem;
  }
}

@media (min-width: 992px) {
  .nav {
    display: block !important;
  }

  .nav__toggle {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   8. Footer
   -------------------------------------------------------------------------- */

.footer {
  background-color: var(--primary-dark);
  color: var(--bg);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer__brand-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.footer__brand-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   9. Utility Classes
   -------------------------------------------------------------------------- */

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

.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-soft { color: var(--text-soft); }

.bg-alt { background-color: var(--bg-alt); }
.bg-primary-soft { background-color: var(--primary-soft); }
.bg-accent-warm { background-color: var(--accent-warm); }

.section {
  padding: 4rem 0;
}

/* --------------------------------------------------------------------------
   10. Skip Link (Accessibility)
   -------------------------------------------------------------------------- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  top: 0;
  color: var(--bg);
}

/* --------------------------------------------------------------------------
   11. Responsive Typography
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .section {
  padding: 4rem 0;
    padding: 2rem 0;
  }
}
/* ==========================================================================
   SlimPoetsen.nl — Fase 3: Commerciale Pagina's CSS (adapted)
   AFF-78: Beste Apparaten + Vergelijken + Reviews
   ========================================================================== */

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */

.breadcrumbs {
  padding: 1rem 30px;
  font-size: 0.875rem;
  color: var(--muted);
}

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

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

.breadcrumbs span {
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   Page Intro
   -------------------------------------------------------------------------- */

.page-intro {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.page-intro h1 {
  margin-bottom: 0.75rem;
}

.page-intro__updated {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.page-intro .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 800px;
}

/* --------------------------------------------------------------------------
   Disclosure Strip (affiliate transparency, shown above the fold on
   pages with affiliate links)
   -------------------------------------------------------------------------- */

.disclosure-strip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 800px;
}

.disclosure-strip a {
  color: var(--primary);
  text-decoration: underline;
}

.section-title {
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Badges
   -------------------------------------------------------------------------- */

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.badge--best {
  background-color: var(--accent);
  color: var(--bg);
}

.badge--value {
  background-color: var(--primary);
  color: var(--bg);
}

.badge--budget {
  background-color: var(--muted);
  color: var(--bg);
}

/* --------------------------------------------------------------------------
   Scores
   -------------------------------------------------------------------------- */

.score {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--accent);
}

.score--large {
  font-size: 2rem;
}

.score--huge {
  font-size: 3rem;
}

.score-label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-left: 0.25rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--outline {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover {
  background-color: var(--accent);
  color: var(--bg);
}

/* --------------------------------------------------------------------------
   Comparison Table
   -------------------------------------------------------------------------- */

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table thead th {
  background-color: var(--bg-alt);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}

.comparison-table tbody tr:hover {
  background-color: var(--bg-alt);
}

.comparison-table .product-name {
  font-weight: 600;
  color: var(--primary);
}

.comparison-table .product-name:hover {
  color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   Category Grid
   -------------------------------------------------------------------------- */

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* AFF-351: beste-bureaus-thuiswerken — vast op 3 kolommen zodat 6 blokken
   als 3 boven / 3 onder staan, in plaats van auto-fit over 1 rij */
@media (min-width: 992px) {
  .category-grid--6col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  display: block;
  padding: 1.5rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-2px);
  color: inherit;
}

.category-card h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.category-card p {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Product Card
   -------------------------------------------------------------------------- */

.product-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .product-card {
    grid-template-columns: 250px 1fr;
    align-items: start;
  }
}

.product-card__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
  max-height: 250px;
}

.product-card__content h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.product-card__content h3 a {
  color: var(--text);
}

.product-card__content h3 a:hover {
  color: var(--primary);
}

.product-card__score {
  margin-bottom: 1rem;
}

.product-card__summary {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-card__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.product-card__cta .price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Pros & Cons
   -------------------------------------------------------------------------- */

.product-card__pros-cons,
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .product-card__pros-cons,
  .pros-cons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pros h4, .cons h4,
.pros h3, .cons h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pros h4, .pros h3 { color: #27ae60; }
.cons h4, .cons h3 { color: var(--warn); }

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li, .cons li {
  padding: 0.25rem 0;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

.pros li::before {
  content: "+ ";
  color: #27ae60;
  font-weight: 700;
}

.cons li::before {
  content: "− ";
  color: var(--warn);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Choice Guide
   -------------------------------------------------------------------------- */

.choice-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .choice-guide {
    grid-template-columns: repeat(2, 1fr);
  }
}

.choice-step {
  padding: 1.5rem;
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}

.choice-step h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.choice-step p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list {
  margin: 0 auto;
  max-width: 800px;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.faq-item p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Review Grid
   -------------------------------------------------------------------------- */

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  display: block;
  padding: 1.5rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-2px);
  color: inherit;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-card h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.review-card p {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

.review-card__type {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Review Header
   -------------------------------------------------------------------------- */

.review-header__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .review-header__grid {
    grid-template-columns: 300px 1fr;
  }
}

.review-header__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
  max-height: 350px;
  background-color: var(--bg-alt);
}

.review-header__info h1 {
  margin-bottom: 1rem;
}

.review-header__score {
  margin-bottom: 1.5rem;
}

.review-header__summary {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.review-header__price {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.review-header__price .price {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Score Bars
   -------------------------------------------------------------------------- */

.score-bars {
  max-width: 700px;
}

.score-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.score-bar__label {
  min-width: 160px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-soft);
}

.score-bar__track {
  flex: 1;
  height: 8px;
  background-color: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.score-bar__fill {
  height: 100%;
  background-color: var(--accent);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.score-bar__value {
  min-width: 60px;
  text-align: right;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   For Who Grid
   -------------------------------------------------------------------------- */

.for-who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .for-who-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.for-who-item h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.for-who-item ul {
  list-style: none;
  padding: 0;
}

.for-who-item li {
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   Conclusion Box
   -------------------------------------------------------------------------- */

.conclusion-box {
  padding: 2rem;
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  margin: 2rem 0;
}

.conclusion-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   CTA Group
   -------------------------------------------------------------------------- */

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Alert
   -------------------------------------------------------------------------- */

.alert {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.alert--warning {
  background-color: #fef9e7;
  border: 1px solid #f9e79f;
  color: #7d6608;
}

.alert h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.alert p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Info Box
   -------------------------------------------------------------------------- */

.info-box {
  padding: 1.5rem;
  background-color: var(--primary-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.info-box p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Brand Card
   -------------------------------------------------------------------------- */

.brand-card {
  padding: 2rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.brand-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.brand-rating {
  margin-bottom: 1.5rem;
}

.brand-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--bg-alt);
  border-radius: var(--radius);
}

.brand-detail {
  text-align: center;
}

.brand-detail__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.brand-detail__value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.brand-card > p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.brand-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   Cost Comparison
   -------------------------------------------------------------------------- */

.cost-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .cost-comparison {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .cost-comparison {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cost-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.cost-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cost-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.cost-detail {
  font-size: 0.875rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Product Purchase
   -------------------------------------------------------------------------- */

.product-purchase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--bg-alt);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .product-purchase {
    grid-template-columns: 1fr 300px;
    align-items: center;
  }
}

.product-purchase h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-purchase > div > p {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   Related Links
   -------------------------------------------------------------------------- */

.related-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 600px;
}

@media (min-width: 600px) {
  .related-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.related-links li a {
  display: block;
  padding: 0.75rem 1rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--primary);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.related-links li a:hover {
  background-color: var(--primary-soft);
  border-color: var(--primary);
}

/* --------------------------------------------------------------------------
   Responsive adjustments
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .product-card__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .review-header__price {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .score-bar {
    flex-wrap: wrap;
  }

  .score-bar__label {
    min-width: 100%;
  }

  .brand-details {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .brand-detail {
    display: flex;
    justify-content: space-between;
    text-align: left;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-group .btn {
    text-align: center;
  }
}
/* ==========================================================================
   SlimPoetsen.nl — Fase 2: Homepage CSS (adapted)
   AFF-79: Hero, Top 3, Categorieën, Reviews, FAQ, Blog teaser
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--bg);
  margin-bottom: 1.5rem;
  max-width: 800px;
  line-height: 1.15;
}

.hero__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn--hero-outline {
  color: var(--bg);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--hero-outline:hover {
  background-color: var(--bg);
  color: var(--primary);
  border-color: var(--bg);
}
/* --------------------------------------------------------------------------
   Page hero — content page variant (shorter than homepage hero)
   -------------------------------------------------------------------------- */

.hero--page {
  min-height: 380px;
}

.hero--page .hero__content {
  padding: 4rem 0;
}

.hero--page h1 {
  font-size: 2.25rem;
  text-align: center;
  margin: 0 auto;
  max-width: 860px;
}

@media (max-width: 767px) {
  .hero--page {
    min-height: 240px;
  }
  .hero--page .hero__content {
    padding: 2.5rem 0;
  }
  .hero--page h1 {
    font-size: 1.6rem;
  }
}


/* --------------------------------------------------------------------------
   Section subtitle
   -------------------------------------------------------------------------- */

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.0625rem;
  max-width: 640px;
  margin: -1.5rem auto 2.5rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Top 3 Grid
   -------------------------------------------------------------------------- */

.top3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .top3-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.top3-card {
  position: relative;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.top3-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.top3-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  order: -1;
}

@media (min-width: 768px) {
  .top3-card--featured {
    order: 0;
  }
}

.top3-card__rank {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--bg);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 50%;
  z-index: 2;
}

.top3-card--featured .top3-card__rank {
  background-color: var(--accent);
}

.top3-card__image {
  margin: 0.75rem 0 1.5rem;
  text-align: center;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top3-card__image img {
  max-height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.top3-card__placeholder {
  color: var(--muted);
  font-size: 0.8125rem;
  font-style: italic;
  padding: 2rem 1rem;
}

.top3-card__body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.top3-card__summary {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.top3-card__price {
  margin-bottom: 1.25rem;
}

.top3-card__price-value {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
}

.top3-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   Featured Products Grid (AFF-416 — "Aanbevolen producten van de maand")
   -------------------------------------------------------------------------- */

.featured-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .featured-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.featured-product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.featured-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.featured-product-card__image {
  margin-bottom: 1.25rem;
  text-align: center;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-product-card__image img {
  max-height: 160px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.featured-product-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.featured-product-card__price {
  display: block;
  font-family: var(--font-head);
  font-size: 1.375rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.featured-product-card__cta {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   Category Card Icons
   -------------------------------------------------------------------------- */

.category-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-soft);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--primary);
}

.category-card:hover .category-card__icon {
  background-color: var(--primary);
  color: var(--bg);
}

/* --------------------------------------------------------------------------
   Review Card extras
   -------------------------------------------------------------------------- */

.review-card__read {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
}

.review-card:hover .review-card__read {
  color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   Safety Section
   -------------------------------------------------------------------------- */

.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .safety-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.safety__content h2 {
  margin-bottom: 1rem;
}

.safety__text {
  font-size: 1.0625rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.safety__checklist h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.safety__checklist ul {
  list-style: none;
  padding: 0;
}

.safety__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.safety__checklist li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Blog Grid
   -------------------------------------------------------------------------- */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 600px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: block;
  padding: 1.25rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
  transform: translateY(-1px);
  color: inherit;
}

.blog-card h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card__meta {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Responsive adjustments for homepage
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .hero {
    min-height: auto;
  }

  .hero--festival {
    min-height: calc(100svh - 65px);
  }

  .hero__content {
    padding: 3rem 0;
  }

  .hero--festival .hero__content {
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero__text {
    font-size: 1rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    text-align: center;
  }

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

  .top3-card__actions .btn {
    text-align: center;
  }

  .safety__checklist li {
    font-size: 0.875rem;
  }
}
/* ==========================================================================
   Table of Contents (for info pages)
   ========================================================================== */

.table-of-contents {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.table-of-contents h2 {
  font-size: 1.125rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text);
}

.table-of-contents ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc-counter;
}

.table-of-contents ol li {
  counter-increment: toc-counter;
  margin: 0.4rem 0;
}

.table-of-contents ol li a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9375rem;
  line-height: 1.5;
  display: inline-block;
  transition: color 0.2s ease;
}

.table-of-contents ol li a::before {
  content: counter(toc-counter) ". ";
  font-weight: 600;
  color: var(--primary);
}

.table-of-contents ol li a:hover {
  color: var(--primary);
}

/* ==========================================================================
   Content blocks for info pages
   ========================================================================== */

.content-block {
  margin-bottom: 2.5rem;
}

.content-block h2 {
  margin-bottom: 1rem;
  scroll-margin-top: 5rem;
}

.content-block h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  scroll-margin-top: 5rem;
}

.content-block p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.content-block ul,
.content-block ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.content-block li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ==========================================================================
   Highlight box for key takeaways
   ========================================================================== */

.highlight-box {
  background: var(--accent-warm);
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.highlight-box p {
  margin: 0;
  line-height: 1.6;
}

.highlight-box strong {
  color: var(--primary);
}

/* ==========================================================================
   Data table for info pages
   ========================================================================== */

.data-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.data-table th,
.data-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table thead th {
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
}

.data-table tbody tr:nth-child(even) {
  background: var(--bg-alt);
}

.data-table tbody tr:hover {
  background: var(--primary-soft);
}

/* ==========================================================================
   Skin tone scale visual
   ========================================================================== */

.skin-tone-scale {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.skin-tone-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: center;
}

.skin-tone-card__swatch {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  border: 2px solid var(--border);
}

.skin-tone-card__label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.skin-tone-card__desc {
  font-size: 0.8125rem;
  color: var(--muted);
}

.skin-tone-card--safe .skin-tone-card__swatch {
  border-color: #27ae60;
}

.skin-tone-card--unsafe .skin-tone-card__swatch {
  border-color: var(--warn);
}

@media (max-width: 768px) {
  .table-of-contents {
    padding: 1rem 1.25rem;
  }

  .skin-tone-scale {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ==========================================================================
   SlimPoetsen.nl — Fase 5: Blog + Statische pagina's + Final polish (adapted)
   Extra CSS voor blog-artikelen, statische pagina's en 404
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page Header (for blog index and static pages)
   -------------------------------------------------------------------------- */

.page-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.page-header__subtitle {
  font-size: 1.125rem;
  color: var(--text-soft);
  max-width: 700px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Blog Index — Blog List
   -------------------------------------------------------------------------- */

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-list__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.blog-list__item:first-child {
  padding-top: 0;
}

.blog-list__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  aspect-ratio: 3 / 2;
}

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

.blog-list__item:hover .blog-list__image img {
  transform: scale(1.03);
}

.blog-list__image--missing {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
}

.blog-list__image--missing::after {
  content: 'Afbeelding';
  color: var(--muted);
  font-size: 0.875rem;
}

.blog-list__content {
  display: flex;
  flex-direction: column;
}

.blog-list__meta {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.blog-list__dot {
  font-size: 0.625rem;
  opacity: 0.5;
}

.blog-list__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-list__title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-list__title a:hover {
  color: var(--primary);
}

.blog-list__excerpt {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.blog-list__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s ease;
}

.blog-list__link:hover {
  color: var(--primary-dark);
}

@media (min-width: 768px) {
  .blog-list__item {
    grid-template-columns: 340px 1fr;
    gap: 2rem;
  }
}

/* --------------------------------------------------------------------------
   Blog Article
   -------------------------------------------------------------------------- */

.article {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.article__header {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.article__meta {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.article__dot {
  font-size: 0.625rem;
  opacity: 0.5;
}

.article h1 {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.article__lead {
  font-size: 1.125rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.article__featured-image {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article__body {
  max-width: 800px;
  margin: 0 auto;
}

.article__body h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  scroll-margin-top: 5rem;
}

.article__body h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  scroll-margin-top: 5rem;
}

.article__body p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.article__body ul,
.article__body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article__body li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.article__body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--primary-soft);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s ease;
}

.article__body a:hover {
  text-decoration-color: var(--primary);
}

/* --------------------------------------------------------------------------
   Article CTA (product recommendations within articles)
   -------------------------------------------------------------------------- */

.article-cta {
  margin: 2.5rem 0;
}

.article-cta h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.article-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .article-cta__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.article-cta__card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-cta__card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.article-cta__card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.article-cta__card p {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.article-cta__card .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   Related Articles
   -------------------------------------------------------------------------- */

.related-articles {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-articles h2 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.related-articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .related-articles__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-articles__grid .blog-card {
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Static Page Body
   -------------------------------------------------------------------------- */

.section--static-page {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.static-page__body {
  max-width: 800px;
}

/* --------------------------------------------------------------------------
   Contact Card
   -------------------------------------------------------------------------- */

.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 1.5rem 0;
}

.contact-card__item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card__item p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   404 Error Page
   -------------------------------------------------------------------------- */

.section--404 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-page {
  max-width: 800px;
  margin: 0 auto;
}

.error-page__code {
  display: block;
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.15;
}

.error-page h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
}

.error-page__text {
  font-size: 1.0625rem;
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.error-page__links {
  margin-bottom: 3rem;
}

.error-page__suggestions h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.suggestion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .suggestion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.suggestion-card {
  display: block;
  padding: 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.suggestion-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
  transform: translateY(-1px);
  color: inherit;
}

.suggestion-card h3 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.suggestion-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive adjustments for blog and static pages
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .article h1,
  .page-header h1 {
    font-size: 1.75rem;
  }

  .article__lead {
    font-size: 1rem;
  }

  .blog-list__title {
    font-size: 1.25rem;
  }

  .error-page__code {
    font-size: 4rem;
  }

  .error-page h1 {
    font-size: 1.5rem;
  }

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

  .related-articles__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SlimPoetsen.nl — Blog overzichtspagina redesign (adapted)
   Image-led editorial cards, hero with overlay, breadcrumbs, category filters
   ========================================================================== */

/* --------------------------------------------------------------------------
   Blog Index Tokens
   -------------------------------------------------------------------------- */

:root {
  --blog-hero-min-h:    400px;
  --blog-card-img-h:    200px;
  --blog-card-img-h-md: 180px;
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */

.breadcrumbs {
  padding: 1rem 0;
  margin-bottom: 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.8125rem;
}

.breadcrumbs__list li + li::before {
  content: '/';
  color: var(--muted);
  margin-right: 0.5rem;
}

.breadcrumbs__list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__list a:hover {
  color: var(--primary);
}

.breadcrumbs__list .breadcrumbs__current {
  color: var(--text-soft);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Blog Hero (full-width image with overlay)
   -------------------------------------------------------------------------- */

.blog-hero--image {
  position: relative;
  min-height: var(--blog-hero-min-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.blog-hero--image__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-hero--image__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.blog-hero--image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.blog-hero--image__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  width: 100%;
  text-align: center;
}

.blog-hero--image h1 {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--bg);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-hero--image__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Category Filter Tabs
   -------------------------------------------------------------------------- */

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.category-filter__btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.category-filter__btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-soft);
}

.category-filter__btn--active {
  color: var(--bg);
  background: var(--primary);
  border-color: var(--primary);
}

.category-filter__btn--active:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--bg);
}

/* --------------------------------------------------------------------------
   Featured Article (horizontal editorial layout)
   -------------------------------------------------------------------------- */

.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.blog-featured__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

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

.blog-featured:hover .blog-featured__image img {
  transform: scale(1.03);
}

.blog-featured__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--accent);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.blog-featured__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-right: 0.75rem;
}

.blog-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.blog-featured__meta svg { flex-shrink: 0; opacity: 0.6; }

.blog-featured__dot {
  font-size: 0.5rem;
  opacity: 0.4;
}

.blog-featured__title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-featured__title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-featured__title a:hover { color: var(--primary); }

.blog-featured__excerpt {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.blog-featured__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.blog-featured__link:hover { gap: 0.75rem; }

/* --------------------------------------------------------------------------
   Blog Card Grid
   -------------------------------------------------------------------------- */

.blog-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 992px) {
  .blog-grid-layout { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   Blog Card (image-led editorial card)
   -------------------------------------------------------------------------- */

.blog-card-edition {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.blog-card-edition:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.blog-card-edition__image {
  position: relative;
  overflow: hidden;
  height: var(--blog-card-img-h);
}

.blog-card-edition__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card-edition:hover .blog-card-edition__image img {
  transform: scale(1.05);
}

.blog-card-edition__category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: rgba(43, 110, 107, 0.90);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.blog-card-edition__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.5rem;
}

.blog-card-edition__meta {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.blog-card-edition__meta svg { flex-shrink: 0; opacity: 0.6; }

.blog-card-edition__dot { font-size: 0.5rem; opacity: 0.4; }

.blog-card-edition__title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-card-edition__title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-edition__title a:hover { color: var(--primary); }

.blog-card-edition__excerpt {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-edition__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.blog-card-edition__link:hover { gap: 0.75rem; }

/* --------------------------------------------------------------------------
   Blog Index — Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .blog-hero--image { min-height: auto; }
  .blog-hero--image__content { padding: 3rem 0; }
  .blog-hero--image h1 { font-size: 1.75rem; }
  .blog-hero--image__subtitle { font-size: 1rem; }

  .blog-featured__title { font-size: 1.375rem; }

  .blog-card-edition__image { height: var(--blog-card-img-h-md); }
  .blog-card-edition__body { padding: 1rem 1.25rem 1.25rem; }
  .blog-card-edition__title { font-size: 1.0625rem; }

  .category-filter { margin-bottom: 2rem; }
}
/* ==========================================================================
   AFF-96: Visuele opknapbeurt — Site-wide improvements
   ========================================================================== */

/* --------------------------------------------------------------------------
   Pull Quote (for blog articles)
   -------------------------------------------------------------------------- */

.pull-quote {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-warm);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--primary-dark);
  line-height: 1.5;
  font-style: italic;
}

.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 0.75rem;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  font-style: normal;
  line-height: 1;
}

.pull-quote p {
  margin: 0;
}

/* --------------------------------------------------------------------------
   Section Divider (decorative)
   -------------------------------------------------------------------------- */

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--border);
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-divider__icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Key Takeaway Box (enhanced highlight)
   -------------------------------------------------------------------------- */

.key-takeaway {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--primary-soft);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  border: 1px solid var(--border);
}

.key-takeaway__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
}

.key-takeaway__content h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.key-takeaway__content p {
  font-size: 0.9375rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Article featured image with gradient overlay
   -------------------------------------------------------------------------- */

.article__featured-image--gradient {
  position: relative;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
}

.article__featured-image--gradient img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.article__featured-image--gradient .article__featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.60) 0%, transparent 60%);
}

.article__featured-image--gradient .article__featured-caption {
  position: relative;
  z-index: 1;
  padding: 1.5rem 2rem;
  color: var(--bg);
  font-size: 0.875rem;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Enhanced homepage blog teaser
   -------------------------------------------------------------------------- */

.blog-grid .blog-card {
  position: relative;
  overflow: hidden;
}

.blog-grid .blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.blog-grid .blog-card:hover::before {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Decorative section background patterns
   -------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------
   Responsive pull quote
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  .pull-quote {
    font-size: 1.125rem;
    padding: 1.25rem 1.5rem;
  }

  .key-takeaway {
    flex-direction: column;
    gap: 0.75rem;
  }

  .article__featured-image--gradient {
    min-height: 200px;
  }
}

/* ==========================================================================
   SlimPoetsen — Homepage Festival-Style Redesign (adapted)
   Bolder hero, numbered topkeuzes, color-accented gidsen cards.
   ========================================================================== */

.hero--festival {
  min-height: calc(100vh - 65px);
  align-items: flex-end;
}

.hero--festival .hero__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0) 60%
  );
}

.hero--festival .hero__content {
  padding-bottom: 4rem;
}

.hero--festival .hero__ctas {
  justify-content: center;
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.top3-card--lean {
  padding-top: 2.25rem;
}

.top3-card__rank--amber {
  background-color: var(--star);
}

.top3-card__rank--accent {
  background-color: var(--accent);
}

.category-grid--festival .category-card {
  border-top: 4px solid var(--primary);
}

.category-grid--festival .category-card:nth-child(2) {
  border-top-color: var(--accent);
}

.category-grid--festival .category-card:nth-child(3) {
  border-top-color: var(--star);
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue span {
    animation: none;
  }
}

/* ==========================================================================
   AFF-340 — Avada Classic homepage sections
   ========================================================================== */

.hero__sub {
  color: rgba(255,255,255,.85);
  font-size: 1.125rem;
  margin: .75rem 0 1.5rem;
  max-width: 520px;
}
.hero--festival h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 640px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
.usp-item { text-align: center; padding: 1.5rem; }
.usp-item__icon {
  width: 56px; height: 56px;
  background: var(--primary-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.usp-item h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.usp-item p  { color: var(--text-soft); font-size: .9375rem; }

@media (max-width: 680px) {
  .usp-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .usp-item { padding: 1rem; text-align: left; display: flex; gap: 1rem; align-items: flex-start; }
  .usp-item__icon { flex-shrink: 0; width: 44px; height: 44px; }
}

.section--stats {
  background: var(--primary-dark);
  padding: 3rem 0;
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-item__number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.25rem;
  line-height: 1.1;
}
.stat-item__label {
  display: block;
  font-size: .875rem;
  opacity: .75;
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
@media (max-width: 480px) {
  .stats-row { gap: 2rem; }
  .stat-item__number { font-size: 1.75rem; }
}

.featured-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.featured-split__img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.featured-split__body { padding: 1rem 0; }
.badge {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}
.featured-split__body h3 {
  font-size: 1.625rem;
  margin-bottom: .75rem;
}
.feature-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.feature-list li {
  padding: .375rem 0;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.feature-list li::before {
  content: "\2713";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .featured-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .featured-split__img img { height: 240px; }
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.tip-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.tip-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tip-card img { width: 100%; height: 200px; object-fit: cover; }
.tip-card__body { padding: 1.25rem; flex: 1; }
.tip-card__tag {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
  margin-bottom: .5rem;
  display: block;
}
.tip-card h3 { font-size: 1rem; line-height: 1.35; color: var(--text); margin: 0; }
@media (max-width: 768px) {
  .tips-grid { grid-template-columns: 1fr; }
  .tip-card img { height: 180px; }
}
@media (min-width: 481px) and (max-width: 768px) {
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   AUTHOR BYLINES & TEST METHODOLOGY — E-E-A-T (AFF-437)
   ===================================================== */
.author-bylines {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  margin: 3rem 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
}
.author-avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-avatar svg {
  width: 32px;
  height: 32px;
}
.author-info {
  flex: 1 1 auto;
  min-width: 0;
}
.author-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: .25rem;
}
.author-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.author-bio {
  font-size: .92rem;
  color: var(--text-soft);
  margin: 0 0 .75rem;
  line-height: 1.6;
}
.author-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.author-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .author-bylines {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  .author-link {
    display: inline-block;
  }
}

/* ---- Testmethodologie compact (review pagina's) ---- */
.methodology-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.methodology-compact__item {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border-left: 3px solid var(--primary);
}
.methodology-compact__item h3 {
  margin: 0 0 .5rem;
  font-size: 1rem;
}
.methodology-compact__item p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-soft);
  font-size: .92rem;
}
.methodology-compact__note {
  background: var(--primary-soft);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-top: .5rem;
  line-height: 1.6;
  font-size: .92rem;
}
@media (max-width: 640px) {
  .methodology-compact {
    grid-template-columns: 1fr;
  }
}
