/* blog.css (website) */

:root{
  --rc-brand: #E25322;
  --rc-text:  #3A393A;
  --rc-sec-1: #A8B1B8;
  --rc-sec-2: #5D90BB;
  --rc-bg:    #E9DFD6;
  --rc-card:  #ffffff;
  --rc-border: rgba(58,57,58,.14);
  --rc-shadow: 0 12px 26px rgba(0,0,0,.06);

  --rc-pill-bd: rgba(58,57,58,.24);
  --rc-pill-tx: rgba(58,57,58,.86);
}

body{ color: var(--rc-text); }

/* Layout */
.blogLayoutWide{
  display: grid;
  grid-template-columns: 320px 1fr;
  grid-template-areas: "side main";
  gap: 28px;
  align-items: start;
}
.blogSide{
  grid-area: side;
  position: sticky;
  top: calc(var(--hdrH) + 18px);
  align-self: start;
}
.blogMain{ grid-area: main; }

/* ✅ meer ruimte onderaan zodat laatste sectie niet tegen footer plakt */
.blogMain{ padding-bottom: 56px; }

@media (max-width: 980px){
  .blogLayoutWide{
    grid-template-columns: 1fr;
    grid-template-areas: "main" "side";
  }
  .blogSide{ position: static; top: auto; }
  .blogMain{ padding-bottom: 40px; }
}

/* Inputs / buttons */
.blogInput,.blogSelect{
  height:40px;
  border:1px solid rgba(58,57,58,.16);
  border-radius:12px;
  padding:0 12px;
  background:#fff;
  min-width:220px;
  color: var(--rc-text);
}

