/* ===================================================================
 * /www/style/flocks-feature.css
 *
 * Shared product/feature page styles. Used door de zes product-pagina's
 * die vanuit de footer Product-kolom gelinkt zijn:
 *   /www/berichten.php          (Berichten en DM's)
 *   /www/assistent.php          (Assistent)
 *   /www/agenda.php             (Agenda)
 *   /www/taken.php              (Taken)
 *   /www/dashboards.php         (Dashboards)
 *   /www/boodschappenlijstjes.php (Boodschappenlijstjes)
 *
 * Layered op /www/style/flocks.css. Editorial-toon (zoals
 * /admin/flocks/editorial.php), met genoeg blokken om elke feature-
 * pagina rijk genoeg in te richten zonder ad-hoc inline styles.
 *
 * Owned here:
 *   - .section-white            alternerende sectie-bg (cream zit al in flocks.css)
 *   - .feat-wrap / -wide        article max-width containers
 *   - .feat-body                paragraph + list + link typografie
 *   - .feat-figure              "type D" captioned figure (image + caption)
 *   - .feat-spotlight           side-by-side image + tekst hoogtepunt
 *   - .feat-trio                3-card grid (icoon + titel + body)
 *   - .feat-finalcta            full-width primary CTA-strook met cream/ghost knoppen
 * =================================================================== */


/* alternerende sectie-bg (flocks.css ships alleen .section-cream) */
.section-white { background: #FFFFFF; }


/* ============ ARTICLE WRAPPERS ============ */
.feat-wrap      { max-width: 720px;  margin: 0 auto; }
.feat-wrap-wide { max-width: 1000px; margin: 0 auto; }


/* ============ BODY TYPOGRAPHY ============ */
.feat-body p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 18px;
}
.feat-body p:first-child { margin-top: 0; }
.feat-body p:last-child  { margin-bottom: 0; }
.feat-body strong        { font-weight: 600; color: var(--ink); }
.feat-body em            { font-style: italic; color: var(--secondary); font-weight: 500; }
.feat-body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.feat-body a:hover { color: var(--secondary); }

/* Bullet list (oranje dot bullets) — gebruikt voor "ask the assistant"
   voorbeeld-rijtjes en andere opsommingen op product-pagina's. */
.feat-body ul {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-body ul:last-child { margin-bottom: 0; }
.feat-body li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}
.feat-body li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}


/* ============ TYPE D · CAPTIONED FIGURE ============ */
.feat-figure { margin: 0; }
.feat-figure-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}
.feat-figure figcaption {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.feat-figure figcaption strong { color: var(--ink); font-weight: 600; }
.feat-figure-credit {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--muted);
  opacity: 0.75;
}


/* ============ SPOTLIGHT (side-by-side image + text) ============ */
.feat-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .feat-spotlight { grid-template-columns: 1fr; gap: 36px; }
}
.feat-spotlight-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
}
.feat-spotlight-text { font-family: 'Inter', sans-serif; }
.feat-spotlight-text .feat-body p {
  font-size: 16px;
  margin-bottom: 16px;
}


/* ============ TRIO — 3-card grid ============ */
.feat-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .feat-trio { grid-template-columns: 1fr; gap: 18px; }
}
.feat-trio-card {
  background: #FFFFFF;
  border: 1.5px solid var(--cream);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-trio-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.feat-trio-card .icon .material-symbols-rounded {
  font-size: 24px;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.feat-trio-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.feat-trio-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
}


/* ============ FINAL CTA ============ */
.feat-finalcta {
  background: var(--primary);
  color: #FFFFFF;
  text-align: center;
}
.feat-finalcta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 14px;
}
@media (max-width: 600px) {
  .feat-finalcta h2 { font-size: 30px; }
}
.feat-finalcta p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 48ch;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.feat-finalcta-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.feat-finalcta-btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.15s;
}
.feat-finalcta-btn:hover { transform: translateY(-1px); }
.feat-finalcta-primary { background: var(--cream); color: var(--ink); }
.feat-finalcta-ghost   { background: transparent; color: #FFF; border: 1.5px solid rgba(255,255,255,0.4); }
