/* ============================================================
   Soest Centraal — Hoofdstijlblad
   Mobile-first, geen externe frameworks
   ============================================================ */

/* --- Lucide Icons ----------------------------------------- */
[data-lucide] { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.app-header [data-lucide] { width: 20px; height: 20px; color: #fff; stroke-width: 2; }
.app-header__back [data-lucide] { width: 20px; height: 20px; color: #fff; stroke-width: 2; }
.tab-bar [data-lucide] { width: 15px; height: 15px; vertical-align: -3px; margin-right: 3px; stroke-width: 2; }
.team-card__chevron [data-lucide] { width: 16px; height: 16px; color: var(--text-muted); transition: transform .2s; stroke-width: 2; }
.empty-state__icon [data-lucide] { display: block; width: 48px; height: 48px; color: var(--border); stroke-width: 1.5; margin: 0 auto 12px; }
.login-card__logo-icon [data-lucide] { display: block; width: 36px; height: 36px; color: var(--green); stroke-width: 1.5; margin: 0 auto; }

/* --- Variabelen ------------------------------------------- */
:root {
  --green:       #0D6B3C;
  --green-dark:  #094d2b;
  --green-light: #e8f5ef;
  --orange:      #E05C1A;
  --blue:        #1B55AC;
  --blue-light:  #e8f0fb;
  --bg:          #F0F4F1;
  --surface:     #FFFFFF;
  --text:        #1A1A2E;
  --text-muted:  #5A6472;
  --border:      #DDE3E0;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,.12);
  --header-h:    60px;
  --font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  padding-bottom: env(safe-area-inset-bottom, 16px);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* --- App-header ------------------------------------------- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.app-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-header__logo {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-header__back {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  opacity: .85;
}
.app-header__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.3px;
}
.app-header__sub {
  font-size: .7rem;
  color: rgba(255,255,255,.7);
  display: block;
  margin-top: -2px;
}

/* --- Home screen (iOS-stijl) ------------------------------ */
.home-body {
  background: #071f12;
  overflow-x: hidden;
}

.wallpaper {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #0c4a22 0%, #145c2e 25%, #0a3d1c 55%, #071812 100%);
}
.wallpaper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 15%, rgba(52,199,89,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(10,132,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 50% 50%, rgba(255,149,0,.06) 0%, transparent 60%);
}

.home-wrap {
  position: relative;
  z-index: 1;
  padding: 0 22px calc(env(safe-area-inset-bottom, 0px) + 32px);
  max-width: 430px;
  margin: 0 auto;
}

/* Topbar */
.home-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: calc(env(safe-area-inset-top, 0px) + 44px) 0 28px;
}
.home-topbar__logo {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home-topbar__logo [data-lucide] { display: block; width: 22px; height: 22px; color: #fff; stroke-width: 2; }
.home-topbar__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1.1;
}
.home-topbar__sub {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

/* App grid */
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 12px;
  margin-bottom: 28px;
}

.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  text-decoration: none;
}
.app-icon:active .app-icon__bg { transform: scale(.88); opacity: .8; }

.app-icon__bg {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .12s ease, opacity .12s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.25);
}
.app-icon__bg [data-lucide] { display: block; width: 44%; height: 44%; stroke-width: 1.8; color: #fff; }
.app-icon__label {
  font-size: .65rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

.app-icon--green  .app-icon__bg { background: linear-gradient(145deg, #3dd37a 0%, #1a8a3e 100%); }
.app-icon--blue   .app-icon__bg { background: linear-gradient(145deg, #3b9eff 0%, #0055cc 100%); }
.app-icon--insta  .app-icon__bg { background: linear-gradient(145deg, #f58529 0%, #dd2a7b 50%, #8134af 100%); }
.app-icon--orange .app-icon__bg { background: linear-gradient(145deg, #ffb340 0%, #d07000 100%); }
.app-icon--teal   .app-icon__bg { background: linear-gradient(145deg, #5ee7df 0%, #00897b 100%); }
.app-icon--red    .app-icon__bg { background: linear-gradient(145deg, #ff6b6b 0%, #c0175b 100%); }

/* Widgets (frosted glass) */
.widget {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  padding: 16px 18px;
  margin-bottom: 16px;
  color: #fff;
}

.widget__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.55);
}
.widget__header [data-lucide] { display: inline-block; width: 13px; height: 13px; stroke-width: 2.5; vertical-align: middle; }
.widget__more {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.widget__more [data-lucide] { display: inline-block; width: 12px; height: 12px; stroke-width: 2.5; vertical-align: middle; }

/* Widget: standings tabel */
.widget .standings-mini { color: #fff; }
.widget .standings-mini th {
  color: rgba(255,255,255,.4);
  border-bottom-color: rgba(255,255,255,.1);
}
.widget .standings-mini td { border-bottom-color: rgba(255,255,255,.07); }
.widget .standings-mini tr:last-child td { border-bottom: none; }
.widget .pos-badge { background: rgba(255,255,255,.15); color: #fff; }

/* Widget: nieuws */
.widget__news-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}
.widget__news-item:last-child { border-bottom: none; padding-bottom: 2px; }
.widget__news-item:active { opacity: .7; }
.widget__news-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255,255,255,.1);
}
.widget__news-body { flex: 1; min-width: 0; }
.widget__news-title {
  font-size: .86rem;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.widget__news-meta {
  font-size: .7rem;
  color: rgba(255,255,255,.42);
  margin-top: 3px;
}

/* --- Tile stijlen (voetbal/nieuws pagina's) --------------- */
/* Voetbal-preview: mini stand */
.tile__standings-preview {
  padding: 0 16px 14px;
}
.standings-mini {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
}
.standings-mini th {
  color: var(--text-muted);
  font-weight: 600;
  text-align: left;
  padding: 4px 4px 4px 0;
  border-bottom: 1px solid var(--border);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.standings-mini th:not(:first-child),
.standings-mini td:not(:first-child) {
  text-align: center;
}
.standings-mini td {
  padding: 5px 4px 5px 0;
  border-bottom: 1px solid var(--border);
}
.standings-mini tr:last-child td { border-bottom: none; }
.pos-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
  background: var(--green-light);
  color: var(--green-dark);
}
.tile__more-link {
  display: block;
  text-align: center;
  padding: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green);
  border-top: 1px solid var(--border);
}
.tile--nieuws .tile__more-link { color: var(--blue); }

/* Nieuws-preview */
.news-preview {
  padding: 0 16px 4px;
}
.news-item-mini {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.news-item-mini:last-child { border-bottom: none; }
.news-item-mini__title {
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item-mini__meta {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* --- Instagram-strip -------------------------------------- */
.insta-section {
  padding: 8px 16px 20px;
  max-width: 640px;
  margin: 0 auto;
}
.insta-section__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.insta-section__title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.insta-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.insta-strip::-webkit-scrollbar { display: none; }
.insta-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 28px;
}
.insta-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insta-placeholder {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  width: 100%;
}

/* --- Volledige pagina's ------------------------------------ */
.page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-header__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  font-size: 18px;
  color: var(--text);
}
.page-header__title {
  font-size: 1.05rem;
  font-weight: 700;
}

.page-content {
  padding: 16px;
  max-width: 640px;
  margin: 0 auto;
}

/* --- Tab-balk (Veld / Zaal) -------------------------------- */
.tab-bar {
  display: flex;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}
.tab-bar a {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.tab-bar a.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* --- Inner-page tabs (sport Veld/Zaal) -------------------- */
.inner-tabs { display: flex; gap: 8px; padding: 10px 0 0; }
.inner-tabs a { flex: 1; text-align: center; padding: 7px 10px; border-radius: 20px; font-size: .8rem; font-weight: 600; text-decoration: none; background: rgba(255,255,255,.15); color: rgba(255,255,255,.8); }
.inner-tabs a.active { background: #fff; color: var(--green); }

/* --- Team-kaart ------------------------------------------- */
.team-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0 16px 10px;
  overflow: hidden;
}
.team-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  cursor: pointer;
}
.team-card__name {
  font-weight: 700;
  font-size: .95rem;
}
.team-card__sub { font-size: .72rem; color: var(--text-muted); margin-top: 2px; }
.team-card__pos {
  font-size: .75rem;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 20px;
  padding: 2px 10px;
  font-weight: 600;
}
.team-card__body {
  padding: 0 14px 14px;
  border-top: 1px solid var(--border);
  display: block;
}
.team-card__body.closed { display: none; }
.team-card__section { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .4px; padding: 10px 0 4px; }
.team-card__match { font-size: .82rem; padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.team-card__match:last-child { border-bottom: none; }
.team-card__match-date { font-size: .72rem; color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.team-card__home { background: var(--green); color: #fff; font-size: .65rem; font-weight: 600; padding: 1px 6px; border-radius: 10px; }
.team-card__chevron.flipped [data-lucide] { transform: rotate(180deg); }

/* --- Sport nieuwe navigatie -------------------------------- */
.sport-breadcrumb { display:flex;align-items:center;gap:6px;font-size:.82rem;color:var(--text-muted);margin-bottom:20px;flex-wrap:wrap; }
.sport-breadcrumb__sep { color:#ccc; }
.sport-breadcrumb__item { color:var(--text-muted);text-decoration:none; }
.sport-breadcrumb__item:hover { color:var(--green); }
.sport-breadcrumb__item--active { color:var(--text);font-weight:600; }

/* Sport categorieën landing */
.sport-categories-header { text-align:center;padding:16px 0 10px; }
.sport-categories-header h2 { font-size:1.3rem;font-weight:700;margin:0; }
.sport-categories-header p { color:var(--text-muted);font-size:.85rem;margin:4px 0 0; }
.sport-cat-grid { display:grid;grid-template-columns:repeat(auto-fit,minmax(120px,1fr));gap:14px;margin-top:16px; }
.sport-cat-card { background:var(--surface);border-radius:16px;padding:28px 16px;text-align:center;text-decoration:none;color:var(--text);border:2px solid var(--border);transition:.15s;display:block; }
.sport-cat-card:hover { border-color:var(--green);transform:translateY(-2px);box-shadow:0 4px 16px rgba(0,0,0,.08); }
.sport-cat-card__emoji { font-size:2.4rem;line-height:1;margin-bottom:10px; }
.sport-cat-card__label { font-size:1rem;font-weight:700;margin-bottom:4px; }
.sport-cat-card__sub { font-size:.78rem;color:var(--text-muted); }

/* Sub-categorieën (Veld / Zaal) */
.sport-subcat-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:8px; }
.sport-subcat-card { background:var(--surface);border-radius:14px;padding:24px 12px;text-align:center;text-decoration:none;color:var(--text);border:2px solid var(--border);transition:.15s;display:block; }
.sport-subcat-card:hover { border-color:var(--green);transform:translateY(-2px);box-shadow:0 4px 16px rgba(0,0,0,.08); }
.sport-subcat-card__icon { font-size:2rem;margin-bottom:8px; }
.sport-subcat-card__label { font-size:.95rem;font-weight:700; }

/* Team icons grid */
.sport-team-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:8px; }
.sport-team-icon { background:var(--surface);border-radius:14px;padding:22px 12px 16px;text-align:center;text-decoration:none;color:var(--text);border:2px solid var(--border);transition:.15s;display:block; }
.sport-team-icon:hover { border-color:var(--green);transform:translateY(-2px);box-shadow:0 4px 16px rgba(0,0,0,.08); }
.sport-team-icon__circle { width:60px;height:60px;border-radius:50%;background:var(--green);color:#fff;font-size:1.3rem;font-weight:800;display:flex;align-items:center;justify-content:center;margin:0 auto 10px; }
.sport-team-icon__circle--logo { background:var(--bg);border:2px solid var(--border); }
.sport-team-icon__circle--logo img { width:46px;height:46px;object-fit:contain;border-radius:2px; }
.sport-team-icon__name { font-size:.88rem;font-weight:600;line-height:1.3; }

/* Team detail */
.sport-team-detail { max-width:600px; }
.sport-team-detail__name { font-size:1.4rem;font-weight:800;margin:0 0 16px; }
.sport-section-title { font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--text-muted);margin-bottom:8px; }
.sport-standing-card { background:var(--surface);border-radius:12px;padding:14px 16px;display:flex;align-items:center;gap:16px;border:1px solid var(--border); }
.sport-standing-card__pos { font-size:2rem;font-weight:900;color:var(--green);min-width:44px;text-align:center; }
.sport-standing-card__poule { font-size:.78rem;color:var(--text-muted);margin-bottom:3px; }
.sport-standing-card__stats { font-size:.85rem; }
.sport-match-row { display:flex;align-items:center;gap:10px;padding:10px 0;border-bottom:1px solid var(--border);font-size:.88rem;flex-wrap:wrap; }
.sport-match-row:last-child { border-bottom:none; }
.sport-match-row__date { font-size:.75rem;color:var(--text-muted);min-width:46px;flex-shrink:0; }
.sport-match-row__teams { flex:1; }
.sport-match-row__teams em { color:var(--text-muted);font-style:normal;margin:0 4px; }
.sport-match-row__score { background:#f0f0f0;padding:2px 8px;border-radius:6px;font-size:.82rem;margin:0 6px; }
.sport-match-row--result .sport-match-row__score { background:#e8f5e9; }
.sport-match-row__badge { background:var(--green);color:#fff;font-size:.65rem;font-weight:600;padding:2px 7px;border-radius:10px;flex-shrink:0; }
.sport-empty { padding:32px 0;text-align:center;color:var(--text-muted);font-size:.9rem; }
.sport-tabs { display:flex; border-bottom:2px solid var(--border); margin:0 0 16px; }
.sport-tabs__tab { flex:1; text-align:center; padding:8px 4px 10px; font-size:.82rem; font-weight:600; text-decoration:none; color:var(--text-muted); border-bottom:2px solid transparent; margin-bottom:-2px; transition:color .15s,border-color .15s; }
.sport-tabs__tab.active { color:var(--green); border-bottom-color:var(--green); }
.sport-poule-title { font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--text-muted);margin:0 0 10px; }
/* Stand table */
.sport-league-table { font-size:.82rem;border-radius:12px;overflow:hidden;border:1.5px solid var(--border);box-shadow:0 1px 4px rgba(0,0,0,.05); }
.sport-league-table__header,.sport-league-table__row { display:grid;grid-template-columns:28px 26px 1fr 24px 24px 24px 52px 32px;gap:0;align-items:center; }
.sport-league-table__header { padding:7px 10px;background:var(--surface);font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.4px;color:var(--text-muted); }
.sport-league-table__row { padding:8px 10px;border-top:1px solid var(--border); }
.sport-league-table[data-mode="simple"] .sport-league-table__header,
.sport-league-table[data-mode="simple"] .sport-league-table__row { grid-template-columns:28px 26px 1fr 34px 34px; }
.sport-league-table[data-mode="simple-goals"] .sport-league-table__header,
.sport-league-table[data-mode="simple-goals"] .sport-league-table__row { grid-template-columns:28px 26px 1fr 34px 52px 34px; }
.sport-league-table__row--own { background:#e8f5ef;font-weight:700;box-shadow:inset 3px 0 0 var(--green); }
.sport-league-table__row--own .slt-pos { color:var(--green);font-weight:900; }
.sport-league-table__row--own .slt-pts strong { color:var(--green); }
.sport-league-table__row--own .slt-team { color:var(--green); }
.slt-pos { font-weight:700;color:var(--text-muted);font-size:.78rem; }
.slt-top-1 { color:#b8860b!important;font-weight:900; }
.slt-top-2 { color:#888!important;font-weight:900; }
.slt-top-3 { color:#a0522d!important;font-weight:900; }
.slt-avatar { display:flex;align-items:center; }
.slt-avatar__circle { width:24px;height:24px;border-radius:50%;background:var(--border);color:var(--text-muted);font-size:.56rem;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.slt-avatar__circle--own { background:var(--green);color:#fff; }
.slt-logo { width:24px;height:24px;border-radius:4px;object-fit:contain;flex-shrink:0; }
.slt-team { overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-left:4px; }
.slt-num,.slt-pts { text-align:center; }
.slt-goals { text-align:center;font-size:.75rem;color:var(--text-muted); }
/* PDF-documenten sectie */
.team-pdfs { margin-top:12px;display:flex;flex-direction:column;gap:6px }
.team-pdf-link { display:flex;align-items:center;gap:10px;background:#fff;border:1.5px solid var(--border);border-radius:10px;padding:10px 14px;text-decoration:none;color:var(--text);transition:.15s }
.team-pdf-link:hover { border-color:var(--green);background:#f0fdf4 }
.team-pdf-link__icon { font-size:1.2rem;flex-shrink:0 }
.team-pdf-link__name { flex:1;font-size:.85rem;font-weight:600;overflow:hidden;text-overflow:ellipsis;white-space:nowrap }
.team-pdf-link__dl { font-size:.8rem;font-weight:700;color:var(--green);flex-shrink:0 }

/* Fixture rows (uitslagen + programma) */
.sport-fixtures { border-radius:12px;overflow:hidden;border:1.5px solid var(--border);box-shadow:0 1px 4px rgba(0,0,0,.05); }
.sport-fixture { display:grid;align-items:center;padding:9px 12px;border-bottom:1px solid var(--border);gap:6px;font-size:.84rem; }
.sport-fixture:last-child { border-bottom:none; }
.sport-fixture--played { grid-template-columns:46px 1fr 60px 1fr 20px; }
.sport-fixture--planned { grid-template-columns:58px 1fr auto; }
.sport-fixture__date { font-size:.73rem;color:var(--text-muted);line-height:1.3; }
.sport-fixture__date small { display:block;font-size:.65rem; }
.sport-fixture__home { display:flex;align-items:center;justify-content:flex-end;gap:5px;overflow:hidden;font-size:.82rem; }
.sport-fixture__away { display:flex;align-items:center;gap:5px;overflow:hidden;font-size:.82rem; }
.fix-logo { width:16px;height:16px;border-radius:3px;object-fit:contain;flex-shrink:0; }
.fix-name { overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.sport-fixture__score { text-align:center;font-weight:800;font-size:.9rem;background:#f3f4f6;border-radius:7px;padding:3px 5px;letter-spacing:-.5px; }
.sport-fixture__score--win { background:#dcfce7;color:#16a34a; }
.sport-fixture__score--draw { background:#f3f4f6;color:#4b5563; }
.sport-fixture__score--loss { background:#fee2e2;color:#dc2626; }
.sport-fixture__result { font-size:.6rem;font-weight:800;text-align:center;width:18px;height:18px;border-radius:4px;display:flex;align-items:center;justify-content:center; }
.sport-fixture__result--win { background:#dcfce7;color:#16a34a; }
.sport-fixture__result--draw { background:#f3f4f6;color:#6b7280; }
.sport-fixture__result--loss { background:#fee2e2;color:#dc2626; }
.sport-fixture__matchup { overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.83rem; }
.sport-fixture__matchup em { color:var(--text-muted);font-style:normal;margin:0 3px; }
.sport-fixture__badge { background:var(--green);color:#fff;font-size:.62rem;font-weight:700;padding:2px 8px;border-radius:10px;white-space:nowrap;flex-shrink:0; }

/* --- Nieuws-pagina ---------------------------------------- */
.news-list { display: flex; flex-direction: column; gap: 10px; }
.news-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform .15s;
  -webkit-tap-highlight-color: transparent;
}
.news-card:active { transform: scale(.99); }
.news-card__thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg);
}
.news-card__body { flex: 1; min-width: 0; }
.news-card__title {
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__meta {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 5px;
  display: flex;
  gap: 6px;
}
.news-card__meta span::before { content: '·'; margin-right: 4px; }
.news-card__meta span:first-child::before { display: none; }

/* --- Lege staat ------------------------------------------- */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}
.empty-state__icon { margin-bottom: 12px; }
.empty-state__text { font-size: .9rem; line-height: 1.5; }

/* --- Offline-pagina --------------------------------------- */
.offline-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80dvh;
  padding: 40px 20px;
  text-align: center;
}

/* === BEHEERPANEEL ========================================= */
.admin-body {
  background: #f0f2f5;
  font-family: var(--font);
  color: var(--text);
  min-height: 100vh;
}
.admin-topbar {
  background: var(--green);
  color: #fff;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.admin-topbar a { color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 400; }
.admin-topbar a:hover { color: #fff; }
.admin-nav {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.admin-nav a {
  padding: 14px 18px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  margin-bottom: -2px;
  transition: color .15s;
}
.admin-nav a.active, .admin-nav a:hover { color: var(--green); border-bottom-color: var(--green); }

.admin-content {
  max-width: 960px;
  margin: 28px auto;
  padding: 0 20px;
}

/* Sectie-label boven card */
.admin-section-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin: 28px 0 8px;
}
.admin-section-label:first-child { margin-top: 0; }

.admin-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.admin-alert--green  { background: #f0fdf4; color: #16a34a; border-left: 4px solid #16a34a; }
.admin-alert--orange { background: #fffbeb; color: #b45309; border-left: 4px solid #f59e0b; }
.admin-alert--blue   { background: #eff6ff; color: #1d4ed8; border-left: 4px solid #3b82f6; }

.admin-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07), 0 4px 16px rgba(0,0,0,.05);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}
.admin-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.admin-card__head-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.admin-card__head-icon--green  { background: #e8f5ef; }
.admin-card__head-icon--blue   { background: #e8f0fb; }
.admin-card__head-icon--orange { background: #fff0e8; }
.admin-card__head-icon--purple { background: #f0e8fb; }
.admin-card__head h2 {
  font-size: .92rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
  border: none;
}
.admin-card__head p {
  font-size: .75rem;
  color: var(--text-muted);
  margin: 2px 0 0;
}
.admin-card__body { padding: 20px; }
.admin-card h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.admin-card h3 {
  font-size: .9rem;
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: .75rem;
}

/* --- Formulieren ------------------------------------------ */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  transition: border-color .15s;
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13,107,60,.12);
}
select.form-control { cursor: pointer; }

.standings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
}

/* --- Knoppen ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter .15s, transform .1s;
  font-family: var(--font);
  text-decoration: none;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { filter: brightness(1.1); }
.btn-secondary { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.btn-danger { background: #dc3545; color: #fff; }
.btn-sm { padding: 5px 12px; font-size: .8rem; }

/* --- Tabellen --------------------------------------------- */
.data-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.data-table th {
  text-align: left;
  padding: 8px 10px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.data-table td { padding: 10px 10px; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg); }
.badge {
  padding: 2px 8px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
}
.badge-veld { background: var(--green-light); color: var(--green-dark); }
.badge-zaal { background: var(--blue-light);  color: var(--blue); }

/* --- Meldingen -------------------------------------------- */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  font-size: .88rem;
  font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error   { background: #fee2e2; color: #991b1b; }
.alert-info    { background: var(--blue-light); color: var(--blue); }

/* --- Upload-zone ------------------------------------------ */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--green);
  background: var(--green-light);
}
.upload-zone__icon { font-size: 36px; margin-bottom: 8px; }
.upload-zone__text { font-size: .85rem; color: var(--text-muted); }
.upload-zone__hint { font-size: .75rem; color: var(--text-muted); margin-top: 4px; }

/* --- Login-pagina ----------------------------------------- */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 20px;
}
.login-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 32px 28px;
  width: 100%;
  max-width: 360px;
}
.login-card__logo {
  text-align: center;
  margin-bottom: 24px;
}
.login-card__logo-icon {
  font-size: 40px;
  background: var(--green-light);
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.login-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.login-card__sub {
  font-size: .8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2px;
}

/* --- Stats op dashboard ----------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
}
.stat-card__num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-card__label {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ==========================================================
   BEHEERPANEEL — ZIJBALK-LAYOUT (redesign)
   ========================================================== */
:root {
  --adm-sidebar: 248px;
  --adm-ink:     #0f172a;
  --adm-muted:   #64748b;
  --adm-line:    #e8ecf1;
  --adm-bg:      #f6f8fa;
}

.admin-body {
  background: var(--adm-bg);
  color: var(--adm-ink);
}

/* --- Zijbalk ---------------------------------------------- */
.adm-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--adm-sidebar);
  background: #fff;
  border-right: 1px solid var(--adm-line);
  display: flex;
  flex-direction: column;
  z-index: 300;
  overflow-y: auto;
  scrollbar-width: thin;
}
.adm-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--adm-ink);
  border-bottom: 1px solid var(--adm-line);
  position: sticky; top: 0;
  background: #fff;
  z-index: 1;
}
.adm-brand__logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.adm-brand__txt { display: flex; flex-direction: column; line-height: 1.2; }
.adm-brand__txt strong { font-size: .98rem; font-weight: 800; letter-spacing: -.2px; }
.adm-brand__txt small  { font-size: .72rem; color: var(--adm-muted); }

.adm-nav { flex: 1; padding: 12px 12px 4px; }
.adm-nav__group {
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #94a3b8;
  padding: 14px 10px 6px;
}
.adm-nav__link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border-radius: 9px;
  font-size: .87rem;
  font-weight: 600;
  color: #44505f;
  text-decoration: none;
  transition: background .14s, color .14s;
  margin-bottom: 1px;
}
.adm-nav__link:hover { background: #f1f5f9; color: var(--adm-ink); }
.adm-nav__link.is-active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(13,107,60,.25);
}
.adm-nav__ic { display: flex; flex-shrink: 0; }
.adm-nav__ic svg { width: 18px; height: 18px; }
.adm-nav__site {
  margin: 6px 12px 14px;
  border-top: 1px solid var(--adm-line);
  padding-top: 14px;
  color: var(--adm-muted);
}

/* --- Bovenbalk ------------------------------------------- */
.adm-topbar {
  position: sticky; top: 0;
  z-index: 200;
  height: 62px;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--adm-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  margin-left: var(--adm-sidebar);
}
.adm-topbar__title { font-size: 1.12rem; font-weight: 800; margin: 0; letter-spacing: -.3px; }
.adm-topbar__right { display: flex; align-items: center; gap: 16px; }
.adm-topbar__user {
  font-size: .85rem; font-weight: 600; color: var(--adm-muted);
}
.adm-topbar__logout {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600;
  color: var(--adm-muted); text-decoration: none;
  padding: 7px 13px; border-radius: 8px; border: 1px solid var(--adm-line);
  transition: background .14s, color .14s;
}
.adm-topbar__logout:hover { background: #fef2f2; color: #dc2626; border-color: #fecaca; }
.adm-topbar__logout svg { width: 15px; height: 15px; }

/* Verberg de oude bovenbalk/nav als die nog ergens staat */
.admin-body .admin-topbar,
.admin-body .admin-nav { display: none; }

/* --- Inhoud verschuift naast de zijbalk ------------------ */
.admin-body .admin-content,
.admin-body .admin-wrap {
  margin-left: var(--adm-sidebar);
  max-width: 1180px;
  padding: 26px 32px 60px;
}

/* Hamburger + scrim (alleen mobiel zichtbaar) */
.adm-toggle { display: none; }
.adm-scrim  { display: none; }

/* ---------- Dashboard-specifiek -------------------------- */
.adm-hello { margin-bottom: 22px; }
.adm-hello h2 { font-size: 1.5rem; font-weight: 800; margin: 0; letter-spacing: -.5px; }
.adm-hello p  { font-size: .9rem; color: var(--adm-muted); margin: 4px 0 0; }

.adm-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}
.adm-stat {
  background: #fff;
  border: 1px solid var(--adm-line);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.adm-stat__ic {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.adm-stat__ic svg { width: 22px; height: 22px; }
.adm-stat__ic--green  { background: #e7f6ee; color: #0d6b3c; }
.adm-stat__ic--blue   { background: #e8f0fe; color: #1b55ac; }
.adm-stat__ic--purple { background: #f0e9fe; color: #7c3aed; }
.adm-stat__ic--orange { background: #fff1e6; color: #ea580c; }
.adm-stat__num { font-size: 1.7rem; font-weight: 800; line-height: 1; }
.adm-stat__label { font-size: .82rem; color: var(--adm-muted); margin-top: 3px; }

.adm-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: start;
}

.adm-panel {
  background: #fff;
  border: 1px solid var(--adm-line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}
.adm-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--adm-line);
}
.adm-panel__head h3 { font-size: 1rem; font-weight: 800; margin: 0; }
.adm-panel__head p  { font-size: .78rem; color: var(--adm-muted); margin: 2px 0 0; }
.adm-panel__body { padding: 20px; }

.adm-actions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.adm-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--adm-line);
  border-radius: 11px;
  background: #fff;
  font-size: .87rem;
  font-weight: 600;
  color: var(--adm-ink);
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  transition: border-color .14s, box-shadow .14s, transform .1s;
}
.adm-action:hover { border-color: var(--green); box-shadow: 0 4px 14px rgba(13,107,60,.1); }
.adm-action:active { transform: scale(.98); }
.adm-action--primary { background: var(--green); color: #fff; border-color: var(--green); }
.adm-action--primary:hover { filter: brightness(1.08); }
.adm-action__ic {
  width: 30px; height: 30px; border-radius: 8px;
  background: #f1f5f9; color: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.adm-action--primary .adm-action__ic { background: rgba(255,255,255,.2); color: #fff; }
.adm-action__ic svg { width: 16px; height: 16px; }

.adm-news { list-style: none; margin: 0; padding: 0; }
.adm-news li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--adm-line);
}
.adm-news li:last-child { border-bottom: none; }
.adm-news__star {
  background: none; border: none; cursor: pointer;
  font-size: 1.05rem; padding: 0; line-height: 1; color: #f59e0b;
}
.adm-news__t { flex: 1; min-width: 0; }
.adm-news__t a {
  font-size: .85rem; font-weight: 600; color: var(--adm-ink);
  text-decoration: none; display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.adm-news__t a:hover { color: var(--green); }
.adm-news__meta { font-size: .74rem; color: var(--adm-muted); margin-top: 2px; }

/* --- Beheer responsive (zijbalk in/uitschuiven) ---------- */
@media (max-width: 899px) {
  .adm-sidebar {
    transform: translateX(-100%);
    transition: transform .25s ease;
    box-shadow: 0 0 40px rgba(0,0,0,.15);
  }
  body.adm-nav-open .adm-sidebar { transform: translateX(0); }
  body.adm-nav-open .adm-scrim {
    display: block;
    position: fixed; inset: 0;
    background: rgba(15,23,42,.45);
    z-index: 250;
  }
  .adm-topbar { margin-left: 0; padding: 0 16px 0 60px; }
  .admin-body .admin-content,
  .admin-body .admin-wrap { margin-left: 0; padding: 18px 16px 50px; }
  .adm-toggle {
    display: flex; align-items: center; justify-content: center;
    position: fixed; top: 12px; left: 14px; z-index: 260;
    width: 38px; height: 38px;
    border: 1px solid var(--adm-line); border-radius: 9px;
    background: #fff; color: var(--adm-ink); cursor: pointer;
  }
  .adm-toggle svg { width: 20px; height: 20px; }
  .adm-grid { grid-template-columns: 1fr; }
  .adm-topbar__user { display: none; }
}

/* === DESKTOP (≥900px) ===================================== */
@media (min-width: 900px) {

  /* Verberg mobiele elementen */
  .home-dark, .hero-wrap, .home-light, .bottom-nav, .mob-only { display: none !important; }

  body.home-body { background: #f3f4f6; }

  /* Desktop header */
  .desk-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky; top: 0; z-index: 200;
  }
  .desk-header__inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 20px;
    padding: 12px 24px;
  }
  .desk-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); flex-shrink: 0; }
  .desk-logo__icon { width: 44px; height: 44px; background: var(--green); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
  .desk-logo__icon [data-lucide] { width: 22px; height: 22px; color: #fff; stroke-width: 2; }
  .desk-logo__name { font-size: 1.1rem; font-weight: 900; color: var(--text); letter-spacing: -.5px; text-transform: uppercase; }
  .desk-logo__sub { font-size: .65rem; color: var(--text-muted); }
  .desk-search {
    flex: 1; display: flex; align-items: center; gap: 10px;
    background: #f3f4f6; border-radius: 8px; padding: 8px 14px;
    border: 1px solid #e5e7eb;
  }
  .desk-search [data-lucide] { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; }
  .desk-search input { border: none; background: none; font-size: .88rem; color: var(--text); outline: none; width: 100%; }
  .desk-weather { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
  .desk-weather [data-lucide] { width: 28px; height: 28px; color: #f59e0b; stroke-width: 1.5; }
  .desk-weather strong { font-size: 1rem; font-weight: 700; display: block; line-height: 1.1; }
  .desk-weather small { font-size: .65rem; color: var(--text-muted); }
  .desk-stats { display: flex; gap: 16px; flex-shrink: 0; }
  .desk-stat { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); }
  .desk-stat__icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
  .desk-stat__icon--insta { background: linear-gradient(135deg,#f58529,#dd2a7b); }
  .desk-stat__icon--fb { background: #1877f2; }
  .desk-stat__icon--shop { background: var(--green); }
  .desk-stat__icon [data-lucide], .desk-stat__icon svg { width: 14px; height: 14px; color: #fff; }
  .desk-stat strong { font-size: .85rem; font-weight: 800; display: block; line-height: 1.1; }
  .desk-stat small { font-size: .6rem; color: var(--text-muted); display: block; }

  /* Desktop nav */
  .desk-nav { background: var(--green); }
  .desk-nav__inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; padding: 0 24px;
  }
  .desk-nav a {
    display: flex; align-items: center; gap: 6px;
    padding: 11px 16px; color: rgba(255,255,255,.8);
    font-size: .82rem; font-weight: 600; text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color .15s, border-color .15s;
  }
  .desk-nav a [data-lucide] { width: 14px; height: 14px; stroke-width: 2; }
  .desk-nav a:hover, .desk-nav a.active { color: #fff; border-bottom-color: rgba(255,255,255,.6); }

  /* Desktop content container */
  .desk-content { display: block; max-width: 1200px; margin: 0 auto; padding: 20px 24px 40px; }
  .desk-main { display: flex; flex-direction: column; gap: 16px; }

  /* Hero row: hero + nieuws + ondernemer */
  .desk-top-row { display: grid; grid-template-columns: 1fr 280px 240px; gap: 16px; align-items: stretch; }

  .desk-hero {
    border-radius: 12px; overflow: hidden; height: 400px;
    background: #1a3a2a center/cover no-repeat;
    display: block; position: relative; text-decoration: none;
  }
  .desk-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
    padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  }
  .desk-hero__badge { display: inline-flex; align-items: center; gap: 5px; background: #ff3b30; color: #fff; font-size: .65rem; font-weight: 800; letter-spacing: .8px; padding: 4px 9px; border-radius: 5px; width: fit-content; }
  .desk-hero__title { color: #fff; font-size: 1.3rem; font-weight: 800; line-height: 1.3; }
  .desk-hero__meta { font-size: .75rem; color: rgba(255,255,255,.65); }

  .desk-section-title { font-size: .75rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
  .desk-section-title a { font-size: .72rem; font-weight: 600; color: var(--green); text-transform: none; letter-spacing: 0; text-decoration: none; }

  .desk-news-side, .desk-ondernemer-side { background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 1px 4px rgba(0,0,0,.06); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }

  .desk-news-row { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); }
  .desk-news-row:last-of-type { border-bottom: none; }
  .desk-news-row img { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
  .desk-news-row__title { font-size: .8rem; font-weight: 600; line-height: 1.3; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .desk-news-row__meta { font-size: .68rem; color: var(--text-muted); margin-top: 3px; }
  .desk-all-link { display: block; text-align: center; margin-top: 10px; font-size: .75rem; font-weight: 600; color: var(--green); text-decoration: none; }

  .desk-ondernemer { display: flex; flex-direction: column; gap: 6px; flex: 1; }
  .desk-ondernemer__logo { width: 52px; height: 52px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
  .desk-ondernemer__logo [data-lucide] { width: 26px; height: 26px; color: var(--green); }
  .desk-ondernemer__name { font-size: .95rem; font-weight: 800; margin-top: 4px; }
  .desk-ondernemer__stars { font-size: .8rem; color: #f59e0b; }
  .desk-ondernemer__stars span { color: var(--text-muted); }
  .desk-ondernemer__desc { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }
  .desk-ondernemer__btn { display: block; text-align: center; background: var(--green); color: #fff; font-size: .8rem; font-weight: 700; padding: 10px; border-radius: 8px; text-decoration: none; margin-top: auto; padding-top: 10px; }

  /* Offertes row */
  .desk-row { display: grid; gap: 16px; }
  .desk-row:nth-child(3) { grid-template-columns: 1fr 240px; }
  .desk-row:nth-child(4) { grid-template-columns: 1fr 1fr; }

  /* Gemeentenieuws (groot) + Raadsvergadering + Agenda */
  .desk-gem-row { display: grid; grid-template-columns: 1fr 185px 210px; gap: 16px; margin-top: 16px; align-items: stretch; }
  .desk-gem, .desk-raad, .desk-agenda { background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 1px 4px rgba(0,0,0,.06); display: flex; flex-direction: column; }
  .desk-raad, .desk-agenda { padding: 12px; }

  .desk-gem__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 16px; flex: 1; min-height: 0; }
  .desk-gem-lead { position: relative; display: flex; align-items: flex-end; min-height: 240px; border-radius: 10px; overflow: hidden; text-decoration: none; background: var(--green-dark) center/cover no-repeat; }
  .desk-gem-lead::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,40,24,.94) 0%, rgba(8,40,24,.55) 42%, rgba(8,40,24,.05) 80%); }
  .desk-gem-lead__body { position: relative; z-index: 1; padding: 16px; }
  .desk-gem-lead__title { color: #fff; font-size: 1.2rem; font-weight: 800; line-height: 1.25; margin-bottom: 6px; }
  .desk-gem-lead__sum { color: rgba(255,255,255,.85); font-size: .84rem; line-height: 1.5; margin-bottom: 10px; }
  .desk-gem-lead__more { display: inline-block; background: var(--green); color: #fff; font-size: .8rem; font-weight: 700; padding: 7px 14px; border-radius: 8px; }
  .desk-gem-lead:hover .desk-gem-lead__more { background: var(--green-dark); }

  .desk-gem-list { display: flex; flex-direction: column; justify-content: flex-start; overflow: hidden; }
  .desk-gem-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); }
  .desk-gem-item:first-child { padding-top: 0; }
  .desk-gem-item:last-child { border-bottom: none; }
  .desk-gem-item__thumb { width: 76px; height: 56px; flex-shrink: 0; border-radius: 8px; background: var(--green-light) center/cover no-repeat; display: flex; align-items: center; justify-content: center; color: var(--green); }
  .desk-gem-item__thumb [data-lucide] { width: 20px; height: 20px; }
  .desk-gem-item__title { font-size: .85rem; font-weight: 700; line-height: 1.3; }
  .desk-gem-item__sum { font-size: .76rem; color: var(--text-muted); line-height: 1.4; margin-top: 3px; }
  .desk-gem-item__date { font-size: .72rem; color: var(--text-muted); margin-top: 2px; }
  .desk-gem-item:hover .desk-gem-item__title { color: var(--green); }
  .desk-gem-empty { font-size: .85rem; color: var(--text-muted); padding: 10px 0; }

  .desk-raad-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: #fff; flex: 1; display: flex; flex-direction: column; }
  /* Foto-banner: gemeente gebouw als achtergrond, datum overlay onderaan */
  .desk-raad-card__banner { position: relative; height: 110px; flex: none; background: var(--green) center/cover no-repeat; }
  .desk-raad-card__banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.55) 100%); }
  /* Datum: volle breedte balk onderaan de foto */
  .desk-raad-card__datebar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; background: var(--green); display: flex; align-items: center; gap: 8px; padding: 7px 12px; }
  .desk-raad-card__dow { font-size: .7rem; font-weight: 800; letter-spacing: .6px; color: rgba(255,255,255,.85); text-transform: uppercase; }
  .desk-raad-card__day { font-size: 1.2rem; font-weight: 900; color: #fff; line-height: 1; }
  .desk-raad-card__mon { font-size: .7rem; font-weight: 700; letter-spacing: .6px; color: rgba(255,255,255,.85); text-transform: uppercase; }
  .desk-raad-card__body { padding: 12px; }
  .desk-raad-card__title { font-size: .88rem; font-weight: 800; line-height: 1.3; margin-bottom: 6px; }
  .desk-raad-card__meta { display: flex; flex-direction: column; gap: 4px; font-size: .8rem; color: var(--text-muted); margin-bottom: 10px; }
  .desk-raad-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
  .desk-raad-card__meta [data-lucide] { width: 14px; height: 14px; }
  .desk-raad-card__over { background: #f9fafb; border-radius: 8px; padding: 9px 11px; margin-bottom: 10px; }
  .desk-raad-card__over-label { font-size: .7rem; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
  .desk-raad-card__over-text { font-size: .78rem; color: #374151; line-height: 1.5; margin: 0; }
  .desk-raad-card__cta { display: block; text-align: center; background: #fff; color: var(--green); border: 1.5px solid var(--border); font-size: .82rem; font-weight: 700; padding: 10px 14px; border-radius: 8px; text-decoration: none; }
  .desk-raad-card__cta:hover { border-color: var(--green); background: var(--green-light); }

  .desk-agenda-list { display: flex; flex-direction: column; flex: 1; }
  .desk-agenda-item { display: flex; gap: 12px; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); }
  .desk-agenda-item:first-child { padding-top: 0; }
  .desk-agenda-item:last-child { border-bottom: none; }
  .desk-agenda-item__thumb { width: 50px; height: 50px; border-radius: 9px; flex-shrink: 0; background: var(--green-light) center/cover no-repeat; }
  .desk-agenda-item__body { min-width: 0; }
  .desk-agenda-item__title { display: block; font-size: .86rem; font-weight: 700; line-height: 1.3; }
  .desk-agenda-item__meta { display: block; font-size: .74rem; color: var(--text-muted); margin-top: 2px; }
  .desk-agenda-item:hover .desk-agenda-item__title { color: var(--green); }

  /* Hulp nodig bij een klus? — balk onderaan (twee kleuren) */
  .desk-hulp { margin-top: 16px; background: var(--green-light); border: 1px solid #cfe6da; border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .desk-hulp__intro { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 230px; }
  .desk-hulp__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--green); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
  .desk-hulp__icon [data-lucide] { width: 24px; height: 24px; }
  .desk-hulp__intro h3 { font-size: 1.05rem; font-weight: 800; }
  .desk-hulp__intro p { font-size: .82rem; color: var(--text-muted); }
  .desk-hulp__icons { display: flex; gap: 14px; background: #fff; border: 1px solid #cfe6da; border-radius: 10px; padding: 10px 16px; }
  .desk-hulp__icons a { display: flex; flex-direction: column; align-items: center; gap: 5px; text-decoration: none; color: var(--text-muted); font-size: .68rem; font-weight: 600; text-align: center; line-height: 1.2; }
  .desk-hulp__icons a [data-lucide] { width: 22px; height: 22px; color: var(--green); }
  .desk-hulp__icons a:hover { color: var(--green); }
  .desk-hulp__cta { background: var(--green); color: #fff; font-weight: 700; font-size: .85rem; padding: 12px 20px; border-radius: 8px; text-decoration: none; white-space: nowrap; }
  .desk-hulp__cta:hover { background: var(--green-dark); }

  /* Sport sectie: nieuws + clubs + standen (samengevoegd) */
  .desk-sport-wrap { background: #fff; border-radius: 12px; padding: 16px 0; box-shadow: 0 1px 4px rgba(0,0,0,.06); overflow: hidden; }
  .desk-sport-wrap > .desk-section-title { padding: 0 16px; }
  .desk-section-title--sub { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); padding-left: 16px; padding-right: 16px; }
  .desk-sport-grid { display: grid; grid-template-columns: 1fr calc(280px + 16px + 240px); gap: 16px; margin-bottom: 0; }
  .desk-sport-lead { position: relative; display: flex; align-items: flex-end; min-height: 340px; border-radius: 0 12px 12px 0; overflow: hidden; text-decoration: none; background: var(--green-dark) center/cover no-repeat; }
  .desk-sport-lead::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,40,24,.92) 0%, rgba(8,40,24,.5) 45%, rgba(8,40,24,.04) 80%); }
  .desk-sport-lead__body { position: relative; z-index: 1; padding: 16px; }
  .desk-sport-lead__badge { display: inline-block; background: rgba(255,255,255,.2); color: #fff; font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
  .desk-sport-lead__title { color: #fff; font-size: 1.15rem; font-weight: 800; line-height: 1.25; margin-bottom: 6px; }
  .desk-sport-lead__sum { color: rgba(255,255,255,.85); font-size: .84rem; line-height: 1.5; margin-bottom: 10px; }
  .desk-sport-lead__more { display: inline-block; background: var(--green); color: #fff; font-size: .8rem; font-weight: 700; padding: 7px 14px; border-radius: 8px; }
  .desk-sport-lead:hover .desk-sport-lead__more { background: var(--green-dark); }
  .desk-sport-list { display: flex; flex-direction: column; justify-content: space-between; padding-right: 16px; }
  .desk-sport-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); }
  .desk-sport-item:first-child { padding-top: 0; }
  .desk-sport-item:last-child { border-bottom: none; padding-bottom: 0; }
  .desk-sport-item__thumb { width: 120px; min-height: 82px; flex-shrink: 0; border-radius: 8px; background: var(--green-light) center/cover no-repeat; display: flex; align-items: center; justify-content: center; color: var(--green); position: relative; overflow: hidden; }
  .desk-sport-item__thumb [data-lucide] { width: 22px; height: 22px; }
  .desk-sport-item__badge { position: absolute; top: 6px; left: 6px; background: var(--green); color: #fff; font-size: .62rem; font-weight: 700; padding: 2px 7px; border-radius: 10px; white-space: nowrap; }
  .desk-sport-item__body { flex: 1; min-width: 0; }
  .desk-sport-item__date { font-size: .7rem; color: var(--text-muted); margin-bottom: 3px; }
  .desk-sport-item__title { font-size: .86rem; font-weight: 700; line-height: 1.3; color: var(--green); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }
  .desk-sport-item__excerpt { font-size: .78rem; color: var(--text-muted); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .desk-sport-item:hover .desk-sport-item__title { text-decoration: underline; }

  /* Voetbal club cards — nieuws + stand samengevoegd */
  .desk-insta-row { margin-top: 16px; }
  .desk-club-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 0 16px 16px; }
  .desk-club-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.06); border-top: 3px solid var(--club, var(--green)); display: flex; flex-direction: column; }
  .desk-club-card__head { display: flex; align-items: center; gap: 10px; padding: 12px 12px 0; }
  .desk-club-card__logo { width: 38px; height: 38px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .75rem; color: var(--club, var(--green)); overflow: hidden; flex-shrink: 0; border: 2px solid var(--border); }
  .desk-club-card__logo img { width: 28px; height: 28px; object-fit: contain; }
  .desk-club-card__name { font-size: .92rem; font-weight: 800; }
  .desk-club-card__photo { aspect-ratio: 16/9; background: var(--club, var(--green)) center/cover no-repeat; margin-top: 10px; }
  .desk-club-card__news { padding: 10px 12px 0; flex: 1; }
  .desk-club-card__title { font-size: .86rem; font-weight: 700; line-height: 1.35; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .desk-club-card__link { display: inline-block; color: var(--green); font-size: .78rem; font-weight: 700; text-decoration: none; margin-bottom: 10px; }
  .desk-club-card__link:hover { text-decoration: underline; }
  .desk-club-card__stand { padding: 0 12px; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 8px; }
  .desk-club-card__stand-label { font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 4px; }
  .desk-club-card__next { padding: 8px 12px 12px; border-top: 1px solid var(--border); margin-top: 8px; display: flex; flex-direction: column; gap: 2px; }
  .desk-club-card__agenda { display: inline-block; margin-top: 6px; color: var(--green); font-size: .78rem; font-weight: 700; text-decoration: none; }
  .desk-club-card__agenda:hover { text-decoration: underline; }

  /* Voetbal in Soest — teamkaarten (fallback) */
  .desk-vib-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .desk-vib-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,.06); text-decoration: none; color: var(--text); display: flex; flex-direction: column; border-top: 3px solid var(--club, var(--green)); transition: box-shadow .15s; }
  .desk-vib-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.1); }
  .desk-vib-card__img { aspect-ratio: 16/10; background: var(--club, var(--green)) center/cover no-repeat; position: relative; }
  .desk-vib-card__logo { position: absolute; left: 10px; bottom: -16px; width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.15); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .78rem; color: var(--club, var(--green)); overflow: hidden; }
  .desk-vib-card__logo img { width: 30px; height: 30px; object-fit: contain; }
  .desk-vib-card__body { padding: 20px 12px 14px; }
  .desk-vib-card__team { font-weight: 800; font-size: .92rem; margin-bottom: 4px; }
  .desk-vib-card__title { font-size: .82rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .desk-vib-card__date { font-size: .72rem; color: var(--text-muted); margin-top: 6px; }

  /* Standen & Wedstrijden */
  .desk-stand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .desk-stand-card { background: #fff; border-radius: 12px; padding: 14px; box-shadow: 0 1px 4px rgba(0,0,0,.06); border-top: 3px solid var(--club, var(--green)); }
  .desk-stand-card__head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
  .desk-stand-card__logo { width: 32px; height: 32px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .72rem; color: var(--club, var(--green)); overflow: hidden; flex-shrink: 0; }
  .desk-stand-card__logo img { width: 24px; height: 24px; object-fit: contain; }
  .desk-stand-card__head h3 { font-size: .92rem; font-weight: 800; }
  .desk-stand-table { font-size: .78rem; }
  .desk-stand-table__row { display: grid; grid-template-columns: 22px 1fr 30px 30px; gap: 4px; padding: 4px 0; align-items: center; border-bottom: 1px solid var(--border); }
  .desk-stand-table__row:last-child { border-bottom: none; }
  .desk-stand-table__row span:nth-child(3), .desk-stand-table__row span:nth-child(4) { text-align: center; }
  .desk-stand-table__row--head { font-size: .68rem; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
  .desk-stand-table__row--own { background: var(--green-light); font-weight: 800; border-bottom: none; border-radius: 6px; }
  .desk-stand-table__row--gap { color: var(--text-muted); text-align: center; }
  .desk-stand-table__team { display: flex; align-items: center; gap: 6px; min-width: 0; }
  .desk-stand-table__logo { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }
  .desk-stand-table__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .desk-stand-table__pts { font-weight: 800; color: var(--club, var(--green)); text-align: center; }
  .desk-stand-empty { font-size: .8rem; color: var(--text-muted); padding: 8px 0; }
  .desk-stand-card__next { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 2px; }
  .desk-stand-card__next-label { font-size: .64rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); font-weight: 700; }
  .desk-stand-card__next-teams { font-size: .8rem; font-weight: 700; }
  .desk-stand-card__next-date { font-size: .72rem; color: var(--text-muted); }

  .desk-offertes, .desk-sport, .desk-insta { background: #fff; border-radius: 12px; padding: 16px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
  .desk-offertes-cta { background: var(--green); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
  .desk-offertes-cta p { color: rgba(255,255,255,.85); font-size: .85rem; line-height: 1.5; }
  .desk-offertes-cta .desk-ondernemer__btn { background: #fff; color: var(--green); }

  .desk-services-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 8px; }
  .desk-service { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: var(--text); }
  .desk-service div { width: 48px; height: 48px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
  .desk-service div [data-lucide] { width: 22px; height: 22px; color: var(--green); stroke-width: 2; }
  .desk-service span { font-size: .65rem; font-weight: 600; color: var(--text-muted); text-align: center; line-height: 1.2; }

  .desk-clubs { display: flex; gap: 16px; flex-wrap: wrap; }
  .desk-club { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: var(--text); }
  .desk-club__icon { width: 52px; height: 52px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
  .desk-club__icon [data-lucide] { width: 24px; height: 24px; color: var(--green); stroke-width: 2; }
  .desk-club span { font-size: .7rem; font-weight: 600; color: var(--text-muted); text-align: center; }

  .desk-insta-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; }
  .desk-insta-item { aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--bg); }
  .desk-insta-item img { width: 100%; height: 100%; object-fit: cover; }

  /* Desktop footer */
  .desk-footer { background: var(--green); margin-top: 20px; }
  .desk-footer__inner { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
  .desk-footer__inner span { color: rgba(255,255,255,.6); font-size: .78rem; }
  .desk-footer__inner a { color: rgba(255,255,255,.7); font-size: .78rem; text-decoration: none; }
  .desk-footer__inner a:hover { color: #fff; }
  .desk-footer__social { margin-left: auto; display: flex; gap: 12px; }
  .desk-footer__social a { color: rgba(255,255,255,.7); display: flex; }
  .desk-footer__social [data-lucide] { width: 18px; height: 18px; }
}

/* Verberg desktop op mobiel */
@media (max-width: 899px) {
  .desk-header, .desk-nav, .desk-content, .desk-footer { display: none !important; }
}

/* === HOME PAGINA (mobiel) ================================= */
.home-body { background: #f0f4f1; overflow-x: hidden; }

.home-dark {
  background:
    linear-gradient(to bottom, rgba(5,25,12,.3) 0%, rgba(5,25,12,.45) 50%, rgba(5,25,12,.80) 100%),
    url('/images/soest-header.jpg') center 70% / cover no-repeat;
  padding: 0 16px 16px;
  max-width: 430px;
  margin: 0 auto;
}

.home-header { display: flex; align-items: center; gap: 4px; padding: calc(env(safe-area-inset-top,0px) + 14px) 0 6px; }
.home-header__menu { background: none; border: none; cursor: pointer; padding: 2px; display: flex; align-items: center; color: #fff; flex-shrink: 0; }
.home-header__menu [data-lucide] { width: 22px; height: 22px; color: #fff; stroke-width: 2; }
.home-header__logo-pill { display: flex; flex-direction: column; align-items: center; justify-content: center; background: none; padding: 0; flex-shrink: 0; }
.home-header__logo-pill__icon { width: 22px; height: 22px; color: #fff; }
.home-header__logo-pill__name { font-size: .55rem; font-weight: 900; color: #fff; line-height: 1.1; text-align: center; white-space: nowrap; margin-top: 2px; }
.home-header__logo-img { height: 44px; width: auto; max-width: 110px; object-fit: contain; display: block; border-radius: 10px; }
.home-tagline { font-size: .62rem; color: rgba(255,255,255,.72); font-weight: 500; margin: 0 0 10px; padding: 0 0 0 32px; }
.home-header__title { font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: -.3px; line-height: 1.1; }
.home-header__sub { font-size: .65rem; color: rgba(255,255,255,.7); margin-top: 1px; }
.home-header__weather { display: flex; align-items: center; gap: 5px; color: #fff; font-size: .72rem; text-align: right; flex-shrink: 0; margin-left: auto; }
.home-header__weather [data-lucide] { width: 16px; height: 16px; color: rgba(255,255,255,.8); stroke-width: 1.8; }
.home-header__weather small { font-size: .6rem; color: rgba(255,255,255,.7); display: block; }
.home-header__date { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.85); margin-right: 4px; white-space: nowrap; }

.home-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.hstat { background: #fff; border-radius: 9px; padding: 7px 7px 6px; display: flex; flex-direction: row; align-items: center; gap: 6px; text-decoration: none; color: var(--text); -webkit-tap-highlight-color: transparent; }
.hstat__icon { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hstat__icon [data-lucide] { width: 11px; height: 11px; color: #fff; stroke-width: 2; }
.hstat__icon svg { width: 11px; height: 11px; }
.hstat__icon--insta { background: linear-gradient(135deg,#f58529,#dd2a7b); }
.hstat__icon--fb    { background: #1877f2; }
.hstat__icon--shop  { background: var(--green); }
.hstat__body { display: flex; flex-direction: column; gap: 1px; }
.hstat__num  { font-size: .78rem; font-weight: 800; color: var(--text); line-height: 1; }
.hstat__label { font-size: .48rem; color: var(--text-muted); line-height: 1.2; }

.hero-wrap { max-width: 430px; margin: -18px auto 0; padding: 0 16px; position: relative; z-index: 2; }
.hero-card { display: block; border-radius: 16px; overflow: hidden; position: relative; height: 220px; background: #1a3a2a center/cover no-repeat; -webkit-tap-highlight-color: transparent; }
.hero-card__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.25) 55%, transparent 100%); padding: 14px; display: flex; flex-direction: column; justify-content: flex-end; gap: 5px; }
.hero-card__badge { display: inline-flex; align-items: center; gap: 5px; background: #ff3b30; color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .8px; padding: 3px 7px; border-radius: 5px; width: fit-content; }
.breaking-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-card__title { color: #fff; font-size: .98rem; font-weight: 700; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-card__meta { font-size: .68rem; color: rgba(255,255,255,.6); }

.home-light { background: #f0f4f1; padding: 20px 16px 100px; max-width: 430px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.light-section { background: #fff; border-radius: 14px; padding: 14px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.light-section__header { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; font-size: .72rem; font-weight: 800; color: var(--text-muted); letter-spacing: .5px; text-transform: uppercase; }
.light-section__header [data-lucide] { width: 14px; height: 14px; color: var(--green); stroke-width: 2.5; flex-shrink: 0; }
.light-section__more { margin-left: auto; font-size: .68rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 2px; text-decoration: none; white-space: nowrap; }
.light-section__more [data-lucide] { width: 12px; height: 12px; }

.news-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); }
.news-row:last-child { border-bottom: none; padding-bottom: 0; }
.news-row__thumb { width: 80px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--border); }
.news-row__thumb--empty { display: flex; align-items: center; justify-content: center; background: var(--bg); }
.news-row__thumb--empty [data-lucide] { width: 20px; height: 20px; color: var(--border); }
.news-row__body { flex: 1; min-width: 0; }
.news-row__title { font-size: .82rem; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-row__meta { font-size: .68rem; color: var(--text-muted); margin-top: 3px; }
.news-row__arrow { width: 14px; height: 14px; color: var(--border); flex-shrink: 0; }

.mob-news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 16px; }
.mob-news-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 5px rgba(0,0,0,.07); text-decoration: none; color: var(--text); display: flex; flex-direction: column; }
.mob-news-card__img { height: 100px; background-size: cover; background-position: center; background-color: #e8ede9; }
.mob-news-card__img--empty { display: flex; align-items: center; justify-content: center; }
.mob-news-card__img--empty [data-lucide] { width: 24px; height: 24px; color: var(--border); }
.mob-news-card__body { padding: 8px 9px 10px; flex: 1; }
.mob-news-card__title { font-size: .76rem; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }
.mob-news-card__meta { font-size: .62rem; color: var(--text-muted); }

.ondernemer-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; }
.ondernemer-row__logo { width: 48px; height: 48px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ondernemer-row__logo [data-lucide] { width: 24px; height: 24px; color: var(--green); }
.ondernemer-row__info { flex: 1; }
.ondernemer-row__name { font-size: .88rem; font-weight: 700; }
.ondernemer-row__stars { font-size: .75rem; color: #f59e0b; margin: 2px 0; }
.ondernemer-row__stars span { color: var(--text-muted); }
.ondernemer-row__desc { font-size: .75rem; color: var(--text-muted); line-height: 1.4; }
.ondernemer-row__btn { display: flex; align-items: center; gap: 6px; background: var(--green); color: #fff; font-size: .78rem; font-weight: 600; padding: 9px 14px; border-radius: 9px; text-decoration: none; width: 100%; justify-content: center; }
.ondernemer-row__btn [data-lucide] { width: 14px; height: 14px; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.service-item { display: flex; flex-direction: column; align-items: center; gap: 6px; text-decoration: none; color: var(--text); text-align: center; }
.service-item__icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.service-item__icon [data-lucide] { width: 20px; height: 20px; color: var(--green); stroke-width: 2; }
.service-item span { font-size: .65rem; font-weight: 600; color: var(--text-muted); line-height: 1.2; }

.clubs-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.clubs-row::-webkit-scrollbar { display: none; }
.club-badge { display: flex; flex-direction: column; align-items: center; gap: 5px; text-decoration: none; color: var(--text); flex-shrink: 0; }
.club-badge__icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.club-badge__icon [data-lucide] { width: 20px; height: 20px; color: var(--green); stroke-width: 2; }
.club-badge span { font-size: .62rem; font-weight: 600; color: var(--text-muted); text-align: center; max-width: 56px; }

.insta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.insta-grid__item { aspect-ratio: 1; border-radius: 6px; overflow: hidden; background: var(--bg); }
.insta-grid__item img { width: 100%; height: 100%; object-fit: cover; }
.insta-grid__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.insta-grid__placeholder [data-lucide] { width: 24px; height: 24px; color: var(--border); }

.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: #fff; border-top: 1px solid var(--border); display: flex; padding-bottom: env(safe-area-inset-bottom,0px); }
.bottom-nav a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px 4px 6px; text-decoration: none; color: var(--text-muted); font-size: .58rem; font-weight: 600; gap: 3px; }
.bottom-nav a [data-lucide] { width: 22px; height: 22px; stroke-width: 1.8; }
.bottom-nav a.active { color: var(--green); }
.bottom-nav a.active [data-lucide] { stroke-width: 2.5; }

/* ── Desktop nieuwspagina ─────────────────────────── */
@media (min-width: 900px) {
  .desk-nieuws { max-width: 1100px; margin: 0 auto; padding: 28px 24px; }

  .desk-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .desk-news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .15s;
  }
  .desk-news-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }

  .desk-news-card__img {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
  }
  .desk-news-card__img--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 2rem;
  }

  .desk-news-card__body { padding: 12px 14px; flex: 1; }
  .desk-news-card__title { font-size: .88rem; font-weight: 600; line-height: 1.35; margin-bottom: 6px; color: #1a1a1a; }
  .desk-news-card__meta { font-size: .75rem; color: var(--text-muted); }

  .mob-only { display: none !important; }
}

@media (max-width: 899px) {
  .desk-nieuws { display: none !important; }
  .desk-header, .desk-nav, .desk-footer { display: none !important; }
}

/* ── Desktop sportpagina ─────────────────────────── */
@media (min-width: 900px) {
  .desk-sport-page { max-width: 1100px; margin: 0 auto; padding: 28px 24px; }
  .desk-teams-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .desk-teams-grid .team-card { margin: 0; }
}
@media (max-width: 899px) {
  .desk-sport-page { display: none !important; }
}

/* ── Sport landing page ──────────────────────────── */
.sport-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); border-radius: 16px; padding: 28px 24px; margin-bottom: 20px; color: #fff; }
.sport-hero__title { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.sport-hero__sub { font-size: .85rem; color: rgba(255,255,255,.8); }

.sport-landing-cats { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.sport-landing-cat { display: flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 7px 14px; text-decoration: none; color: var(--text); font-size: .82rem; font-weight: 600; transition: .15s; white-space: nowrap; }
.sport-landing-cat:hover { border-color: var(--green); background: var(--green-light); color: var(--green); }
.sport-landing-cat--active { background: var(--green); color: #fff; border-color: var(--green); }
.sport-landing-cat--more { background: #2d3748; color: #fff; border-color: #2d3748; }
.sport-landing-cat--more:hover { background: #1a202c; border-color: #1a202c; color: #fff; }
.sport-landing-cat__emoji { font-size: .9rem; }

.sport-landing-section { margin-bottom: 28px; }
.sport-landing-section__title { font-size: 1rem; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.sport-landing-section__more { font-size: .78rem; font-weight: 600; color: var(--green); text-decoration: none; }

.sport-standings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.sport-mini-stand { background: #fff; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.sport-mini-stand__head { padding: 10px 12px 8px; display: flex; align-items: center; justify-content: space-between; background: var(--green-light); }
.sport-mini-stand__name { font-size: .82rem; font-weight: 700; color: var(--green-dark); }
.sport-mini-stand__link { font-size: .7rem; color: var(--green); text-decoration: none; font-weight: 600; white-space: nowrap; }
.sport-mini-stand .sport-league-table { border: none; border-radius: 0; font-size: .75rem; }
.sport-mini-stand .sport-league-table__header,
.sport-mini-stand .sport-league-table__row { font-size: .68rem; padding: 4px 8px; grid-template-columns: 22px 22px 1fr 22px 22px 22px 44px 26px; }

.sport-team-news-layout { display: grid; grid-template-columns: 1fr 230px; gap: 16px; }
.sport-team-news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.sport-team-card { background: #fff; border-radius: 12px; border: 1px solid var(--border); padding: 14px; }
.sport-team-card__top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.sport-team-card__circle { width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff; font-size: .82rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sport-team-card__name { font-size: .88rem; font-weight: 700; flex: 1; line-height: 1.2; }
.sport-clubsite-badge { font-size: .58rem; font-weight: 700; background: #dbeafe; color: #1d4ed8; padding: 2px 6px; border-radius: 4px; flex-shrink: 0; }
.sport-team-card__btn { display: inline-flex; align-items: center; gap: 4px; background: var(--green-light); color: var(--green); font-size: .72rem; font-weight: 700; padding: 5px 10px; border-radius: 7px; text-decoration: none; margin-bottom: 10px; }
.sport-team-card__btn [data-lucide] { width: 12px; height: 12px; }
.sport-team-card__news { border-top: 1px solid var(--border); }

.sport-news-item { display: flex; align-items: flex-start; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text); }
.sport-news-item:last-child { border-bottom: none; padding-bottom: 0; }
.sport-news-item__img { width: 44px; height: 34px; border-radius: 5px; object-fit: cover; flex-shrink: 0; background: var(--bg); }
.sport-news-item__img--empty { display: flex; align-items: center; justify-content: center; }
.sport-news-item__img--empty [data-lucide] { width: 14px; height: 14px; color: var(--border); }
.sport-news-item__title { font-size: .72rem; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sport-news-item__meta { font-size: .62rem; color: var(--text-muted); margin-top: 2px; }

.sport-sidebar { background: #fff; border-radius: 12px; border: 1px solid var(--border); padding: 14px; align-self: start; }
.sport-sidebar__title { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 10px; }

.sport-cta-banner { background: linear-gradient(135deg, #0a3d22 0%, var(--green) 100%); border-radius: 14px; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sport-cta-banner__title { font-size: 1.05rem; font-weight: 800; color: #fff; }
.sport-cta-banner__sub { font-size: .8rem; color: rgba(255,255,255,.75); margin-top: 3px; }
.sport-cta-banner__btn { background: #fff; color: var(--green); font-size: .82rem; font-weight: 700; padding: 10px 18px; border-radius: 9px; text-decoration: none; white-space: nowrap; flex-shrink: 0; }

.sport-mob-stand-block { margin-bottom: 14px; }
.sport-mob-stand-block:last-child { margin-bottom: 0; }
.sport-mob-stand-block__head { font-size: .78rem; font-weight: 700; margin-bottom: 6px; display: flex; justify-content: space-between; align-items: center; }
.sport-mob-stand-block__link { font-size: .7rem; color: var(--green); font-weight: 600; text-decoration: none; }
.sport-mob-cta { margin: 12px 14px 0; background: linear-gradient(135deg, #094d2b, var(--green)); border-radius: 14px; padding: 18px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sport-mob-cta__title { font-size: .9rem; font-weight: 800; color: #fff; }
.sport-mob-cta__sub { font-size: .72rem; color: rgba(255,255,255,.75); margin-top: 2px; }
.sport-mob-cta__btn { background: #fff; color: var(--green); font-size: .75rem; font-weight: 700; padding: 8px 14px; border-radius: 8px; text-decoration: none; white-space: nowrap; flex-shrink: 0; }

/* ════════════════════════════════════════════════════
   Agenda — vernieuwd ontwerp (responsive, 1 template)
   ════════════════════════════════════════════════════ */
.ag-page { max-width: 1200px; margin: 0 auto; padding: 16px 14px 90px; }
@media (min-width: 900px) { .ag-page { padding: 24px 24px 56px; } }

/* ── Hero ─────────────────────────────────────────── */
.ag-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 230px;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  background: linear-gradient(105deg, #082818 0%, var(--green) 90%);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
@media (min-width: 900px) { .ag-hero { min-height: 300px; padding: 40px 44px; } }

.ag-hero__content { position: relative; z-index: 2; max-width: 560px; }
.ag-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.16); backdrop-filter: blur(4px);
  color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.ag-hero__badge [data-lucide] { width: 13px; height: 13px; }
.ag-hero__title {
  color: #fff; font-weight: 800; line-height: 1.12;
  font-size: 1.7rem; letter-spacing: -.5px; margin-bottom: 12px;
}
@media (min-width: 900px) { .ag-hero__title { font-size: 2.6rem; } }
.ag-hero__sub {
  color: rgba(255,255,255,.85); font-size: .85rem; line-height: 1.55;
  margin-bottom: 20px; max-width: 460px;
}
@media (min-width: 900px) { .ag-hero__sub { font-size: .95rem; } }
.ag-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.ag-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .85rem; font-weight: 700; padding: 11px 18px;
  border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .12s, box-shadow .12s, background .15s;
}
.ag-btn [data-lucide] { width: 16px; height: 16px; }
.ag-btn--primary { background: #fff; color: var(--green); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.ag-btn--primary:hover { transform: translateY(-1px); }
.ag-btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.4); }
.ag-btn--ghost:hover { background: rgba(255,255,255,.24); }
.ag-btn.is-on { background: var(--orange); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(224,92,26,.4); }

.ag-hero__stat {
  position: absolute; z-index: 2; right: 22px; bottom: 22px;
  background: rgba(255,255,255,.95); border-radius: 14px;
  padding: 12px 16px; text-align: center; box-shadow: var(--shadow);
  display: none;
}
@media (min-width: 768px) { .ag-hero__stat { display: block; } }
.ag-hero__stat-num { font-size: 1.7rem; font-weight: 800; color: var(--green); line-height: 1; }
.ag-hero__stat-label { font-size: .62rem; font-weight: 600; color: var(--text-muted); margin-top: 4px; line-height: 1.2; }

/* ── Categoriefilters ─────────────────────────────── */
.ag-filters {
  display: flex; gap: 8px; margin: 20px 0 6px;
  overflow-x: auto; padding-bottom: 6px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.ag-filters::-webkit-scrollbar { display: none; }
.ag-chip {
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0; cursor: pointer;
  background: var(--surface); color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: .8rem; font-weight: 600; padding: 8px 15px;
  transition: all .15s;
}
.ag-chip [data-lucide] { width: 15px; height: 15px; }
.ag-chip:hover { border-color: var(--green); color: var(--green); }
.ag-chip.is-active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 3px 10px rgba(13,107,60,.3); }

/* ── Secties ──────────────────────────────────────── */
.ag-section { margin-top: 26px; }
.ag-section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 12px; }
.ag-section__title {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.05rem; font-weight: 800; color: var(--text);
}
.ag-section__title [data-lucide] { width: 18px; height: 18px; color: var(--green); }

/* ── Uitgelicht (kaartjes) ────────────────────────── */
.ag-featured { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 700px)  { .ag-featured { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .ag-featured { grid-template-columns: repeat(4, 1fr); } }

.ag-fcard {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none; color: inherit;
  transition: transform .15s, box-shadow .15s;
}
.ag-fcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Klikbare kaart: gestrekte link bedekt de hele kaart */
.ag-card-link { position: absolute; inset: 0; z-index: 1; }

/* Favoriet-hartje — basis (geldt overal: kaarten, knoppen, topbar) */
.ag-fav { cursor: pointer; }
.ag-fav.is-on [data-lucide] { color: #e0245e; fill: #e0245e; }

/* Drijvend rond hartje op kaarten/rijen */
.ag-fcard .ag-fav,
.ag-row .ag-fav {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.18); transition: transform .12s, background .15s;
}
.ag-fcard .ag-fav:hover,
.ag-row .ag-fav:hover { transform: scale(1.08); }
.ag-fcard .ag-fav [data-lucide],
.ag-row .ag-fav [data-lucide] { width: 17px; height: 17px; color: var(--text-muted); transition: color .15s; }
.ag-fcard .ag-fav.is-on,
.ag-row .ag-fav.is-on { background: #fdecef; }
.ag-fcard__media {
  position: relative; aspect-ratio: 16/10;
  background: var(--green-light) center/cover no-repeat;
}
.ag-fcard__body { padding: 12px 13px 14px; display: flex; flex-direction: column; gap: 7px; }
.ag-fcard__title {
  font-size: .92rem; font-weight: 700; line-height: 1.25; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ag-fcard__meta { display: flex; flex-direction: column; gap: 4px; font-size: .74rem; color: var(--text-muted); }
.ag-fcard__meta span { display: inline-flex; align-items: center; gap: 5px; }
.ag-fcard__meta [data-lucide] { width: 13px; height: 13px; }

/* Datum-badge (op afbeeldingen) */
.ag-date-badge {
  position: absolute; top: 10px; left: 10px; pointer-events: none;
  background: rgba(255,255,255,.96); border-radius: 10px;
  padding: 5px 9px; text-align: center; line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.ag-date-badge b { display: block; font-size: 1.1rem; font-weight: 800; color: var(--green); }
.ag-date-badge small { display: block; font-size: .58rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: .04em; }

/* Categorie-tag */
.ag-tag {
  display: inline-flex; align-items: center; gap: 5px; width: fit-content;
  font-size: .68rem; font-weight: 700; padding: 4px 9px; border-radius: 999px;
  background: var(--green-light); color: var(--green);
}
.ag-tag [data-lucide] { width: 12px; height: 12px; }
.cat-muziek    { background: #fdede2; color: #c2470f; }
.cat-theater   { background: #f1ebfd; color: #7c3aed; }
.cat-film      { background: #e8f0fb; color: #1B55AC; }
.cat-expositie { background: #fce7f1; color: #be185d; }
.cat-sport     { background: var(--green-light); color: var(--green); }
.cat-markt     { background: #fdf0dc; color: #b45309; }
.cat-kinderen  { background: #dff5fa; color: #0e7490; }
.cat-overig    { background: #eef1f0; color: var(--text-muted); }

/* ── Weergave-schakelaar ──────────────────────────── */
.ag-viewtoggle { display: flex; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 3px; gap: 2px; }
.ag-viewtoggle button {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  background: none; border: none; border-radius: 7px;
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
  padding: 7px 13px; transition: all .15s;
}
.ag-viewtoggle button [data-lucide] { width: 15px; height: 15px; }
.ag-viewtoggle button.is-active { background: var(--green); color: #fff; }

/* ── Maandgroepen ─────────────────────────────────── */
.ag-month { margin-bottom: 6px; }
.ag-month[hidden] { display: none; }
.ag-month__label {
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  color: var(--green); padding: 14px 0 10px;
}
.ag-month__rows { display: flex; flex-direction: column; gap: 10px; }

/* ── Evenementrij ─────────────────────────────────── */
.ag-row {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px; text-decoration: none; color: inherit;
  transition: transform .12s, box-shadow .12s, border-color .12s;
}
.ag-row[hidden] { display: none; }
.ag-row:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: transparent; }

.ag-row__date {
  flex-shrink: 0; width: 52px; text-align: center;
  background: var(--green-light); border-radius: 11px; padding: 9px 4px; line-height: 1;
}
.ag-row__date b { display: block; font-size: 1.45rem; font-weight: 800; color: var(--green); }
.ag-row__date small { display: block; font-size: .62rem; font-weight: 700; text-transform: uppercase; color: var(--green); opacity: .75; margin-top: 3px; }

.ag-row__media {
  position: relative; flex-shrink: 0;
  width: 78px; height: 62px; border-radius: 10px;
  background: var(--bg) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.ag-row__media[data-empty="1"] [data-lucide] { width: 26px; height: 26px; color: var(--border); }
.ag-row__media .ag-date-badge { display: none; }

.ag-row__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.ag-row__title {
  font-size: .95rem; font-weight: 700; color: var(--text); line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ag-row__meta { display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; color: var(--text-muted); }
.ag-row__meta [data-lucide] { width: 13px; height: 13px; }

.ag-row__action { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.ag-time { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.ag-time [data-lucide] { width: 13px; height: 13px; color: var(--green); }
.ag-row__btn {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  background: var(--green); color: #fff; font-size: .76rem; font-weight: 700;
  padding: 8px 13px; border-radius: 9px; transition: background .15s;
}
.ag-row__btn [data-lucide] { width: 14px; height: 14px; }
.ag-row:hover .ag-row__btn { background: var(--green-dark); }

/* Tijd in de info-kolom alleen op mobiel; hartje verborgen op desktop-rijen */
.ag-row__meta--time { display: none; }
.ag-row .ag-fav { display: none; }

/* Mobiel: datumblok + kleine thumbnail + hartje rechtsboven, geen 'Meer info' */
@media (max-width: 560px) {
  .ag-row { padding: 10px; gap: 10px; }
  .ag-row__date { width: 44px; padding: 7px 3px; }
  .ag-row__date b { font-size: 1.2rem; }
  .ag-row__media { display: flex; width: 56px; height: 56px; }
  .ag-row__info { padding-right: 28px; gap: 4px; }
  .ag-row__meta--time { display: inline-flex; }
  .ag-row .ag-fav { display: flex; }
  .ag-row__action { display: none; }
}

/* ── Rasterweergave ("Kaart") ─────────────────────── */
.ag-events.is-grid .ag-month__rows {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.ag-events.is-grid .ag-row { flex-direction: column; align-items: stretch; gap: 0; padding: 0; overflow: hidden; }
.ag-events.is-grid .ag-row__date { display: none; }
.ag-events.is-grid .ag-row__media {
  display: flex; width: 100%; height: 140px; border-radius: 0;
}
.ag-events.is-grid .ag-row__media .ag-date-badge { display: block; }
.ag-events.is-grid .ag-row__info { padding: 13px 13px 6px; }
.ag-events.is-grid .ag-row__action { flex-direction: row; align-items: center; justify-content: space-between; padding: 0 13px 13px; width: 100%; }
.ag-events.is-grid .ag-row__action .ag-time { display: inline-flex; }
.ag-events.is-grid .ag-row__btn span { display: inline; }
.ag-events.is-grid .ag-row .ag-fav { display: flex; }

/* ── Lege staat ───────────────────────────────────── */
.ag-empty {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 48px 16px; color: var(--text-muted); font-size: .9rem; text-align: center;
}
.ag-empty[hidden] { display: none; }
.ag-empty [data-lucide] { width: 40px; height: 40px; color: var(--border); }

/* ── CTA ──────────────────────────────────────────── */
.ag-cta {
  margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  border-radius: 18px; padding: 24px 26px; box-shadow: var(--shadow);
}
.ag-cta__icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center;
}
.ag-cta__icon [data-lucide] { width: 26px; height: 26px; color: #fff; }
.ag-cta__text { flex: 1; min-width: 200px; }
.ag-cta__title { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.ag-cta__text p { font-size: .82rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.ag-cta__btn {
  flex-shrink: 0; background: #fff; color: var(--green);
  font-size: .85rem; font-weight: 700; padding: 12px 20px; border-radius: 10px;
  text-decoration: none; transition: transform .12s;
}
.ag-cta__btn:hover { transform: translateY(-1px); }

/* ════════════════════════════════════════════════════
   Agenda — detailpagina (/agenda/event.php)
   ════════════════════════════════════════════════════ */
.ag-detail { max-width: 760px; }

.ag-detail__back {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px;
  font-size: .85rem; font-weight: 600; color: var(--green); text-decoration: none;
}
.ag-detail__back [data-lucide] { width: 16px; height: 16px; }

.ag-detail__hero {
  position: relative; border-radius: 18px; overflow: hidden;
  height: 240px; background: var(--green-light) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
@media (min-width: 700px) { .ag-detail__hero { height: 340px; } }
.ag-detail__hero[data-empty="1"] [data-lucide] { width: 56px; height: 56px; color: var(--green); opacity: .4; }

.ag-date-badge--lg { top: 14px; left: 14px; padding: 8px 13px; border-radius: 12px; }
.ag-date-badge--lg b { font-size: 1.5rem; }
.ag-date-badge--lg small { font-size: .65rem; }

.ag-detail__tag { position: absolute; left: 14px; bottom: 14px; font-size: .74rem; padding: 6px 12px; }

.ag-detail__title { font-size: 1.5rem; font-weight: 800; line-height: 1.2; margin: 18px 0 6px; letter-spacing: -.4px; }
@media (min-width: 700px) { .ag-detail__title { font-size: 2rem; } }
.ag-detail__loc { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; color: var(--text-muted); }
.ag-detail__loc [data-lucide] { width: 16px; height: 16px; color: var(--green); }

/* Info-grid */
.ag-detail__info {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0;
}
.ag-detail__info-item {
  display: flex; align-items: center; gap: 11px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px;
}
.ag-detail__info-ic {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
}
.ag-detail__info-ic [data-lucide] { width: 18px; height: 18px; color: var(--green); }
.ag-detail__info-item small { display: block; font-size: .68rem; color: var(--text-muted); margin-bottom: 2px; }
.ag-detail__info-item b { display: block; font-size: .85rem; font-weight: 700; color: var(--text); line-height: 1.2; }

/* Acties */
.ag-detail__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.ag-detail__cta { flex: 1; justify-content: center; min-width: 150px; }
.ag-btn--outline { background: var(--surface); color: var(--green); border: 1.5px solid var(--green); }
.ag-btn--outline:hover { background: var(--green-light); }
.ag-btn--outline.is-on { background: #fdecef; border-color: #e0245e; color: #e0245e; }

/* Tekstblokken */
.ag-detail__block { margin-top: 26px; }
.ag-detail__h2 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.ag-detail__desc { font-size: .92rem; line-height: 1.65; color: var(--text); }
.ag-detail__address { display: inline-flex; align-items: center; gap: 7px; font-size: .88rem; color: var(--text-muted); margin-bottom: 12px; }
.ag-detail__address [data-lucide] { width: 16px; height: 16px; color: var(--green); }
.ag-detail__map { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.ag-detail__map--placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  width: 100%; height: 160px; cursor: pointer; line-height: normal;
  border: 1px dashed var(--border); background: var(--green-light);
  background-image:
    linear-gradient(rgba(232,245,239,.4), rgba(232,245,239,.4)),
    repeating-linear-gradient(45deg, #dceee4 0 12px, #e8f5ef 12px 24px);
  transition: filter .15s;
}
.ag-detail__map--placeholder:hover { filter: brightness(.97); }
.ag-detail__map-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green); color: #fff; font-size: .85rem; font-weight: 700;
  padding: 9px 16px; border-radius: 9px;
}
.ag-detail__map-cta [data-lucide] { width: 16px; height: 16px; }
.ag-detail__map-sub { font-size: .76rem; color: var(--text-muted); }

/* Topbar-acties (mobiel) */
.inner-header__action {
  width: 36px; height: 36px; flex-shrink: 0; cursor: pointer;
  background: rgba(255,255,255,.15); border: none; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.inner-header__action [data-lucide] { width: 18px; height: 18px; color: #fff; stroke-width: 2.2; }
.inner-header__action.is-on [data-lucide] { color: #ff7a90; fill: #ff7a90; }
.inner-header__action.is-copied { background: rgba(255,255,255,.4); }

/* ════════════════════════════════════════════════════
   Diensten — responsief (mobiel + desktop)
   ════════════════════════════════════════════════════ */
.svc-page { max-width: 1100px; margin: 0 auto; padding: 16px 14px 90px; }
@media (min-width: 900px) { .svc-page { padding: 28px 24px 56px; } }

.svc-intro { text-align: center; padding: 22px 8px 20px; }
.svc-intro__emoji { font-size: 2.6rem; line-height: 1; }
.svc-intro h1 { font-size: 1.5rem; font-weight: 800; margin: 10px 0 6px; letter-spacing: -.4px; }
@media (min-width: 900px) { .svc-intro h1 { font-size: 1.9rem; } }
.svc-intro p { color: var(--text-muted); max-width: 480px; margin: 0 auto; font-size: .9rem; line-height: 1.55; }

.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-bottom: 26px; }

.svc-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 14px;
  padding: 20px; text-decoration: none; color: inherit;
  transition: transform .12s, box-shadow .12s, border-color .12s;
}
.svc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card__ic { width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px; background: var(--green-light); display: flex; align-items: center; justify-content: center; }
.svc-card__ic [data-lucide] { width: 24px; height: 24px; color: var(--green); }
.svc-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.svc-card__label { font-weight: 800; font-size: 1rem; }
.svc-card__desc { font-size: .85rem; color: var(--text-muted); line-height: 1.45; flex: 1; }
.svc-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700; color: var(--green); }
.svc-card__link [data-lucide] { width: 14px; height: 14px; }

.svc-cta { background: linear-gradient(120deg, var(--green-dark), var(--green)); border-radius: 16px; padding: 28px 22px; text-align: center; color: #fff; box-shadow: var(--shadow); }
.svc-cta h2 { font-size: 1.25rem; font-weight: 800; margin-bottom: 8px; }
.svc-cta p { opacity: .88; margin-bottom: 16px; font-size: .9rem; line-height: 1.5; }
.svc-cta__btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--green); font-weight: 700; padding: 11px 20px; border-radius: 9px; text-decoration: none; transition: transform .12s; }
.svc-cta__btn:hover { transform: translateY(-1px); }
.svc-cta__btn [data-lucide] { width: 14px; height: 14px; }

/* Mobiel: compacte rijkaarten (icoon links, tekst rechts) */
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; gap: 11px; margin-bottom: 22px; }
  .svc-card { flex-direction: row; align-items: flex-start; gap: 13px; padding: 14px; }
  .svc-card__ic { width: 44px; height: 44px; }
  .svc-card__desc { font-size: .8rem; }
}

/* ════════════════════════════════════════════════════
   Gemeente & Politiek Soest
   ════════════════════════════════════════════════════ */
.gm-page { max-width: 1200px; margin: 0 auto; padding: 16px 14px 90px; }
@media (min-width: 900px) { .gm-page { padding: 24px 24px 56px; } }

.gm-hero {
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); color: #fff;
  background: linear-gradient(120deg, #082818 0%, var(--green) 95%);
  background-size: cover; background-position: center;
  padding: 12px 14px; display: grid; gap: 12px;
}
@media (min-width: 900px) { .gm-hero { grid-template-columns: 1.3fr 1fr; align-items: center; padding: 12px 24px; } }
.gm-hero__badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.16); border-radius: 999px; padding: 3px 9px; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.gm-hero__badge [data-lucide] { width: 11px; height: 11px; }
.gm-hero__title { font-size: 1.2rem; font-weight: 800; line-height: 1.08; letter-spacing: -.5px; margin-bottom: 5px; }
@media (min-width: 900px) { .gm-hero__title { font-size: 1.5rem; } }
.gm-hero__sub { font-size: .78rem; line-height: 1.35; color: rgba(255,255,255,.85); max-width: 480px; }

.gm-stats { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border-radius: 16px; box-shadow: 0 8px 26px rgba(0,0,0,.18); overflow: hidden; }
.gm-stat { display: flex; align-items: center; gap: 9px; padding: 9px 11px; }
.gm-stat:nth-child(odd) { border-right: 1px solid var(--border); }
.gm-stat:nth-child(1), .gm-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
.gm-stat__ic { width: 30px; height: 30px; border-radius: 8px; background: var(--green-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gm-stat__ic [data-lucide] { width: 15px; height: 15px; color: var(--green); }
.gm-stat__txt b { display: block; font-size: 1.15rem; font-weight: 800; line-height: 1; color: var(--text); }
.gm-stat__txt small { display: block; font-size: .6rem; color: var(--text-muted); margin-top: 2px; font-weight: 600; }
.gm-stat:nth-child(1) .gm-stat__ic { background: #e8f0fb; } .gm-stat:nth-child(1) .gm-stat__ic [data-lucide] { color: #1B55AC; }
.gm-stat:nth-child(2) .gm-stat__ic { background: #fdeee2; } .gm-stat:nth-child(2) .gm-stat__ic [data-lucide] { color: #E05C1A; }
.gm-stat:nth-child(3) .gm-stat__ic { background: #e8f5ef; } .gm-stat:nth-child(3) .gm-stat__ic [data-lucide] { color: var(--green); }
.gm-stat:nth-child(4) .gm-stat__ic { background: #f1ebfd; } .gm-stat:nth-child(4) .gm-stat__ic [data-lucide] { color: #7c3aed; }

.gm-section { margin-top: 26px; }
.gm-sec-head { display: flex; align-items: center; justify-content: space-between; margin: 22px 0 14px; }
.gm-sec-title { display: flex; align-items: center; gap: 8px; font-size: 1.05rem; font-weight: 800; }
.gm-sec-title [data-lucide] { width: 18px; height: 18px; color: var(--green); }

.gm-cols { display: grid; gap: 18px; margin-top: 22px; }
@media (min-width: 900px) { .gm-cols { grid-template-columns: 1fr 340px; align-items: start; } }
.gm-cols .gm-sec-head { margin-top: 0; }

.gm-feat { display: block; background: var(--surface); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: transform .15s, box-shadow .15s; }
.gm-feat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gm-feat__media { position: relative; aspect-ratio: 16/8; background: var(--green-light) center/cover no-repeat; display: flex; align-items: center; justify-content: center; }
.gm-feat__media[data-empty="1"] [data-lucide] { width: 46px; height: 46px; color: var(--green); opacity: .35; }
.gm-feat__body { padding: 16px; }
.gm-feat__title { font-size: 1.1rem; font-weight: 800; line-height: 1.3; margin-bottom: 6px; }
.gm-feat__sum { font-size: .85rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gm-feat__meta { font-size: .74rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.gm-feat__meta [data-lucide] { width: 13px; height: 13px; }
.gm-tag { position: absolute; left: 12px; top: 12px; background: var(--green); color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .05em; padding: 5px 10px; border-radius: 7px; }

.gm-newsgrid { display: grid; gap: 14px; }
@media (min-width: 700px) { .gm-newsgrid { grid-template-columns: 1fr 1fr; align-items: start; } }
.gm-newsgrid .gm-newslist { margin-top: 0; }
.gm-newslist { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.gm-newsrow { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px; text-decoration: none; color: inherit; transition: border-color .12s, transform .12s, box-shadow .12s; }
.gm-newsrow:hover { transform: translateY(-1px); border-color: transparent; box-shadow: var(--shadow); }
.gm-newsrow__ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: var(--green-light); display: flex; align-items: center; justify-content: center; }
.gm-newsrow__ic [data-lucide] { width: 18px; height: 18px; color: var(--green); }
.gm-newsrow__body { flex: 1; min-width: 0; }
.gm-newsrow__title { font-size: .88rem; font-weight: 700; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gm-newsrow__meta { font-size: .72rem; color: var(--text-muted); margin-top: 3px; }
.gm-newsrow__chev { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; }

.gm-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 8px; }
.gm-meet { display: flex; gap: 12px; align-items: flex-start; padding: 11px 10px; border-radius: 10px; text-decoration: none; color: inherit; }
.gm-meet:hover { background: var(--green-light); }
.gm-meet + .gm-meet { border-top: 1px solid var(--border); }
.gm-meet__date { width: 50px; flex-shrink: 0; text-align: center; background: var(--green-light); border-radius: 10px; padding: 6px 4px; line-height: 1; }
.gm-meet__dow { display: block; font-size: .56rem; font-weight: 800; text-transform: uppercase; color: var(--green); opacity: .8; }
.gm-meet__date b { display: block; font-size: 1.25rem; font-weight: 800; color: var(--green); margin: 2px 0; }
.gm-meet__mon { display: block; font-size: .55rem; font-weight: 700; text-transform: uppercase; color: var(--green); opacity: .75; }
.gm-meet__body { flex: 1; min-width: 0; }
.gm-meet__title { font-size: .85rem; font-weight: 700; line-height: 1.25; }
.gm-meet__meta { font-size: .72rem; color: var(--text-muted); margin-top: 3px; }
.gm-meet__meta [data-lucide] { width: 12px; height: 12px; vertical-align: -1px; color: var(--green); }
.gm-meet__links { display: flex; gap: 12px; margin-top: 5px; }
.gm-meet__link { display: inline-flex; align-items: center; gap: 4px; font-size: .68rem; color: var(--green); font-weight: 600; }
.gm-meet__link [data-lucide] { width: 12px; height: 12px; }
.gm-meet__chev { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; align-self: center; }
.gm-meet-all { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 8px; padding: 11px; border-radius: 9px; background: var(--green-light); color: var(--green); font-size: .8rem; font-weight: 700; text-decoration: none; }
.gm-meet-all [data-lucide] { width: 14px; height: 14px; }

/* Uitgelichte eerstvolgende vergadering — kaart stijl */
.gm-meet-feat { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; }
.gm-meet-feat__banner { position: relative; height: 110px; background: var(--green) center/cover no-repeat; }
.gm-meet-feat__banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.55) 100%); }
.gm-meet-feat__datebar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; background: var(--green); display: flex; align-items: center; gap: 8px; padding: 7px 12px; }
.gm-meet-feat__dow { font-size: .7rem; font-weight: 800; letter-spacing: .6px; color: rgba(255,255,255,.85); text-transform: uppercase; }
.gm-meet-feat__day { font-size: 1.2rem; font-weight: 900; color: #fff; line-height: 1; }
.gm-meet-feat__mon { font-size: .7rem; font-weight: 700; letter-spacing: .6px; color: rgba(255,255,255,.85); text-transform: uppercase; }
.gm-meet-feat__body { padding: 12px; }
.gm-meet-feat__title { font-size: .88rem; font-weight: 800; line-height: 1.3; margin: 0 0 6px; }
.gm-meet-feat__meta { display: flex; flex-direction: column; gap: 4px; font-size: .8rem; color: var(--text-muted); margin-bottom: 10px; }
.gm-meet-feat__meta span { display: inline-flex; align-items: center; gap: 6px; }
.gm-meet-feat__meta [data-lucide] { width: 14px; height: 14px; }
.gm-meet-feat__over { background: #f9fafb; border-radius: 8px; padding: 9px 11px; margin-bottom: 10px; }
.gm-meet-feat__over-label { font-size: .7rem; font-weight: 800; color: var(--green); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 4px; }
.gm-meet-feat__over-text { font-size: .78rem; color: #374151; line-height: 1.5; margin: 0; }
.gm-meet-feat__cta { display: block; text-align: center; background: #fff; color: var(--green); border: 1.5px solid var(--border); font-size: .82rem; font-weight: 700; padding: 10px 14px; border-radius: 8px; text-decoration: none; }
.gm-meet-feat__cta:hover { border-color: var(--green); background: var(--green-light); }

.gm-mfilter { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 4px; scrollbar-width: none; }
.gm-mfilter::-webkit-scrollbar { display: none; }
.gm-chip { flex-shrink: 0; cursor: pointer; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; font-size: .78rem; font-weight: 600; color: var(--text-muted); padding: 7px 14px; }
.gm-chip.is-active { background: var(--green); border-color: var(--green); color: #fff; }
/* Sectie-link rechtsboven ("Bekijk alle ...") */
.gm-sec-link { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; cursor: pointer; font-size: .78rem; font-weight: 600; color: var(--green); text-decoration: none; white-space: nowrap; }
.gm-sec-link [data-lucide] { width: 15px; height: 15px; }

.gm-members { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 12px; }
/* Horizontale strip voor raadsleden (compact); uitklapbaar naar raster */
.gm-members--scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
.gm-members--scroll::-webkit-scrollbar { height: 6px; }
.gm-members--scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.gm-members--scroll .gm-member { flex: 0 0 142px; scroll-snap-align: start; }
.gm-members--scroll.is-expanded { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); overflow: visible; }
.gm-members--scroll.is-expanded .gm-member { flex: none; }

.gm-member[hidden] { display: none; }
.gm-member { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; text-align: left; }
.gm-member__photo { width: 100%; height: 134px; background: var(--green-light) center top/cover no-repeat; display: flex; align-items: center; justify-content: center; }
.gm-member__photo[data-empty="1"] [data-lucide] { width: 34px; height: 34px; color: var(--green); opacity: .5; }
.gm-member__info { padding: 9px 11px 12px; }
.gm-member__name { font-size: .82rem; font-weight: 700; line-height: 1.2; }
.gm-member__party { font-size: .7rem; font-weight: 700; margin-top: 3px; }
.gm-member__role { font-size: .68rem; color: var(--text-muted); margin-top: 2px; }
.gm-member__role--accent { color: var(--green); font-weight: 700; font-size: .72rem; }
.gm-college .gm-member { border-color: var(--green-light); }

.gm-parties { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
.gm-parties--scroll { display: flex; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
.gm-parties--scroll::-webkit-scrollbar { height: 6px; }
.gm-parties--scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.gm-parties--scroll .gm-party { flex: 0 0 118px; scroll-snap-align: start; }
.gm-parties--scroll.is-expanded { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); overflow: visible; }
.gm-parties--scroll.is-expanded .gm-party { flex: none; }
.gm-sec-head__right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.gm-party { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 12px; text-align: center; text-decoration: none; color: inherit; transition: transform .12s, box-shadow .12s; }
.gm-party:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.gm-party.is-coalition { border-color: var(--green); box-shadow: inset 0 0 0 1px var(--green); }
.gm-party__coalitie { position: absolute; top: 7px; right: 7px; background: var(--green); color: #fff; font-size: .54rem; font-weight: 800; padding: 2px 6px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.gm-legend { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; color: var(--text-muted); font-weight: 600; }
.gm-legend__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }
.gm-party__logo { width: 54px; height: 54px; border-radius: 12px; margin: 0 auto 8px; background: var(--bg); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; overflow: hidden; }
.gm-party__logo img { max-width: 84%; max-height: 84%; object-fit: contain; }
.gm-party__abbr { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-weight: 800; font-size: .9rem; }
.gm-party__name { font-size: .82rem; font-weight: 700; }
.gm-party__seats { font-size: .7rem; color: var(--text-muted); margin-top: 2px; }

.gm-allnews { display: grid; grid-template-columns: 1fr; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
@media (min-width: 700px) { .gm-allnews { grid-template-columns: 1fr 1fr; } }
.gm-allrow { display: flex; align-items: center; gap: 10px; padding: 13px 14px; text-decoration: none; color: inherit; border-bottom: 1px solid var(--border); }
.gm-allrow:hover { background: var(--green-light); }
.gm-allrow [data-lucide] { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.gm-allrow__title { flex: 1; min-width: 0; font-size: .82rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gm-allrow__meta { font-size: .68rem; color: var(--text-muted); flex-shrink: 0; }

.gm-empty { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 36px 16px; text-align: center; color: var(--text-muted); font-size: .88rem; background: var(--surface); border: 1px dashed var(--border); border-radius: 14px; }
.gm-empty [data-lucide] { width: 34px; height: 34px; color: var(--border); }
.gm-empty--sm { padding: 24px 12px; border: none; }

.gm-cta { margin-top: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; background: linear-gradient(120deg, var(--green-dark), var(--green)); border-radius: 18px; padding: 22px 24px; box-shadow: var(--shadow); }
.gm-cta__ic { width: 50px; height: 50px; border-radius: 13px; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gm-cta__ic [data-lucide] { width: 24px; height: 24px; color: #fff; }
.gm-cta__txt { flex: 1; min-width: 200px; color: #fff; }
.gm-cta__title { font-size: 1.1rem; font-weight: 800; }
.gm-cta__txt p { font-size: .82rem; color: rgba(255,255,255,.85); margin-top: 3px; }
.gm-cta__btn { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--green); font-weight: 700; font-size: .85rem; padding: 11px 18px; border-radius: 10px; text-decoration: none; }
.gm-cta__btn [data-lucide] { width: 15px; height: 15px; }

/* Twee-koloms dashboardrijen */
.gm-cols2 { display: grid; gap: 18px; }
@media (min-width: 900px) { .gm-cols2 { grid-template-columns: 1fr 1fr; align-items: start; } }

.gm-newsrow__thumb { width: 54px; height: 48px; flex-shrink: 0; border-radius: 9px; background: var(--bg) center/cover no-repeat; }

.gm-listrow { display: flex; align-items: center; gap: 10px; padding: 11px 12px; text-decoration: none; color: inherit; border-bottom: 1px solid var(--border); }
.gm-listrow:last-child { border-bottom: none; }
.gm-listrow:hover { background: var(--green-light); }
.gm-listrow [data-lucide] { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.gm-listrow__title { flex: 1; min-width: 0; font-size: .83rem; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gm-listrow__meta { font-size: .68rem; color: var(--text-muted); flex-shrink: 0; }
.gm-listrow__tag { font-size: .64rem; font-weight: 700; color: var(--green); background: var(--green-light); padding: 3px 7px; border-radius: 6px; flex-shrink: 0; }

.gm-vote { padding: 11px 12px; border-bottom: 1px solid var(--border); }
.gm-vote:last-child { border-bottom: none; }
.gm-vote__title { font-size: .83rem; font-weight: 600; line-height: 1.3; margin-bottom: 7px; display: flex; justify-content: space-between; gap: 8px; align-items: flex-start; }
.gm-vote__result { flex-shrink: 0; font-size: .62rem; font-weight: 800; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; }
.gm-vote__result--ja { background: var(--green-light); color: var(--green); }
.gm-vote__result--nee { background: #fde7e7; color: #c0392b; }
.gm-vote__bar { height: 7px; border-radius: 999px; background: #fde7e7; overflow: hidden; }
.gm-vote__bar span { display: block; height: 100%; background: var(--green); border-radius: 999px; }
.gm-vote__nums { display: flex; justify-content: space-between; margin-top: 5px; font-size: .72rem; }
.gm-vote__nums b { color: var(--green); font-weight: 700; }
.gm-vote__nums span { color: #c0392b; font-weight: 700; }

.gm-permit { display: flex; align-items: center; gap: 11px; padding: 11px 12px; text-decoration: none; color: inherit; border-bottom: 1px solid var(--border); }
.gm-permit:last-child { border-bottom: none; }
.gm-permit:hover { background: var(--green-light); }
.gm-permit__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; background: var(--text-muted); }
.gm-permit__dot--ok { background: #2e9e5b; }
.gm-permit__dot--no { background: #c0392b; }
.gm-permit__dot--blue { background: #1B55AC; }
.gm-permit__dot--wait { background: #E0A21A; }
.gm-permit__body { flex: 1; min-width: 0; }
.gm-permit__title { display: block; font-size: .83rem; font-weight: 600; line-height: 1.25; }
.gm-permit__meta { display: block; font-size: .7rem; color: var(--text-muted); margin-top: 2px; }
.gm-permit__status { flex-shrink: 0; font-size: .64rem; font-weight: 700; color: var(--text-muted); background: var(--bg); padding: 3px 8px; border-radius: 6px; }

@media (max-width: 560px) {
  .gm-members { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gm-parties { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gm-allnews { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   Agenda — mobiele header + "volledige agenda"-knop
   ════════════════════════════════════════════════════ */
.ag-mobhead {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; padding: calc(env(safe-area-inset-top,0px) + 12px) 16px 12px;
  position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.ag-mobhead__logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.ag-mobhead__logo-ic { width: 32px; height: 32px; border-radius: 9px; background: var(--green-light); display: flex; align-items: center; justify-content: center; }
.ag-mobhead__logo-ic [data-lucide] { width: 19px; height: 19px; color: var(--green); }
.ag-mobhead__logo-txt { font-size: 1.02rem; font-weight: 700; letter-spacing: -.3px; color: var(--green); }
.ag-mobhead__logo-txt b { font-weight: 800; }
.ag-mobhead__actions { display: flex; align-items: center; gap: 6px; }
.ag-mobhead__btn {
  width: 38px; height: 38px; border-radius: 10px; background: var(--bg);
  border: none; cursor: pointer; text-decoration: none; list-style: none;
  display: flex; align-items: center; justify-content: center;
}
.ag-mobhead__btn::-webkit-details-marker { display: none; }
.ag-mobhead__btn [data-lucide] { width: 19px; height: 19px; color: var(--text); }
.ag-mobmenu { position: relative; }
.ag-mobmenu__panel {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 200; min-width: 184px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 6px; display: flex; flex-direction: column;
}
.ag-mobmenu__panel a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; font-size: .9rem; font-weight: 600; color: var(--text); text-decoration: none; }
.ag-mobmenu__panel a:active, .ag-mobmenu__panel a:hover { background: var(--green-light); color: var(--green); }
.ag-mobmenu__panel [data-lucide] { width: 17px; height: 17px; color: var(--green); }

.ag-showall {
  width: 100%; margin-top: 14px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff; border: none; border-radius: 12px;
  font-size: .9rem; font-weight: 700; padding: 14px; transition: background .15s;
}
.ag-showall:hover { background: var(--green-dark); }
.ag-showall[hidden] { display: none; }
.ag-showall [data-lucide] { width: 17px; height: 17px; }
.ag-events.is-collapsed {
  max-height: 760px; overflow: hidden;
  -webkit-mask-image: linear-gradient(#000 78%, transparent);
          mask-image: linear-gradient(#000 78%, transparent);
}

/* ── Mobiel: filters als icoon-pills + overlay-uitgelicht ── */
@media (max-width: 560px) {
  .ag-filters { gap: 9px; padding: 4px 0 10px; }
  .ag-chip {
    flex-direction: column; gap: 5px; min-width: 64px; padding: 9px 8px 7px;
    border-radius: 14px; font-size: .66rem; font-weight: 600; text-align: center;
  }
  .ag-chip [data-lucide] { width: 21px; height: 21px; }

  /* Uitgelicht: foto-kaart met tekst eroverheen */
  .ag-featured { gap: 12px; }
  .ag-fcard { aspect-ratio: 3 / 4; }
  .ag-fcard__media { position: absolute; inset: 0; aspect-ratio: auto; height: 100%; }
  .ag-fcard__media::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
  }
  .ag-fcard__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 12px; pointer-events: none; }
  .ag-fcard__title { color: #fff; }
  .ag-fcard__meta { color: rgba(255,255,255,.92); }
  .ag-fcard__media .ag-date-badge { z-index: 2; background: var(--green); }
  .ag-fcard__media .ag-date-badge b { color: #fff; }
  .ag-fcard__media .ag-date-badge small { color: rgba(255,255,255,.85); }
}

/* ===== Inner pages (nieuws, agenda, voetbal) — mobiel ===== */
.inner-body { background: #f0f4f1; min-height: 100vh; }

.inner-topbar { background: var(--green); padding: calc(env(safe-area-inset-top,0px) + 14px) 16px 14px; position: sticky; top: 0; z-index: 100; }

.inner-header { display: flex; align-items: center; gap: 12px; }
.inner-header__back { width: 36px; height: 36px; background: rgba(255,255,255,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; text-decoration: none; }
.inner-header__back [data-lucide] { width: 18px; height: 18px; color: #fff; stroke-width: 2.5; }
.inner-header__title { flex: 1; }
.inner-header__title span { display: block; font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: -.2px; line-height: 1.1; }
.inner-header__title small { font-size: .65rem; color: rgba(255,255,255,.7); }

.inner-content { padding: 14px 0 100px; max-width: 430px; margin: 0 auto; }
.inner-content .sport-cat-grid,
.inner-content .sport-subcat-grid,
.inner-content .sport-team-grid,
.inner-content .sport-categories-header,
.inner-content .sport-poule-title,
.inner-content .sport-standing-card,
.inner-content .sport-empty { padding-left: 16px; padding-right: 16px; }
.inner-content .sport-league-table,
.inner-content .sport-fixtures { margin-left: 16px; margin-right: 16px; }
.inner-footer { font-size: .72rem; color: var(--text-muted); text-align: center; margin-top: 16px; padding: 0 16px; }

.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; text-align: center; }
.empty-state__icon { width: 56px; height: 56px; background: var(--bg); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.empty-state__icon [data-lucide] { width: 24px; height: 24px; color: var(--text-muted); }
.empty-state__text { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

/* === SPORT HUB (/sport) ===================================== */
.sport-body { background: #F4F7F5; }

.sport-page {
  --sp-green:      #006B3F;
  --sp-green-dark: #003F2A;
  --sp-ink:        #101828;
  --sp-muted:      #667085;
  --sp-border:     #E5E7EB;
  --sp-radius:     16px;
  --sp-shadow:     0 1px 2px rgba(16,24,40,.05), 0 4px 14px rgba(16,24,40,.06);
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px calc(env(safe-area-inset-bottom, 0px) + 96px);
  color: var(--sp-ink);
}

/* — Mobiele topbar — */
.sph-mobtop { background: #fff; border-bottom: 1px solid #E5E7EB; padding: calc(env(safe-area-inset-top, 0px) + 12px) 16px 12px; }
.sph-mobtop__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.sph-mobtop__logo { display: flex; align-items: center; gap: 8px; color: var(--text); }
.sph-mobtop__logo img { height: 38px; width: auto; max-width: 130px; object-fit: contain; border-radius: 8px; }
.sph-mobtop__logo [data-lucide] { width: 24px; height: 24px; color: #006B3F; }
.sph-mobtop__logo strong { font-size: .95rem; font-weight: 900; letter-spacing: -.3px; text-transform: uppercase; }
.sph-mobtop__menu { background: none; border: none; padding: 6px; cursor: pointer; display: flex; color: #101828; }
.sph-mobtop__menu [data-lucide] { width: 24px; height: 24px; }
.sph-mobtop__search { display: flex; align-items: center; gap: 9px; background: #F2F4F7; border: 1px solid #E5E7EB; border-radius: 10px; padding: 9px 13px; margin-bottom: 10px; }
.sph-mobtop__search [data-lucide] { width: 16px; height: 16px; color: #667085; }
.sph-mobtop__search input { border: none; background: none; outline: none; width: 100%; font-size: .85rem; color: #101828; font-family: var(--font); }
.sph-mobtop__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.sph-stat { display: flex; align-items: center; gap: 6px; min-width: 0; color: var(--text); }
.sph-stat__weather { width: 20px; height: 20px; color: #f59e0b; flex-shrink: 0; }
.sph-stat__icon { width: 20px; height: 20px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sph-stat__icon--insta { background: linear-gradient(135deg, #f58529, #dd2a7b); }
.sph-stat__icon--fb { background: #1877f2; }
.sph-stat__icon--shop { background: #006B3F; }
.sph-stat__icon [data-lucide] { width: 11px; height: 11px; color: #fff; }
.sph-stat > div { min-width: 0; }
.sph-stat strong { display: block; font-size: .74rem; font-weight: 800; line-height: 1.1; }
.sph-stat small { display: block; font-size: .5rem; color: #667085; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* — Hero — */
.sph-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--sp-radius);
  background:
    radial-gradient(ellipse 90% 120% at 85% -20%, rgba(255,255,255,.10) 0%, transparent 55%),
    radial-gradient(ellipse 70% 90% at 10% 110%, rgba(0,0,0,.28) 0%, transparent 60%),
    linear-gradient(135deg, #0B5C38 0%, #064A2C 45%, #003F2A 100%);
  padding: 34px 22px 38px;
}
.sph-hero--compact { padding: 26px 22px 30px; }
.sph-hero__field { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .09; }
.sph-hero__body { position: relative; max-width: 560px; }
.sph-hero h1 { color: #fff; font-size: 1.75rem; font-weight: 900; letter-spacing: -.5px; line-height: 1.15; margin: 0 0 8px; }
.sph-hero p { color: rgba(255,255,255,.82); font-size: .95rem; line-height: 1.5; margin: 0; }

/* — Sportcategorie cards (compact: 3 naast elkaar, desktop 1 rij) — */
.sph-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 14px; }
.sph-cat-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 7px;
  background: #fff; border: 1px solid var(--sp-border); border-radius: 14px;
  box-shadow: var(--sp-shadow);
  padding: 13px 6px 12px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  -webkit-tap-highlight-color: transparent;
}
.sph-cat-card:hover, .sph-cat-card:focus-visible { border-color: var(--sp-green); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,24,40,.10); }
.sph-cat-card:active { transform: scale(.98); }
.sph-cat-card__icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: #E4F1EA; color: var(--sp-green);
  display: flex; align-items: center; justify-content: center;
}
.sph-cat-card__icon svg { width: 23px; height: 23px; }
.sph-cat-card__label { font-size: .78rem; font-weight: 800; letter-spacing: -.2px; line-height: 1.15; }
/* "Meer sporten": opvallende groene balk over de volle breedte */
.sph-cat-card--more { grid-column: 1 / -1; flex-direction: row; gap: 9px; padding: 11px 12px; background: var(--sp-green); border-color: var(--sp-green); }
.sph-cat-card--more .sph-cat-card__icon { width: 30px; height: 30px; background: rgba(255,255,255,.16); color: #fff; }
.sph-cat-card--more .sph-cat-card__icon svg { width: 17px; height: 17px; }
.sph-cat-card--more .sph-cat-card__label { color: #fff; font-size: .82rem; }
.sph-cat-card--more:hover, .sph-cat-card--more:focus-visible { border-color: var(--sp-green-dark); background: var(--sp-green-dark); }

/* — Secties — */
.sph-section { margin-top: 30px; }
.sph-section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.sph-section__head h2 { font-size: 1.2rem; font-weight: 800; letter-spacing: -.3px; margin: 0; }
.sph-section__more { display: inline-flex; align-items: center; gap: 2px; font-size: .8rem; font-weight: 700; color: var(--sp-green); white-space: nowrap; }
.sph-section__more [data-lucide] { width: 14px; height: 14px; }

.sph-empty { padding: 20px 16px; font-size: .85rem; color: var(--sp-muted); text-align: center; }
.sph-empty--sm { padding: 14px 16px; text-align: left; }

/* — Clublogo (gedeeld) — */
.sph-club-logo {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: color-mix(in srgb, var(--club, #006B3F) 12%, #fff);
  color: var(--club, #006B3F);
  border: 1.5px solid color-mix(in srgb, var(--club, #006B3F) 35%, #fff);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; overflow: hidden;
}
.sph-club-logo img { width: 100%; height: 100%; object-fit: contain; }
.sph-club-logo--light { background: #fff; border: none; width: 44px; height: 44px; }

/* — Standkaarten — */
.sph-standings { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
.sph-standings::-webkit-scrollbar { display: none; }
.sph-stand-card {
  flex: 0 0 264px; scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--sp-border); border-top: 3px solid var(--club, #006B3F);
  border-radius: var(--sp-radius); box-shadow: var(--sp-shadow); overflow: hidden;
}
.sph-stand-card__head { display: flex; align-items: center; gap: 10px; padding: 13px 14px 10px; }
.sph-stand-card__head h3 { font-size: .95rem; font-weight: 800; margin: 0; letter-spacing: -.2px; }
.sph-stand-table { padding: 0 14px; flex: 1; }
.sph-stand-table__row {
  display: grid; grid-template-columns: 26px minmax(0, 1fr) 34px 34px; gap: 6px;
  align-items: center; padding: 7px 6px; border-radius: 8px; font-size: .8rem;
}
.sph-stand-table__row > span:nth-child(3), .sph-stand-table__row > span:nth-child(4) { text-align: right; font-variant-numeric: tabular-nums; }
.sph-stand-table__row--head { font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--sp-muted); border-bottom: 1px solid var(--sp-border); border-radius: 0; padding-top: 0; }
.sph-stand-table__row--gap { color: var(--sp-muted); padding: 1px 6px; }
.sph-stand-table__team { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sph-stand-table__pts { font-weight: 800; }
.sph-stand-table__row--own { background: color-mix(in srgb, var(--club, #006B3F) 9%, #fff); font-weight: 700; }
.sph-stand-table__row--own > span:first-child, .sph-stand-table__row--own .sph-stand-table__pts { color: var(--club, #006B3F); }
.sph-stand-card__link {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  margin-top: 10px; padding: 11px; border-top: 1px solid var(--sp-border);
  font-size: .8rem; font-weight: 700; color: var(--sp-green);
}
.sph-stand-card__link [data-lucide] { width: 14px; height: 14px; }
.sph-stand-card__link:hover { background: #F4F7F5; }

/* — Kolommen: clubs + overig nieuws — */
.sph-columns { display: block; }

/* — Clubkaarten — */
.sph-clubs { display: grid; grid-template-columns: 1fr; gap: 14px; }
.sph-club-card { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius); box-shadow: var(--sp-shadow); overflow: hidden; }
.sph-club-card__head { display: flex; align-items: center; gap: 12px; padding: 14px; }
.sph-club-card__id { flex: 1; min-width: 0; }
.sph-club-card__id h3 { color: #fff; font-size: 1rem; font-weight: 800; margin: 0; letter-spacing: -.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sph-club-card__id a, .sph-club-card__id small { display: inline-flex; align-items: center; gap: 2px; color: rgba(255,255,255,.78); font-size: .72rem; font-weight: 600; margin-top: 2px; }
.sph-club-card__id a:hover { color: #fff; }
.sph-club-card__id a [data-lucide] { width: 11px; height: 11px; }
.sph-club-card__btn {
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  background: #fff; color: var(--sp-ink); font-size: .78rem; font-weight: 800;
  padding: 9px 14px; border-radius: 10px;
  transition: transform .15s;
}
.sph-club-card__btn:hover { transform: translateY(-1px); }
.sph-club-card__btn [data-lucide] { width: 13px; height: 13px; }
.sph-club-card__news { padding: 4px 14px; }
.sph-club-news { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid #F2F4F7; }
.sph-club-news:first-child { border-top: none; }
.sph-club-news__thumb { width: 52px; height: 40px; border-radius: 7px; object-fit: cover; flex-shrink: 0; background: #F2F4F7; }
.sph-club-news__title { flex: 1; min-width: 0; font-size: .82rem; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
a.sph-club-news:hover .sph-club-news__title { color: var(--sp-green); }
.sph-club-news__date { flex-shrink: 0; font-size: .7rem; color: var(--sp-muted); white-space: nowrap; }
.sph-club-news--more { border-top: none; padding: 12px 0 6px; }
.sph-club-news--more .sph-club-news__title { color: var(--sp-green); font-size: .8rem; font-weight: 500; }

/* — Overig sportnieuws — */
.sph-othernews { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius); box-shadow: var(--sp-shadow); padding: 6px 14px; }
.sph-news-row { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-top: 1px solid #F2F4F7; -webkit-tap-highlight-color: transparent; }
.sph-news-row:first-child { border-top: none; }
.sph-news-row__thumb { width: 58px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: #F2F4F7; }
.sph-news-row__thumb--icon { display: flex; align-items: center; justify-content: center; }
.sph-news-row__thumb--icon svg { width: 22px; height: 22px; }
.sph-news-row__body { flex: 1; min-width: 0; }
.sph-news-row__title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: .83rem; font-weight: 600; line-height: 1.35; }
a.sph-news-row:hover .sph-news-row__title { color: var(--sp-green); }
.sph-news-row__date { display: block; font-size: .7rem; color: var(--sp-muted); margin-top: 3px; }
.sph-news-row__arrow { width: 16px; height: 16px; color: #D0D5DD; flex-shrink: 0; }

/* — Andere sporten — */
.sph-more-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sph-more-card {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--sp-border); border-radius: 14px;
  box-shadow: var(--sp-shadow); padding: 11px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  -webkit-tap-highlight-color: transparent;
}
.sph-more-card:hover { border-color: var(--sp-green); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,24,40,.10); }
.sph-more-card__img { width: 56px; height: 56px; border-radius: 11px; object-fit: cover; flex-shrink: 0; background: #F2F4F7; }
.sph-more-card__img--icon { display: flex; align-items: center; justify-content: center; color: #fff; }
.sph-more-card__img--icon svg { width: 26px; height: 26px; }
.sph-more-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.sph-more-card__body strong { font-size: .85rem; font-weight: 800; letter-spacing: -.2px; }
.sph-more-card__text { font-size: .72rem; color: var(--sp-muted); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sph-more-card__link { display: inline-flex; align-items: center; gap: 3px; font-size: .72rem; font-weight: 700; color: var(--sp-green); margin-top: 1px; }
.sph-more-card__link [data-lucide] { width: 12px; height: 12px; }

/* — CTA — */
.sph-cta {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  margin-top: 30px; padding: 26px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #006B3F 0%, #004D2E 55%, #003F2A 100%);
}
.sph-cta__watermark { position: absolute; right: -26px; bottom: -30px; width: 170px !important; height: 170px !important; color: #fff; opacity: .08; stroke-width: 1.2; }
.sph-cta__badge { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.13); display: flex; align-items: center; justify-content: center; }
.sph-cta__badge [data-lucide] { width: 22px; height: 22px; color: #fff; }
.sph-cta__body { position: relative; }
.sph-cta h2 { color: #fff; font-size: 1.3rem; font-weight: 900; letter-spacing: -.3px; margin: 0 0 6px; }
.sph-cta p { color: rgba(255,255,255,.82); font-size: .88rem; line-height: 1.5; margin: 0; max-width: 520px; }
.sph-cta__btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: #003F2A; font-size: .9rem; font-weight: 800;
  padding: 13px 22px; border-radius: 12px;
  transition: transform .15s, box-shadow .15s;
}
.sph-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.sph-cta__btn [data-lucide] { width: 16px; height: 16px; }

/* — Tablet en desktop — */
@media (min-width: 640px) {
  .sph-cats { grid-template-columns: repeat(6, 1fr); }
  .sph-cats--all { grid-template-columns: repeat(4, 1fr); }
  .sph-standings { margin: 0; padding-left: 0; padding-right: 0; display: grid; grid-template-columns: repeat(2, 1fr); overflow: visible; }
  .sph-stand-card { flex: initial; }
  .sph-clubs { grid-template-columns: repeat(2, 1fr); }
  .sph-more-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .sport-page { padding: 22px 24px 56px; }
  .sph-hero { padding: 52px 48px 56px; }
  .sph-hero h1 { font-size: 2.4rem; }
  .sph-hero p { font-size: 1.05rem; }
  .sph-more-grid { grid-template-columns: repeat(4, 1fr); }
  .sph-cats { grid-template-columns: repeat(7, 1fr); gap: 12px; margin-top: 18px; }
  .sph-cats--all { grid-template-columns: repeat(6, 1fr); }
  .sph-cat-card { padding: 16px 8px 14px; }
  .sph-cat-card__label { font-size: .82rem; }
  /* "Meer sporten" op desktop als gewone card in de rij */
  .sph-cat-card--more { grid-column: auto; flex-direction: column; gap: 7px; padding: 16px 8px 14px; }
  .sph-cat-card--more .sph-cat-card__icon { width: 42px; height: 42px; }
  .sph-cat-card--more .sph-cat-card__icon svg { width: 23px; height: 23px; }
  .sph-section { margin-top: 38px; }
  .sph-section__head h2 { font-size: 1.35rem; }
  .sph-cta { flex-direction: row; align-items: center; gap: 20px; padding: 34px 38px; margin-top: 38px; }
  .sph-cta__body { flex: 1; }
  .sph-cta__btn { flex-shrink: 0; }
}

@media (min-width: 1000px) {
  .sph-standings { grid-template-columns: repeat(4, 1fr); }
  .sph-columns { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 22px; align-items: start; }
  .sph-columns__main, .sph-columns__side { margin-top: 38px; }
}
/* ===== Bedrijven ===== */

/* Desktop/mobile visibility helpers (bedrijven) */
.desk-only { display: none; }
@media(min-width:900px) { .desk-only { display: block; } }

/* --- Bedrijven topbar (mobiel) --- */
.bv-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  padding: calc(env(safe-area-inset-top,0px) + 14px) 16px 14px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.bv-topbar__back {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; text-decoration: none;
}
.bv-topbar__back [data-lucide] { width: 18px; height: 18px; color: #fff; stroke-width: 2.5; }
.bv-topbar__title { flex: 1; }
.bv-topbar__title span { display: block; font-size: 1rem; font-weight: 800; color: #fff; line-height: 1.1; }
.bv-topbar__title small { font-size: .65rem; color: rgba(255,255,255,.7); }
.bv-topbar__loc {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: .75rem; font-weight: 600;
  padding: 5px 10px; border-radius: 20px;
}
.bv-topbar__loc [data-lucide] { width: 12px; height: 12px; stroke-width: 2.5; }

/* --- Hero banner --- */
.bv-hero {
  position: relative;
  height: 155px;
  background: linear-gradient(135deg, #0c4a22 0%, #1a7a3c 55%, #2d9a52 100%);
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}
.bv-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,50,20,.88) 0%, rgba(10,50,20,.55) 60%, rgba(10,50,20,.1) 100%);
}
.bv-hero__content {
  position: relative; z-index: 1;
  padding: 22px 18px 0;
}
.bv-hero__title {
  font-size: 1.22rem; font-weight: 800; color: #fff;
  line-height: 1.25; letter-spacing: -.3px; margin-bottom: 6px;
}
.bv-hero__sub {
  font-size: .75rem; color: rgba(255,255,255,.75); line-height: 1.4;
}

/* --- Zoekbalk --- */
.bv-search-wrap {
  padding: 12px 16px 8px;
  background: #fff;
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.bv-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}
.bv-search [data-lucide]:first-child { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; stroke-width: 2.2; }
.bv-search input {
  flex: 1; border: none; background: none; font-size: .88rem; color: var(--text);
  outline: none; min-width: 0;
}
.bv-search input::placeholder { color: var(--text-muted); }
.bv-search__filter {
  width: 30px; height: 30px; border-radius: 8px; background: var(--green-light);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bv-search__filter [data-lucide] { width: 15px; height: 15px; color: var(--green); stroke-width: 2; }

/* --- Categorie chips --- */
.bcat-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 16px 10px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid var(--border);
}
.bcat-scroll::-webkit-scrollbar { display: none; }
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 16px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bcat-scroll::-webkit-scrollbar { display: none; }

.bcat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bcat-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
  cursor: pointer;
  flex-shrink: 0;
}
.bcat-chip [data-lucide] { width: 13px; height: 13px; stroke-width: 2.2; }
.bcat-chip:hover { border-color: var(--green); color: var(--green); }
.bcat-chip--active {
  background: var(--chip-kleur, var(--green));
  border-color: var(--chip-kleur, var(--green));
  color: #fff;
}

/* Desktop bedrijven grid */
.bedrijven-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.bedrijf-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow .15s;
  position: relative;
}
.bedrijf-card:hover { box-shadow: var(--shadow); }

.bedrijf-card__logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.bedrijf-card__logo img { width: 100%; height: 100%; object-fit: contain; }
.bedrijf-card__logo [data-lucide] { width: 24px; height: 24px; stroke-width: 1.8; }

.bedrijf-card__info { flex: 1; min-width: 0; }
.bedrijf-card__naam { font-size: .97rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.bedrijf-card__cat {
  font-size: .75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.bedrijf-card__cat [data-lucide] { width: 11px; height: 11px; stroke-width: 2.2; }
.bedrijf-card__desc { font-size: .8rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 6px; }
.bedrijf-card__meta { display: flex; flex-direction: column; gap: 2px; }
.bedrijf-card__meta span,
.bedrijf-card__meta a {
  font-size: .77rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.bedrijf-card__meta [data-lucide] { width: 11px; height: 11px; stroke-width: 2; flex-shrink: 0; }

.bedrijf-card__link {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background .15s;
}
.bedrijf-card__link:hover { background: var(--green-light); color: var(--green); }
.bedrijf-card__link [data-lucide] { width: 14px; height: 14px; stroke-width: 2; }

/* Mobiele bedrijven lijst */
.bedrijven-list { padding: 0 16px 16px; display: flex; flex-direction: column; gap: 10px; }

.bedrijf-row {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
}

.bedrijf-row__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bedrijf-row__logo img { width: 100%; height: 100%; object-fit: contain; }
.bedrijf-row__logo [data-lucide] { width: 20px; height: 20px; stroke-width: 1.8; }

.bedrijf-row__info { flex: 1; min-width: 0; }
.bedrijf-row__naam { font-size: .92rem; font-weight: 700; color: var(--text); }
.bedrijf-row__cat { font-size: .73rem; font-weight: 600; margin-top: 1px; }
.bedrijf-row__adres { font-size: .73rem; color: var(--text-muted); margin-top: 2px; display: flex; align-items: center; gap: 3px; }
.bedrijf-row__adres [data-lucide] { width: 10px; height: 10px; stroke-width: 2; }

.bedrijf-row__actions { display: flex; gap: 6px; flex-shrink: 0; }
.bedrijf-row__btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .12s;
}
.bedrijf-row__btn:hover { background: var(--green-light); color: var(--green); }
.bedrijf-row__btn [data-lucide] { width: 15px; height: 15px; stroke-width: 2; }

/* --- Bedrijven pagina achtergrond --- */
.mob-only .bv-topbar ~ * { background: var(--bg); }

/* --- Bedrijven secties --- */
.bv-section { padding: 14px 0 6px; }
.bv-section__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px 10px;
}
.bv-section__title { font-size: .95rem; font-weight: 800; color: var(--text); }
.bv-section__meer {
  font-size: .78rem; font-weight: 600; color: var(--green);
  display: flex; align-items: center; gap: 2px; text-decoration: none;
}
.bv-section__meer [data-lucide] { width: 13px; height: 13px; stroke-width: 2.5; }

/* --- Uitgelichte kaarten (horizontal scroll) --- */
.uitgelicht-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 16px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.uitgelicht-scroll::-webkit-scrollbar { display: none; }

.uitgelicht-card {
  flex: 0 0 168px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.07);
}

.uitgelicht-card__top {
  height: 96px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.uitgelicht-card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.uitgelicht-card__logo-img {
  max-width: 75%; max-height: 75%; object-fit: contain;
}
.uitgelicht-card__icon [data-lucide] { width: 36px; height: 36px; stroke-width: 1.5; }

.uitgelicht-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--green); color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px;
  letter-spacing: .2px;
}

.uitgelicht-heart {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: rgba(255,255,255,.85);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.uitgelicht-heart [data-lucide] { width: 14px; height: 14px; color: #999; stroke-width: 2; }

.uitgelicht-card__body { padding: 10px 10px 0; }
.uitgelicht-card__naam { font-size: .86rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.uitgelicht-card__cat { font-size: .7rem; color: var(--text-muted); margin: 2px 0 4px; }

.uitgelicht-card__stars {
  display: flex; align-items: center; gap: 3px;
  font-size: .7rem; color: var(--text-muted); margin-bottom: 4px;
}
.uitgelicht-card__stars .ster--vol { font-size: .8rem; }
.uitgelicht-card__stars span { color: var(--text-muted); }

.uitgelicht-card__loc {
  display: flex; align-items: center; gap: 3px;
  font-size: .68rem; color: var(--text-muted);
}
.uitgelicht-card__loc [data-lucide] { width: 9px; height: 9px; stroke-width: 2.5; flex-shrink: 0; }

.uitgelicht-card__actions {
  display: flex;
  border-top: 1px solid #f0f0f0;
  margin-top: 10px;
}
.uitgelicht-action {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 4px;
  font-size: .62rem; font-weight: 600; color: #555;
  text-decoration: none;
  border-right: 1px solid #f0f0f0;
  transition: background .12s;
}
.uitgelicht-action:last-child { border-right: none; }
.uitgelicht-action:active { background: var(--bg); }
.uitgelicht-action [data-lucide] { width: 14px; height: 14px; stroke-width: 2; color: var(--green); }

/* Sterren */
.ster { color: #ddd; font-size: .7rem; }
.ster--vol { color: #F59E0B; }
.bedrijf-card__stars {
  display: flex; align-items: center; gap: 3px;
  font-size: .73rem; color: var(--text-muted); margin: 3px 0 5px;
}

/* --- Alle bedrijven lijst --- */
.bv-list {
  background: #fff;
  margin: 0 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}

.bv-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #f4f4f4;
  background: #fff;
}
.bv-row:last-child { border-bottom: none; }

.bv-row__thumb {
  width: 60px; height: 60px;
  border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.bv-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.bv-row__thumb [data-lucide] { width: 24px; height: 24px; stroke-width: 1.8; }

.bv-row__info { flex: 1; min-width: 0; }
.bv-row__naam { font-size: .9rem; font-weight: 700; color: var(--text); }
.bv-row__cat { font-size: .72rem; color: var(--text-muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bv-row__loc {
  display: flex; align-items: center; gap: 3px;
  font-size: .7rem; color: var(--text-muted); margin-top: 2px;
}
.bv-row__loc [data-lucide] { width: 9px; height: 9px; stroke-width: 2.5; flex-shrink: 0; }

.bv-row__right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.bv-row__stars {
  display: flex; align-items: center; gap: 2px;
  font-size: .78rem; font-weight: 700; color: var(--text);
}

.bv-row__heart {
  width: 28px; height: 28px; border: none; border-radius: 50%;
  background: var(--bg); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.bv-row__heart [data-lucide] { width: 14px; height: 14px; color: #ccc; stroke-width: 2; }

.bv-noresult {
  padding: 24px 16px;
  color: var(--text-muted); font-size: .85rem;
  justify-content: center; align-items: center; gap: 8px;
}
.bv-noresult [data-lucide] { width: 18px; height: 18px; stroke-width: 1.8; }

/* --- CTA Bedrijf aanmelden --- */
.bv-cta {
  margin: 16px 16px 100px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}
.bv-cta__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--green-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.bv-cta__icon [data-lucide] { width: 22px; height: 22px; color: var(--green); stroke-width: 1.8; }
.bv-cta__text { flex: 1; min-width: 150px; }
.bv-cta__text strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 2px; }
.bv-cta__text span { font-size: .75rem; color: var(--text-muted); line-height: 1.4; }
.bv-cta__btn {
  display: flex; align-items: center; gap: 5px;
  background: var(--green); color: #fff;
  font-size: .82rem; font-weight: 700;
  padding: 10px 16px; border-radius: 10px;
  text-decoration: none; white-space: nowrap;
  width: 100%;
  justify-content: center;
}
.bv-cta__btn [data-lucide] { width: 14px; height: 14px; stroke-width: 2.5; }

/* Desktop bedrijven sectie */
.desk-bedrijven { padding: 28px 24px 48px; }

/* === Desktop Bedrijven Hero === */
.desk-bv-hero {
  width: 100%;
  height: 300px;
  position: relative;
  background: linear-gradient(135deg, #0c4a22 0%, #1a7a3c 55%, #2d9a52 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: none;
}
@media (min-width: 900px) { .desk-bv-hero { display: block; } }

.desk-bv-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 55%, rgba(0,0,0,.08) 100%);
}
.desk-bv-hero__content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.desk-bv-hero__title {
  font-size: 2.4rem; font-weight: 800; color: #fff;
  line-height: 1.2; letter-spacing: -.5px;
}
.desk-bv-hero__sub {
  font-size: .98rem; color: rgba(255,255,255,.8); margin-bottom: 4px;
}
.desk-bv-hero__searchrow {
  display: flex; gap: 10px; align-items: center; max-width: 560px;
}
.desk-bv-hero__search {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 10px; padding: 11px 16px;
  flex: 1; box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.desk-bv-hero__search input {
  border: none; outline: none; background: transparent;
  font-size: .9rem; width: 100%; color: var(--text);
}
.desk-bv-hero__search [data-lucide] { width: 16px; height: 16px; color: #999; flex-shrink: 0; stroke-width: 2.2; }
.desk-bv-hero__filter-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff; font-size: .84rem; font-weight: 600;
  padding: 11px 18px; border-radius: 10px; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  transition: background .15s;
}
.desk-bv-hero__filter-btn:hover { background: rgba(255,255,255,.25); }
.desk-bv-hero__filter-btn [data-lucide] { width: 13px; height: 13px; stroke-width: 2.5; }

/* === Desktop Uitgelichte Bedrijven grid === */
.desk-bv-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.desk-bv-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.07);
  position: relative;
  display: flex; flex-direction: column;
}
.desk-bv-card__top {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.desk-bv-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.desk-bv-card__logo-img { max-width: 60%; max-height: 60%; object-fit: contain; }
.desk-bv-card__icon [data-lucide] { width: 46px; height: 46px; stroke-width: 1.5; }
.desk-bv-card__badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--green); color: #fff;
  font-size: .63rem; font-weight: 700; letter-spacing: .2px;
  padding: 3px 10px; border-radius: 20px;
}
.desk-bv-card__heart {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,.9); border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.desk-bv-card__heart [data-lucide] { width: 14px; height: 14px; color: #aaa; stroke-width: 2; }
.desk-bv-card__body { padding: 14px 14px 0; flex: 1; display: flex; flex-direction: column; }
.desk-bv-card__naam { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.desk-bv-card__cat {
  display: flex; align-items: center; gap: 4px;
  font-size: .78rem; font-weight: 600; margin-bottom: 7px;
}
.desk-bv-card__cat [data-lucide] { width: 12px; height: 12px; stroke-width: 2.2; }
.desk-bv-card__stars {
  display: flex; align-items: center; gap: 4px;
  font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: 5px;
}
.desk-bv-card__loc {
  display: flex; align-items: center; gap: 4px;
  font-size: .76rem; color: var(--text-muted); margin-bottom: 12px; flex: 1;
}
.desk-bv-card__loc [data-lucide] { width: 11px; height: 11px; stroke-width: 2.5; flex-shrink: 0; }
.desk-bv-card__actions {
  display: flex;
  border-top: 1px solid #f0f0f0;
  margin: 0 -14px;
}
.desk-bv-action {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 6px;
  font-size: .7rem; font-weight: 600; color: #555;
  text-decoration: none;
  border-right: 1px solid #f0f0f0;
  transition: background .12s;
}
.desk-bv-action:last-child { border-right: none; }
.desk-bv-action:hover { background: var(--bg); }
.desk-bv-action [data-lucide] { width: 15px; height: 15px; stroke-width: 2; color: var(--green); }

/* === Desktop Alle bedrijven + sidebar === */
.desk-bv-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: start;
}
.desk-bv-list-wrap {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 5px rgba(0,0,0,.06);
  overflow: hidden;
}
.desk-bv-list-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.desk-bv-list-header span { font-size: .92rem; font-weight: 700; color: var(--text); }
.desk-bv-list-header small { font-weight: 400; color: var(--text-muted); margin-left: 6px; font-size: .8rem; }
.desk-bv-sort {
  font-size: .8rem; font-weight: 500; color: var(--text);
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 6px 10px; background: var(--bg); cursor: pointer; outline: none;
}
.desk-bv-list-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid #f5f5f5;
  transition: background .12s; cursor: default;
}
.desk-bv-list-row:last-of-type { border-bottom: none; }
.desk-bv-list-row:hover { background: var(--bg); }
.desk-bv-list-thumb {
  width: 58px; height: 58px;
  border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.desk-bv-list-thumb img { width: 100%; height: 100%; object-fit: cover; }
.desk-bv-list-thumb [data-lucide] { width: 24px; height: 24px; stroke-width: 1.8; }
.desk-bv-list-info { flex: 1; min-width: 0; }
.desk-bv-list-naam { font-size: .92rem; font-weight: 700; color: var(--text); }
.desk-bv-list-cat { font-size: .76rem; color: var(--text-muted); margin: 2px 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.desk-bv-list-loc {
  display: flex; align-items: center; gap: 3px;
  font-size: .72rem; color: var(--text-muted);
}
.desk-bv-list-loc [data-lucide] { width: 9px; height: 9px; stroke-width: 2.5; flex-shrink: 0; }
.desk-bv-list-right { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; flex-shrink: 0; }
.desk-bv-list-stars {
  display: flex; align-items: center; gap: 3px;
  font-size: .82rem; font-weight: 700; color: var(--text);
}
.desk-bv-list-actions { display: flex; gap: 6px; }
.desk-bv-list-btn {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .12s;
}
.desk-bv-list-btn:hover { background: var(--green-light); border-color: var(--green); }
.desk-bv-list-btn [data-lucide] { width: 14px; height: 14px; stroke-width: 2; color: var(--green); }
.desk-bv-noresult {
  padding: 32px 18px; color: var(--text-muted); font-size: .85rem;
  justify-content: center; align-items: center; gap: 8px;
}
.desk-bv-noresult [data-lucide] { width: 18px; height: 18px; stroke-width: 1.8; }

/* Sidebar */
.desk-bv-sidebar { display: flex; flex-direction: column; gap: 16px; }
.desk-bv-cta-card {
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 1px 5px rgba(0,0,0,.06); border: 1px solid var(--border);
}
.desk-bv-cta-card__icon {
  width: 48px; height: 48px; background: var(--green-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.desk-bv-cta-card__icon [data-lucide] { width: 24px; height: 24px; color: var(--green); stroke-width: 1.8; }
.desk-bv-cta-card__title { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.desk-bv-cta-card__text { font-size: .78rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.desk-bv-cta-card__btn {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  background: var(--green); color: #fff; font-size: .84rem; font-weight: 700;
  padding: 11px 16px; border-radius: 10px; text-decoration: none;
  transition: opacity .15s;
}
.desk-bv-cta-card__btn:hover { opacity: .9; }
.desk-bv-cta-card__btn [data-lucide] { width: 14px; height: 14px; stroke-width: 2.5; }

/* Nav progress bar + tap feedback */
#nav-progress { position:fixed;top:0;left:0;right:0;height:3px;z-index:9999;background:transparent;pointer-events:none;transition:opacity .3s; }
#nav-progress.loading { background:linear-gradient(90deg,var(--green) 0%,#34d399 60%,var(--green) 100%);background-size:200% 100%;animation:navprog 1.2s linear infinite; }
#nav-progress.done { background:var(--green);opacity:0; }
@keyframes navprog { 0%{background-position:100% 0} 100%{background-position:-100% 0} }
.bottom-nav a.tapped { transform:scale(.92); }