.blogBtn{
  height:40px;
  border-radius:12px;
  border:1px solid rgba(58,57,58,.16);
  padding:0 14px;
  background:#fff;
  cursor:pointer;
  font-weight:700;
  color: var(--rc-text);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.blogBtn:hover{ border-color: rgba(226,83,34,.55); }
.blogBtn.ghost{ background:transparent; }
.blogBtn:disabled{opacity:.5;cursor:not-allowed}

/* Sidebar cards */
.sideCard{
  background: var(--rc-card);
  border: 1px solid rgba(58,57,58,.12);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
}
.sideCard h3{margin:0 0 10px;font-size:14px;color: var(--rc-text);}

.sideHead{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.sideMiniBtn{
  border: 1px solid rgba(58,57,58,.18);
  background: transparent;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  font: inherit;
  color: var(--rc-text);
}
.sideMiniBtn:hover{ border-color: rgba(226,83,34,.55); color: var(--rc-brand); }

.sideList{ display:flex; flex-direction: column; gap: 8px; }

.sideCatBtn{
  width: 100%;
  text-align: left;
  border: 1px solid rgba(58,57,58,.14);
  background: transparent;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font: inherit;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  color: var(--rc-text);
}
.sideCatBtn:hover{ border-color: rgba(226,83,34,.50); }
.sideCatBtn.is-active{
  border-color: rgba(226,83,34,.70);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.sideCatBtn.is-active .sideCatName{ color: var(--rc-brand); font-weight: 800; }
.sideCatCount{ opacity: .65; font-size: 12px; }

.sideSearch{ display:flex; gap:10px; }
.sideSearch .blogInput{ flex: 1; min-width: 0; }

/* Sections */
.blogSections{ display:flex; flex-direction: column; gap: 26px; }

/* ✅ extra onderruimte (bovenop blogMain padding) */
.blogSections{ padding-bottom: 60px; }

.blogSection{
  padding-top: 18px;
  border-top: 1px solid rgba(58,57,58,.18);
}

.blogSectionHead{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.blogSectionTitle{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 18px;
  margin: 0;
  color: var(--rc-text);
}
.blogSectionTitle:before{
  content:"";
  display:inline-block;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background: var(--rc-brand);
}

.blogViewAll{
  position: relative;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  color: var(--rc-text);
  opacity: .9;
  padding: 4px 0;
}
.blogViewAll:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0%;
  height:2px;
  background: var(--rc-brand);
  transform: translateX(-50%);
  transition: width .18s ease;
}
.blogViewAll:hover{ color: var(--rc-brand); opacity: 1; }
.blogViewAll:hover:after{ width: 100%; }

/* Cards */
.blogGrid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

/* ✅ betere responsive: 3 -> 2 -> 1 (jouw oude 1100px=1 kolom was te vroeg) */
@media (max-width: 1100px){
  .blogGrid3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px){
  .blogGrid3{ grid-template-columns: 1fr; }
}

.blogCard{
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(58,57,58,.12);
  background: #fff;
  box-shadow: var(--rc-shadow);
  display:flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;

  /* ✅ hover smooth (transition hoort hier, niet alleen op :hover) */
  transition: transform .18s ease, box-shadow .18s ease;
}
.blogCard:hover{
  transform: translateY(-2px);
}

/* ✅ MEDIA FIX: zorgt dat img nooit de card “open duwt” of overlap veroorzaakt */
.blogCardMedia{
  background: #eee;
  aspect-ratio: 16 / 9;

  /* belangrijk voor <img> */
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* ✅ DIT WAS DE MISSENDE SLEUTEL: img forced cover */
.blogCardMedia img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ STABIELE CARD FOOTER */
.blogCardBody{
  padding: 14px 14px 62px; /* vaste ruimte voor dock */
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
}
.blogKicker{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--rc-brand);
  margin-bottom: 8px;
}
.blogTitle{
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--rc-text);
}
.blogMeta{
  font-size: 13px;
  opacity: .78;
  color: var(--rc-text);
}

/* datum links-onder */
.blogDate{
  position: absolute;
  left: 14px;
  bottom: 14px;
}

/* dock rechts-onder (altijd) */
.blogStatsDock{
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  white-space: nowrap;
}

/* ✅ view pill: neutraal */
.pillStat{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--rc-pill-bd);
  background: #fff;
  color: var(--rc-pill-tx);
  line-height: 1;
}
.pillIcoEye{
  font-size: 13px;            /* zelfde basis als voorheen */
  line-height: 1;
  display: inline-block;      /* nodig voor transform */
  transform: translateY(-1px) scale(1.18);  /* alleen icoon groeit */
  transform-origin: center;
}

.pillNum{
  font-size: 12px;
  font-weight: 800;
}

/* ✅ extra neutral force */
.pillView{
  border-color: rgba(58,57,58,.20) !important;
  color: rgba(58,57,58,.75) !important;
  background: #fff;
}
.pillView .pillIcoEye,
.pillView .pillNum{
  color: rgba(58,57,58,.75) !important;
}

/* Like button */
.likeBtn{
  display:inline-flex;
  gap: 8px;                 /* ✅ gelijk aan pillStat */
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 6px 10px;        /* ✅ gelijk aan pillStat */
  border: 1px solid var(--rc-brand);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: var(--rc-brand);
  line-height: 1;
}

/* hartje terug naar oud formaat */
.likeBtn .likeIcon{
  font-size: 13px;          /* was 18px */
  transform: translateY(-1px);
  line-height: 1;
}

.likeBtn .likeCount{
  font-size: 12px;          /* ✅ gelijk aan pillNum */
  font-weight: 800;
  line-height: 1;
}

.likeBtn:hover{ box-shadow: 0 8px 18px rgba(226,83,34,.14); }

.likeBtn.is-liked{
  background: var(--rc-brand);
  color: #fff;
  border-color: var(--rc-brand);
}

.likeBtn:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(226,83,34,.22);
}

/* Recent posts */
.sidePosts{ display:grid; gap: 10px; min-width: 0; }
.sidePost{ padding: 8px 0; border-top: 1px solid rgba(58,57,58,.12); min-width: 0; }

.sidePostTitle{
  font-weight: 800;
  font-size: 13px;
  line-height: 1.25;
  color: var(--rc-text);

  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  word-break: break-word;
}

.sidePostDate{ font-size: 11px; margin-top: 4px; opacity: .7; color: var(--rc-text); }

/* CTA */
.blogCTA{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(58,57,58,.12);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}

/* ✅ CTA media */
.blogCTA .ctaMedia{
  min-height: 240px;
  background: rgba(58,57,58,.06);
  position: relative;
  overflow: hidden;
}
/* oude video classes mogen blijven bestaan */
.ctaVideo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
}
.ctaVideoFallback{
  position:absolute;
  inset:0;
  background: rgba(58,57,58,.08);
  display:none;
}
.ctaMedia.is-fallback .ctaVideo{ display:none; }
.ctaMedia.is-fallback .ctaVideoFallback{ display:block; }

