/* ============================================
   PROJEKT: site34-de | vanwrite.com | CAS Consultancy B.V. | DE
   Design refresh: einheitliche Palette, klare Typografie, weicher Hintergrund
   PALETTE: vondel-green (primär), consultancy-navy, paper-white, ink-charcoal, voorschoten-mint
   TYPOGRAFIE: Open Sans (klar), Playfair nur Hero/Logo
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden !important; width: 100% !important; max-width: 100%; }

:root {
  --header-height: 72px;
  --vondel-green: #2d5a4a;
  --consultancy-navy: #1a2f4a;
  --paper-white: #fafbfa;
  --surface: #f2f5f4;
  --ink-charcoal: #2c2c2c;
  --ink-soft: #4a4a4a;
  --voorschoten-mint: #5a9b82;
  --mint-light: rgba(90, 155, 130, 0.12);
  --font-heading: 'Open Sans', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow-sm: 0 2px 12px rgba(26, 47, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 47, 74, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 47, 74, 0.12);
  --radius: 14px;
  --radius-lg: 18px;
}

@media (max-width: 600px) {
  :root { --header-height: 60px; }
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.9vw, 1.0625rem);
  color: var(--ink-charcoal);
  background: var(--surface);
  line-height: 1.65;
}

/* ========== Atomic utilities ========== */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.text-center { text-align: center; }
.max-w { max-width: 1200px; margin-left: auto; margin-right: auto; }
.px-1 { padding-left: 1rem; padding-right: 1rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }
.bg-navy { background-color: var(--consultancy-navy); }
.bg-paper { background-color: var(--paper-white); }
.text-paper { color: var(--paper-white); }
.text-ink { color: var(--ink-charcoal); }

/* ========== Layout ========== */
.l-wrap { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
@media (max-width: 768px) { .l-wrap { padding-left: 0.75rem; padding-right: 0.75rem; } }

.c-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(26, 47, 74, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--paper-white);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  box-shadow: 0 2px 20px rgba(26, 47, 74, 0.2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.c-header__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--paper-white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.c-header__badge {
  display: inline-block;
  background: var(--voorschoten-mint);
  color: var(--paper-white);
  font-size: 0.65rem;
  padding: 4px 10px;
  margin-left: 8px;
  font-weight: 700;
  border-radius: 10px;
  letter-spacing: 0.03em;
}
.c-header__burger {
  display: none;
  background: transparent;
  border: none;
  color: var(--paper-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 768px) { .c-header__burger { display: block; } }

.c-header__nav { display: flex; align-items: center; }
.c-header__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  justify-content: flex-start;
}
.c-header__menu a { color: var(--paper-white); text-decoration: none; font-weight: 500; }
.c-header__menu a:hover { color: var(--voorschoten-mint); }

@media (max-width: 768px) {
  .c-header__nav {
    display: none;
    position: fixed;
    top: calc(var(--header-height) - 1px);
    left: 0; right: 0;
    background: var(--consultancy-navy);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .c-header__nav.is-open { display: block; }
  .c-header__menu { flex-direction: column; }
}

/* ========== Hero ========== */
.c-hero {
  padding: calc(var(--header-height) + 2.5rem) 1.5rem 3rem;
  text-align: center;
  color: var(--paper-white);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--consultancy-navy) 0%, var(--vondel-green) 70%, #234a3d 100%);
  background-attachment: scroll;
}
.c-hero__inner { position: relative; z-index: 1; padding: 2rem; max-width: 560px; margin: 0 auto; }
.c-hero__label {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: var(--paper-white);
  padding: 6px 14px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
.c-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin: 0 0 0.75rem;
  line-height: 1.22;
  font-weight: 700;
}
.c-hero__sub {
  margin: 0 0 1.5rem;
  opacity: 0.92;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.6;
}
.c-hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ========== Buttons ========== */
.m-btn {
  display: inline-block;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.m-btn--primary {
  background: var(--voorschoten-mint);
  color: var(--paper-white);
  border-color: var(--voorschoten-mint);
}
.m-btn--primary:hover {
  background: var(--vondel-green);
  border-color: var(--vondel-green);
  color: var(--paper-white);
  box-shadow: var(--shadow-md);
}
.m-btn--outline {
  background: transparent;
  color: var(--paper-white);
  border-color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
}
.m-btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper-white);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: calc(var(--radius) - 2px);
}
.m-btn--outline:hover { color: var(--consultancy-navy); border-color: var(--paper-white); }
.m-btn--outline:hover::before { transform: scaleX(1); }
.m-btn--outline-dark { background: transparent; color: var(--vondel-green); border: 2px solid var(--vondel-green); }
.m-btn--outline-dark:hover { background: var(--vondel-green); color: var(--paper-white); }

/* ========== Sections ========== */
.l-section {
  padding: 3rem 0;
  background: var(--paper-white);
  box-shadow: 0 -1px 0 rgba(26, 47, 74, 0.06);
}
.l-section.section--games { padding: 3.5rem 0; }
.m-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 1.75rem;
  text-align: center;
  color: var(--consultancy-navy);
  letter-spacing: -0.02em;
}