/* ✅ nieuwe afbeelding laag */
.ctaImage{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-size: cover;
  background-position: center;
}

.blogCTA .ctaBody{
  padding: 22px;
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.blogCTA h3{
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  color: var(--rc-text);
}
.blogCTA p{ margin: 0; opacity: .85; color: var(--rc-text); }

/* CTA buttons */
.ctaBtns{
  display:flex;
  gap:10px;
  flex-wrap: nowrap;
}
.blogCTA .ctaBtn{
  flex: 1;
  min-width: 0;
  font-weight: 600;
}
@media (max-width: 900px){
  .blogCTA{ grid-template-columns: 1fr; }
  .ctaBtns{ flex-wrap: wrap; }
  .blogCTA .ctaBtn{ flex: 1 1 100%; }
}

/* Modal base */
.rcModal{ position: fixed; inset: 0; display:none; z-index: 9999; }
.rcModal.is-open{ display:block; }
.rcModalBackdrop{ position:absolute; inset: 0; background: rgba(0,0,0,.55); }

/* Prevent layout shift when modal opens - reserve scrollbar space */
html.rcModal-open,
body.rcModal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

.rcModalPanel{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 24px));
  max-height: calc(100vh - 160px);
  overflow: auto;
  background:#fff;
  border-radius: 16px;
  border: 1px solid rgba(58,57,58,.16);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  padding: 18px;
}

/* close */
.rcModalClose{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(58,57,58,.18);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  z-index: 10;
}
.rcModalClose:hover{ border-color: rgba(226,83,34,.55); color: var(--rc-brand); }

.rcModalTitle{ margin: 0; font-size: 20px; }
.rcModalSub{ margin: 6px 0 16px; opacity: .8; }

.rcModalForm{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

/* Verklein de padding van de button */
.rcModalForm .blogBtn{
  padding: 8px 14px;  /* kleine wijziging in padding */
}

// Verandering voor formulier sluiten na bevestigen (nieuwsbrief en gesprek)
setTimeout(() => {
  close();  // sluit het formulier pas na 900ms
}, 1500);

.rcField span{
  display:block;
  font-size: 13px;
  opacity: .85;
  margin-bottom: 6px;
}

.rcField input{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(58,57,58,.18);
  padding: 12px 12px;
  font: inherit;
  color: var(--rc-text);
}

.rcModalFineprint{
  margin: 0;
  font-size: 12px;
  opacity: .7;
}

/* Plan gesprek modal layout */
.rcTalkPanel{ width: min(720px, calc(100vw - 24px)); }
.rcTalkGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rcTalkFull{ grid-column: 1 / -1; }

.rcCheckRow{
  display:flex;
  gap: 10px;
  align-items: flex-start;
}
.rcCheckRow input{ width:auto; margin-top: 2px; }

.rcTalkActions{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.rcTalkHint{ font-size: 12px; opacity: .85; }

/* =========================
   ✅ POST MODAL LAYOUT (JOUW EIS)
   HEADER = 2 kolom (links image, rechts header-info)
   BODY   = 1 kolom (volledige breedte)
   FOOTER = 2 kolom (links form, rechts comments + teller)
   ========================= */

/* ✅ Post modal: breder + grid */
.rcPostPanel{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: min(1200px, calc(100vw - 48px));
  max-height: calc(100vh - 160px);

  padding: 0;
  overflow: auto;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(58,57,58,.16);
  box-shadow: 0 24px 60px rgba(0,0,0,.25);

  /* ✅ grid: alleen header 2 kolom */
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "hero head"
    "body body"
    "foot foot";

  /* ✅ vaste header hoogte, zodat rechts niet “verschuift” */
  --pmHeroH: clamp(210px, 34vh, 340px);
}

/* HEADER LEFT: hero */
.pmHeroWrap{
  grid-area: hero;
  width: 100%;
  height: var(--pmHeroH);
  border-bottom: 1px solid rgba(58,57,58,.12);
  overflow: hidden;
  background:#f2f2f2;
}
.pmHero{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display:block;
}

/* HEADER RIGHT: titel + meta + stats “vast” */
.pmHead{
  grid-area: head;
  height: var(--pmHeroH);
  border-bottom: 1px solid rgba(58,57,58,.12);

  /* ✅ vaste binnenlayout */
  position: relative;
  padding: 18px 18px 66px; /* onderruimte voor datum + stats */
  overflow: hidden;
}

/* categorie + (ruimte) bovenin */
.pmKickerRow{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

/* titel direct onder categorie */
.pmTitle{
  margin: 0;
  padding: 6px 0 10px;
  font-size: 34px;
  line-height: 1.12;
  color: var(--rc-text);

  /* ✅ voorkomt “layout jump” bij extreme titels */
  max-width: 100%;
  word-break: break-word;
}

/* ✅ datum links-onder in header */
#pmMeta{
  position: absolute;
  left: 18px;
  bottom: 18px;
  font-size: 13px;
  opacity: .78;
  color: var(--rc-text);
}

/* ✅ views/likes rechts-onder in header */
.pmStats{
  position: absolute;
  right: 18px;
  bottom: 14px;
  display:flex;
  gap: 12px;
  align-items:center;
  font-size: 13px;
  white-space: nowrap;
}

/* BODY: altijd 1 kolom (volledige breedte) */
.pmScroll{
  grid-area: body;
  overflow: visible;
  padding: 16px 18px 18px;
}

/* content blijft 1 kolom */
.pmContent{
  font-size: 20px;
  line-height: 1.85;
  color: var(--rc-text);
}

.pmContent p,
.pmContent li{
  font-size: inherit;
  line-height: inherit;
}


/* ✅ media fix */
.pmContent img,
.pmContent video,
.pmContent iframe{
  max-width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  border: 1px solid rgba(58,57,58,.10);
  margin: 10px 0;
}
.pmContent img{
  max-height: 420px;
  object-fit: contain;
}

/* ✅ “Deel deze post op” dock (alleen CSS; verschijnt als jij in HTML een #pmShareDock hebt) */
#pmShareDock{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
  margin-top: 14px;

  position: sticky;
  bottom: 12px;            /* rechts-onder stabiel in BODY */
  float: right;            /* werkt ook zonder sticky in sommige layouts */
  z-index: 2;
}
#pmShareDock .pmShareTxt{
  font-size: 12px;
  font-weight: 800;
  opacity: .78;
}
#pmShareDock .pmShareBtn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(58,57,58,.18);
  background: #fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor: pointer;
}
#pmShareDock .pmShareBtn:hover{
  border-color: rgba(226,83,34,.55);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

/* FOOTER: comments area blijft 2 kolom zoals je wilde */
.pmComments{
  grid-area: foot;
  margin-top: 0;
  padding: 18px 18px 18px;
  border-top: 1px solid rgba(58,57,58,.12);
}

/* ✅ 2 kolommen: links formulier, rechts reacties */
.pmCommentGrid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: start;
}

/* titel in oranje + over beide kolommen */
.pmCommentsTitle{
  grid-column: 1 / -1;
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--rc-brand);
  font-weight: 800;
}

/* rechts: teller + lijst */
.pmCommentsCount{
  grid-column: 2 / 3;
  font-size: 13px;
  font-weight: 800;
  opacity: .9;
  margin-top: 2px;
  margin-bottom: 8px;
}
.pmCommentsList{
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  gap: 10px;

  max-height: 360px;
  overflow: auto;
  padding-right: 6px;
}

.pmCommentsEmpty{
  opacity: .75;
  font-size: 13px;
}