/* Benefits */
.m-benefits { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.m-benefit {
  flex: 1 1 280px;
  max-width: 340px;
  padding: 1.75rem;
  background: var(--paper-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 90, 74, 0.08);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.m-benefit:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.m-benefit__icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.m-benefit__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin: 0 0 0.5rem; color: var(--vondel-green); }
.m-benefit__text { margin: 0; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

/* Games grid */
.m-games-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}
.m-game {
  flex: 0 0 auto;
  width: clamp(280px, 25vw, 350px);
  max-width: 350px;
  min-width: 280px;
  background: var(--paper-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 90, 74, 0.08);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.m-game:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.m-game__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, rgba(126, 184, 164, 0.2) 0%, rgba(126, 184, 164, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-game__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.m-game__body { padding: 1.5rem; }
.m-game__title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin: 0 0 0.5rem; color: var(--consultancy-navy); }
.m-game__desc { margin: 0 0 1rem; font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.6; }
.m-game__cta { margin-top: auto; }

@media (max-width: 768px) {
  .m-games-grid { flex-direction: column; align-items: center; }
  .m-game { width: 100%; max-width: 400px; }
}

/* FAQ */
.m-faq-list { max-width: 640px; margin: 0 auto; }
.m-faq-item { border-bottom: 1px solid rgba(44, 44, 44, 0.12); }
.m-faq-item__q {
  width: 100%;
  padding: 1rem 0;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-faq-item__q::after { content: '+'; font-size: 1.25rem; color: var(--voorschoten-mint); }
.m-faq-item__q[aria-expanded="true"]::after { content: '−'; }
.m-faq-item__a {
  padding: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}
.m-faq-item__a.is-open { display: block; }

/* Disclaimer */
.c-disclaimer {
  background: linear-gradient(135deg, var(--vondel-green) 0%, var(--consultancy-navy) 100%);
  color: var(--paper-white);
  padding: 2.25rem 1.5rem;
  text-align: center;
}
.c-disclaimer__title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin: 0 0 1rem; }
.c-disclaimer__text { margin: 0 0 0.5rem; font-size: 0.9375rem; max-width: 720px; margin-left: auto; margin-right: auto; opacity: 0.95; }
.c-disclaimer__badges { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.25rem; }
.c-disclaimer__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Footer */
.c-footer { background: var(--ink-charcoal); color: var(--paper-white); padding: 2.5rem 0 1.5rem; }
.c-footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .c-footer__grid { grid-template-columns: 1fr; } }
.c-footer__title { font-family: var(--font-heading); font-size: 1.1rem; margin: 0 0 0.75rem; }
.c-footer__intro { margin: 0 0 1rem; font-size: 0.9rem; opacity: 0.9; }
.c-footer__label { font-size: 0.8rem; opacity: 0.8; margin-bottom: 0.25rem; }
.c-footer__address { font-style: normal; font-size: 0.9rem; }
.c-footer__address span { display: block; }
.c-footer__links { list-style: none; margin: 0; padding: 0; }
.c-footer__links a { color: var(--paper-white); text-decoration: none; }
.c-footer__links a:hover { color: var(--voorschoten-mint); }
.c-footer__compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.compliance-logo {
  height: 35px !important;
  width: auto !important;
  background: rgba(255,255,255,0.95);
  padding: 8px;
  border-radius: 8px;
  transition: opacity 0.3s;
}
.compliance-logo:hover { opacity: 1; }
.c-footer__bottom { text-align: center; font-size: 0.85rem; opacity: 0.85; padding-top: 1rem; }
.c-footer__bottom a { color: var(--voorschoten-mint); }

/* Modals */
/* Age modal: full-screen overlay */
.age-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 47, 74, 0.9);
}
.age-modal[aria-hidden="true"] { display: none; }
.age-modal__box {
  background: var(--paper-white);
  color: var(--ink-charcoal);
  padding: 2rem;
  border-radius: 16px;
  max-width: 420px;
  margin: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.age-modal__title { margin: 0 0 1rem; }
.age-modal__body p { margin: 0 0 0.5rem; }
.age-modal__buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
/* Вторая кнопка в возрастном модале — на светлом фоне, делаем контрастной */
.age-modal .m-btn--outline {
  color: var(--ink-charcoal);
  border-color: var(--vondel-green);
}
.age-modal .m-btn--outline::before {
  background: var(--vondel-green);
}
.age-modal .m-btn--outline:hover {
  color: var(--paper-white);
}
.age-modal__warning { font-size: 0.85rem; margin-top: 1rem !important; opacity: 0.9; }

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 350px;
  background: var(--consultancy-navy);
  border: 1px solid rgba(90, 155, 130, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 9999;
  color: var(--paper-white);
  box-shadow: var(--shadow-lg);
}
.cookie-consent[aria-hidden="true"] { display: none; }
.cookie-consent__box p { margin: 0 0 1rem; font-size: 0.9rem; }
.cookie-consent__box a { color: var(--voorschoten-mint); text-decoration: underline; }
.cookie-consent__box .m-btn { margin-top: 0.5rem; }
@media (max-width: 480px) {
  .cookie-consent {
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    max-width: none;
  }
}

.page-main {
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}
@media (min-width: 769px) {
  .page-main { padding-left: 0; padding-right: 0; }
}

/* Inner pages */
.l-page-hero {
  padding: calc(var(--header-height) + 2rem) 1.5rem 2rem;
  background: linear-gradient(155deg, var(--consultancy-navy) 0%, var(--vondel-green) 100%);
  color: var(--paper-white);
  text-align: center;
}
.l-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
.l-content {
  padding: 2rem 0 3rem;
  background: var(--paper-white);
}
.l-content h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin: 1.5rem 0 0.75rem; color: var(--consultancy-navy); }
.l-content p { margin: 0 0 0.75rem; }
.l-content a { color: var(--voorschoten-mint); text-decoration: none; }
.l-content a:hover { text-decoration: underline; }
.l-content a.m-btn--primary,
.l-content a.m-btn--primary:hover { color: var(--paper-white) !important; text-decoration: none; }
.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .account-grid { grid-template-columns: 1fr; } }
.account-tabs { display: flex; gap: 0; margin-bottom: 1.5rem; }
.account-tab {
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--vondel-green);
  background: var(--paper-white);
  color: var(--ink-charcoal);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
}
.account-tab:first-child { border-radius: 12px 0 0 12px; }
.account-tab:last-child { border-radius: 0 12px 12px 0; }
.account-tab.is-active { background: var(--vondel-green); color: var(--paper-white); }
.account-panel.is-hidden { display: none; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.35rem; }
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(45, 90, 74, 0.3);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.form-checkbox { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.form-checkbox input { width: auto; }
.account-contact p { margin: 0 0 0.5rem; }
.is-hidden { display: none !important; }

.article-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.article-card { flex: 1 1 280px; max-width: 360px; background: var(--paper-white); border-radius: 16px; box-shadow: 0 4px 20px rgba(44,44,44,0.08); border: 1px solid rgba(45,90,74,0.12); overflow: hidden; }
.article-card > div { padding: 1.25rem; }

/* Blog page */
.l-content.blog-content {
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, rgba(126, 184, 164, 0.04) 0%, var(--paper-white) 15%, var(--paper-white) 100%);
}
.blog-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(126, 184, 164, 0.08) 0%, rgba(255,255,255,0.95) 100%);
  border-radius: 16px;
  border-left: 4px solid var(--vondel-green);
  box-shadow: 0 2px 12px rgba(45, 90, 74, 0.06);
}
.blog-intro p { margin: 0; line-height: 1.7; color: var(--ink-charcoal); }