/* comment cards rechts */
.pmCommentItem{
  border: 1px solid rgba(58,57,58,.12);
  border-radius: 14px;
  padding: 12px;
  background:#fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.04);
}
.pmCommentTop{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.pmCommentName{ font-weight: 800; font-size: 12px; }
.pmCommentWhen{ font-size: 11px; opacity: .75; }
.pmCommentMsg{ font-size: 13px; opacity: .92; line-height: 1.45; }

/* fields */
.pmField span{ display:block; font-size: 12px; opacity:.8; margin-bottom: 6px; }
.pmField input,
.pmField textarea{
  width:100%;
  border-radius: 12px;
  border: 1px solid rgba(58,57,58,.18);
  padding: 12px;
  font: inherit;
  color: var(--rc-text);
  background:#fff;
}
.pmFieldFull{ grid-column: 1 / -1; }
.pmCommentActions{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pmCommentHint{ font-size: 12px; opacity: .8; }

/* ✅ responsive: header 2 kolom -> stacked op mobiel */
@media (max-width: 980px){
  .rcPostPanel{
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "head"
      "body"
      "foot";
    --pmHeroH: clamp(190px, 28vh, 280px);
  }
  .pmHead{
    height: auto;
    min-height: 0;
    padding-bottom: 60px;
  }
}

@media (max-width: 720px){
  .rcPostPanel{
    width: calc(100vw - 20px);
    max-height: calc(100vh - 140px);
    --pmHeroH: clamp(160px, 24vh, 230px);
  }
  .pmTitle{ font-size: 26px; line-height: 1.15; }
  .pmStats{ gap: 10px; }
  .pmScroll{ padding: 14px 14px 16px; }
  .pmComments{ padding: 16px 14px 16px; }

  /* footer grid naar 1 kolom op mobiel */
  .pmCommentGrid{ grid-template-columns: 1fr; }
  .pmCommentsCount{ grid-column: 1 / -1; }
  .pmCommentsList{ grid-column: 1 / -1; max-height: 320px; }
}

/* =========================
   EXTRA MOBILE RESPONSIVE PATCH
   Plak onder je bestaande responsive blok
   ========================= */

/* Tablet en kleiner */
@media (max-width: 980px){
  .blogLayoutWide{ gap: 18px; }
  .blogMain{ padding-bottom: 32px; }

  /* sidebar cards full width */
  .sideCard{ padding: 14px; }

  /* zoekveld + button netjes */
  .sideSearch{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .sideSearch .blogInput{ width: 100%; }
  .sideSearch .blogBtn{ width: 100%; }

  /* categorie buttons mogen wrappen */
  .sideCatBtn{
    white-space: normal;
  }
}

/* Mobiel */
@media (max-width: 720px){
  /* algemene ruimte */
  .blogMain{ padding-bottom: 26px; }
  .blogSections{ gap: 18px; padding-bottom: 40px; }

  /* sectie header: View All onder titel als het krap is */
  .blogSectionHead{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .blogViewAll{ padding: 2px 0; }

  /* cards: iets compactere typografie */
  .blogTitle{ font-size: 16px; }
  .blogCardBody{
    min-height: 170px;
    padding: 12px 12px 58px;
  }
  .blogDate{ left: 12px; bottom: 12px; }
  .blogStatsDock{ right: 12px; bottom: 12px; gap: 8px; }

  /* pills iets kleiner */
  .pillStat{ padding: 6px 9px; gap: 6px; }
  .likeBtn{ padding: 6px 9px; gap: 6px; }

  /* CTA: compacter op mobiel */
  .blogCTA .ctaBody{ padding: 16px; }
  .blogCTA h3{ font-size: 22px; }
  .blogCTA .ctaMedia{ min-height: 200px; }

  /* Recent posts: titel mag 2 regels (jij hebt clamp al) */
  .sidePostTitle{
    -webkit-line-clamp: 2;
  }
}

/* FORCE modal body font (inline styles overrulen) */
.pmContent,
.pmContent p,
.pmContent li,
.pmContent span{
  font-size: 15px !important;
  line-height: 1.9 !important;
}

/* Newsletter modal: ruimte tussen input en button */
#newsletterModal #nlSubmit{
  margin-top: 10px;          /* afstand vanaf het e-mail veld */
}

/* Als je button in een form zit en je wil dit ook generiek: */
#newsletterModal form#nlForm{
  display: flex;
  flex-direction: column;
  gap: 2px;                 /* nette spacing tussen alle velden */
}

/* Consent / fineprint kleiner */
.rcCheckRow span,
.rcModalFineprint,
.nlConsentText{
  font-size: 11px;
  line-height: 1.45;
  opacity: .75;
}

/* Privacy link placeholder styling */
.privacyLink{
  color: var(--rc-brand);
  font-weight: 600;
  text-decoration: underline;
}
.privacyLink:hover{
  text-decoration: none;
  opacity: .9;
}