.blog-content .article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-content .article-card {
  flex: none;
  max-width: none;
  background: var(--paper-white);
  border-radius: 16px;
  border: 1px solid rgba(45, 90, 74, 0.12);
  box-shadow: 0 4px 20px rgba(44, 44, 44, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.blog-content .article-card:hover {
  box-shadow: 0 8px 28px rgba(45, 90, 74, 0.12);
  transform: translateY(-2px);
}
.blog-content .article-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--vondel-green) 0%, var(--voorschoten-mint) 100%);
  border-radius: 4px 0 0 4px;
  z-index: 1;
}
.blog-content .article-card__body {
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-content .article-card .m-game__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--consultancy-navy);
  padding-left: 0.25rem;
  line-height: 1.3;
}
.blog-content .article-card__body p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-charcoal);
  flex: 1;
}
.blog-content .article-card__body .m-btn { align-self: flex-start; margin-top: auto; }

@media (max-width: 640px) {
  .blog-content .article-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* Bewertungen / Reviews page */
.l-content.reviews-content {
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, rgba(126, 184, 164, 0.04) 0%, var(--paper-white) 15%, var(--paper-white) 100%);
}
.reviews-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(126, 184, 164, 0.08) 0%, rgba(255,255,255,0.95) 100%);
  border-radius: 16px;
  border-left: 4px solid var(--vondel-green);
  box-shadow: 0 2px 12px rgba(45, 90, 74, 0.06);
}
.reviews-intro p { margin: 0; line-height: 1.7; color: var(--ink-charcoal); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: var(--paper-white);
  border-radius: 16px;
  border: 1px solid rgba(45, 90, 74, 0.12);
  box-shadow: 0 4px 20px rgba(44, 44, 44, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.review-card:hover {
  box-shadow: 0 8px 28px rgba(45, 90, 74, 0.12);
  transform: translateY(-2px);
}
.review-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--vondel-green) 0%, var(--voorschoten-mint) 100%);
  border-radius: 4px 0 0 4px;
  z-index: 1;
}
.review-card .m-game__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, rgba(126, 184, 164, 0.15) 0%, rgba(126, 184, 164, 0.04) 100%);
}
.review-card .m-game__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-card__body {
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.review-card .m-game__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: var(--consultancy-navy);
  padding-left: 0.25rem;
}
.review-card__body p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-charcoal);
  flex: 1;
}
.review-card__body .m-btn { align-self: flex-start; margin-top: auto; }

@media (max-width: 640px) {
  .review-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

/* Guides / Anleitungen page */
.l-content.guides-content {
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, rgba(126, 184, 164, 0.04) 0%, var(--paper-white) 15%, var(--paper-white) 100%);
}
.guides-intro {
  max-width: 960px;
  margin: 0 auto 2.5rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(126, 184, 164, 0.08) 0%, rgba(255,255,255,0.95) 100%);
  border-radius: 16px;
  border-left: 4px solid var(--vondel-green);
  box-shadow: 0 2px 12px rgba(45, 90, 74, 0.06);
}
.guides-intro p { line-height: 1.7; margin: 0 0 1rem; color: var(--ink-charcoal); }
.guides-intro p:last-child { margin-bottom: 0; }
.guides-intro h2 { font-family: var(--font-heading); font-size: 1.35rem; margin: 1.5rem 0 0.75rem; color: var(--consultancy-navy); }
.guides-intro h2:first-child { margin-top: 0; }

.guide-block {
  max-width: 960px;
  margin: 0 auto 2rem;
  padding: 2rem 1.75rem;
  background: var(--paper-white);
  border-radius: 16px;
  border: 1px solid rgba(45, 90, 74, 0.12);
  box-shadow: 0 4px 20px rgba(44, 44, 44, 0.06);
  position: relative;
  overflow: hidden;
}
.guide-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--vondel-green) 0%, var(--voorschoten-mint) 100%);
  border-radius: 4px 0 0 4px;
}
.guide-block__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--consultancy-navy);
  padding-left: 0.25rem;
}
.guide-block__text {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--ink-charcoal);
  padding-left: 0.25rem;
}
.guide-block__cta { margin: 1.25rem 0 0; padding-left: 0.25rem; }
.guide-block__cta .m-btn { display: inline-block; }

.guide-tips {
  max-width: 960px;
  margin: 2.5rem auto 0;
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, rgba(126, 184, 164, 0.06) 0%, var(--paper-white) 100%);
  border-radius: 16px;
  border: 1px solid rgba(45, 90, 74, 0.1);
  box-shadow: 0 2px 16px rgba(45, 90, 74, 0.04);
}
.guide-tips .guide-block__title { margin-top: 0; }
.guide-tips p { line-height: 1.7; margin: 0 0 1rem; color: var(--ink-charcoal); }
.guide-tips p:last-of-type { margin-bottom: 0; }

/* Verantwortungsvoll spielen page */
.l-content.responsible-content {
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, rgba(126, 184, 164, 0.04) 0%, var(--paper-white) 15%, var(--paper-white) 100%);
}
.responsible-intro {
  max-width: 960px;
  margin: 0 auto 2rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(126, 184, 164, 0.08) 0%, rgba(255,255,255,0.95) 100%);
  border-radius: 16px;
  border-left: 4px solid var(--vondel-green);
  box-shadow: 0 2px 12px rgba(45, 90, 74, 0.06);
}
.responsible-intro p { margin: 0; line-height: 1.7; color: var(--ink-charcoal); }
.responsible-block {
  max-width: 960px;
  margin: 0 auto 2rem;
  padding: 2rem 1.75rem;
  background: var(--paper-white);
  border-radius: 16px;
  border: 1px solid rgba(45, 90, 74, 0.12);
  box-shadow: 0 4px 20px rgba(44, 44, 44, 0.06);
  position: relative;
  overflow: hidden;
}
.responsible-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--vondel-green) 0%, var(--voorschoten-mint) 100%);
  border-radius: 4px 0 0 4px;
}
.responsible-block__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--consultancy-navy);
  padding-left: 0.25rem;
}
.responsible-block p { margin: 0 0 1rem; padding-left: 0.25rem; line-height: 1.7; color: var(--ink-charcoal); }
.responsible-block ul { margin: 0 0 1rem; padding-left: 1.75rem; line-height: 1.7; color: var(--ink-charcoal); list-style: disc; }
.responsible-block li { margin-bottom: 0.5rem; }
.responsible-block li a { color: var(--voorschoten-mint); }
.responsible-block p:last-child { margin-bottom: 0; }
.responsible-block .responsible-contact { padding-left: 0.25rem; margin-top: 1rem; font-size: 0.95rem; }

/* Hilfsangebote – Karten mit Buttons */
.help-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.25rem 0 0;
  width: 100%;
  max-width: 100%;
}
.help-card {
  background: var(--paper-white);
  border: 1px solid rgba(45, 90, 74, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(26, 47, 74, 0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.help-card:hover {
  box-shadow: 0 6px 20px rgba(45, 90, 74, 0.1);
  transform: translateY(-2px);
}
.help-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--consultancy-navy);
}
.help-card__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  flex: 1;
}
.help-card__btn {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .help-cards { grid-template-columns: 1fr; }
}

.l-content .content-wrap { margin-bottom: 1.5rem; }
