/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  RVD Webdesign — child theme with global typography and base styles.
 Author:       RVD Webdesign
 Author URI:   https://rvd-webdesign.nl/
 Template:     bricks
 Version:      0.1.0
 Text Domain:  bricks
*/

/* ============================================================================
   Base typography — mirrors the static-site defaults so Bricks pages inherit
   the same look without per-element overrides. Element-level styling in the
   Bricks builder still wins via the #brxe-{id} inline rules.
   ========================================================================== */
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--teal-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  color: var(--teal-deep);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}

h1 { font-size: clamp(40px, 5.4vw, 68px); line-height: 1.02; letter-spacing: -0.028em; }
h2 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.022em; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.018em; line-height: 1.2; }
h4 { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms var(--ease);
}
a:hover { color: var(--mint); }

/* Mint accent helper — italic Plus Jakarta on highlight words. */
.accent-mint {
  font-style: italic;
  color: var(--mint);
}

/* Display-font helper for hero headings. */
.font-display { font-family: var(--font-display); }

/* Eyebrow label (mint, uppercase, with leading rule). */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mint);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--mint);
}

/* Button interaction polish — applies to native Bricks buttons. */
.brxe-button {
  transition: transform 200ms var(--ease),
              background-color 200ms var(--ease),
              color 200ms var(--ease),
              box-shadow 200ms var(--ease);
}
.brxe-button:hover { transform: translateY(-1px); }
.brxe-button:active { transform: translateY(1px); }
.brxe-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 199, 169, 0.45);
}

/* ============================================================================
   Container max-width — match the static site's 1200px boxed container.
   Bricks .brxe-container default is `width: 1100px` (fixed). We force every
   container to behave as `width: 100% up to 1200px max`, centered.
   ========================================================================== */
.brxe-container {
  width: 100% !important;
  max-width: var(--container) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ============================================================================
   Mobile header behaviour — desktop nav hides, burger appears, off-canvas opens.
   ========================================================================== */
@media (max-width: 960px) {
  #brxe-hdrnav { display: none !important; }
  #brxe-ctaoff { display: none !important; }
}

body.menu-open { overflow: hidden; }


/* ============================================================
   Kennisbank pages — moved from static styles.css for the
   kennisbank_artikel CPT single + archive templates. Bricks
   wraps the article body in plain HTML inside post_content,
   so these classes need to load on every page that renders
   that content (handled by bricks-child loading on all
   Bricks routes).
   ============================================================ */


.project-shot img { width: 100%; height: auto; display: block; }

/* Project closing CTA */
.project-cta {
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}
.project-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 280px at 80% 0%, rgba(0,199,169,0.22), transparent 60%),
    radial-gradient(400px 240px at 20% 100%, rgba(0,199,169,0.12), transparent 60%);
  pointer-events: none;
}
.project-cta > * { position: relative; }
.project-cta h2 { color: var(--white); font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 12px; }
.project-cta p { color: rgba(255,255,255,0.78); margin: 0 0 24px; font-size: 16px; }

/* Next-project pointer */
.next-project {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
  margin-top: 64px;
  flex-wrap: wrap;
}
.next-project__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.next-project__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
  margin-top: 6px;
  display: block;
  transition: color 200ms var(--ease);
}
.next-project a:hover .next-project__title { color: var(--mint); }

/* ---------- Generic page header (non-home pages) ---------- */
.page-hero {
  background: var(--teal-deep);
  color: var(--white);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 100% 20%, rgba(0,199,169,0.18), transparent 60%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--mint); }
.page-hero .eyebrow::before { background: var(--mint); }
.page-hero h1 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; color: var(--white); font-size: clamp(36px, 4.5vw, 56px); }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 640px; margin-top: 18px; }
.page-hero .container { position: relative; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }

/* ============================================================
   Kennisbank — overview + article pages
   ============================================================ */

/* Overview hero */
.kb-hero {
  position: relative;
  background: var(--teal-deep);
  color: var(--white);
  padding: 160px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.kb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 80% 10%, rgba(0,199,169,0.22), transparent 60%),
    radial-gradient(600px 400px at 10% 80%, rgba(0,199,169,0.10), transparent 60%);
  pointer-events: none;
}
.kb-hero .container { position: relative; }
.kb-hero__lead {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-top: 16px;
}
.kb-hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
}
.kb-hero h1 em { color: var(--mint); font-style: normal; }

/* Article grid on overview */
.kb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
@media (max-width: 720px) {
  .kb-grid { grid-template-columns: 1fr; gap: 20px; }
}
.kb-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.kb-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 199, 169, 0.4);
}
.kb-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px;
}
.kb-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.kb-card__meta-sep {
  color: rgba(11, 60, 60, 0.28);
  font-weight: 400;
}
.kb-card__updated {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.kb-card__cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--mint-tint);
  color: var(--teal-deep);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.kb-card__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 12px;
}
.kb-card__lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--teal-text);
  margin: 0 0 24px;
  flex: 1;
}
.kb-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.01em;
}
.kb-card__cta .icon {
  width: 16px;
  height: 16px;
  transition: transform 200ms var(--ease);
}
.kb-card:hover .kb-card__cta .icon { transform: translateX(4px); }

/* Featured card */
.kb-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--teal-deep);
  color: var(--white);
  border-color: rgba(255,255,255,0.10);
}
.kb-card--featured .kb-card__body { padding: 44px 44px 40px; gap: 0; }
.kb-card--featured .kb-card__title { color: var(--white); font-size: clamp(26px, 3vw, 36px); }
.kb-card--featured .kb-card__lead { color: rgba(255,255,255,0.78); }
.kb-card--featured .kb-card__cta { color: var(--mint); }
.kb-card--featured .kb-card__meta { color: rgba(255,255,255,0.65); }
.kb-card--featured .kb-card__meta-sep { color: rgba(255,255,255,0.25); }
.kb-card--featured .kb-card__updated { color: rgba(255,255,255,0.65); }
.kb-card--featured .kb-card__cat {
  background: rgba(0,199,169,0.18);
  color: var(--mint);
}
.kb-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 12px 5px 10px;
  background: rgba(0,199,169,0.14);
  border: 1px solid rgba(0,199,169,0.35);
  border-radius: var(--radius-pill);
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.kb-card__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(0,199,169,0.18);
}

/* Featured visual — cost panel mockup */
.kb-card--featured .kb-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 48px;
  background:
    radial-gradient(420px 320px at 75% 25%, rgba(0,199,169,0.22), transparent 65%),
    linear-gradient(135deg, rgba(0,199,169,0.10), rgba(0,199,169,0.02));
  overflow: hidden;
  isolation: isolate;
}
.kb-card--featured .kb-card__visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(closest-side, rgba(0,199,169,0.18), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 800px) {
  .kb-card--featured { grid-template-columns: 1fr; }
  .kb-card--featured .kb-card__body { padding: 32px 28px 28px; }
  .kb-card--featured .kb-card__visual { padding: 32px 24px 36px; min-height: 280px; }
}

/* ---------- Cost panel mockup (in featured kennisbank card) ---------- */
.kb-cost-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(165deg, #0e3737 0%, #0a2e2e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    0 10px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  transform: rotate(-1.5deg);
  animation: dashboardFloat 8s ease-in-out infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .kb-cost-panel { animation: none; }
}
.kb-cost-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.kb-cost-panel__title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.kb-cost-panel__title small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  margin-top: 3px;
}
.kb-cost-panel__pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  background: rgba(0, 199, 169, 0.14);
  border: 1px solid rgba(0, 199, 169, 0.28);
  border-radius: 999px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.kb-cost-panel__pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 2px rgba(0, 199, 169, 0.18);
}
.kb-cost-panel__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kb-cost-panel__row { display: block; }
.kb-cost-panel__row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.kb-cost-panel__row-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.01em;
}
.kb-cost-panel__row-price {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.kb-cost-panel__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  display: block;
}
.kb-cost-panel__bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 199, 169, 0.55) 0%, var(--mint) 100%);
  border-radius: inherit;
  box-shadow: 0 0 12px rgba(0, 199, 169, 0.35);
}
.kb-cost-panel__footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}
@media (max-width: 540px) {
  .kb-cost-panel { padding: 18px 16px 16px; max-width: 320px; }
  .kb-cost-panel__title { font-size: 11px; }
}

/* Article page — hero */
.article-hero {
  position: relative;
  background: var(--teal-deep);
  color: var(--white);
  padding: 140px 0 60px;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 90% 10%, rgba(0,199,169,0.20), transparent 60%);
  pointer-events: none;
}
.article-hero .container { position: relative; max-width: 880px; }
.article-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
}
.article-hero__breadcrumb a {
  color: rgba(255,255,255,0.78);
  transition: color 200ms var(--ease);
}
.article-hero__breadcrumb a:hover { color: var(--mint); }
.article-hero__breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }
.article-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0 0 20px;
  max-width: 820px;
}
.article-hero__lead {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 720px;
  margin: 0;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 14px;
  color: rgba(255,255,255,0.68);
}
.article-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.article-meta__item svg { width: 16px; height: 16px; color: var(--mint); }
.article-meta__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* Article body */
.article-body {
  padding: 60px 0 80px;
  background: var(--white);
}
.article-body__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 0 72px;
  align-items: start;
}
.article-body__inner > .article-summary,
.article-body__inner > .article-content {
  grid-column: 1;
  min-width: 0;
}
@media (max-width: 980px) {
  .article-body__inner {
    grid-template-columns: 1fr;
    max-width: 760px;
    gap: 0;
  }
}

.article-toc {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .article-toc {
    grid-column: 1;
    grid-row: auto;
    position: static;
    max-height: none;
    overflow-y: visible;
    margin-bottom: 48px;
  }
}
.article-toc__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}
.article-toc ol {
  margin: 0;
  padding: 0;
  counter-reset: toc;
  list-style: none;
}
.article-toc li {
  counter-increment: toc;
  margin: 0;
  padding: 6px 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.article-toc li:first-child { border-top: 0; padding-top: 0; }
.article-toc li::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 12px;
  font-weight: 700;
  color: var(--mint-strong);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.article-toc a {
  color: var(--teal-text);
  font-weight: 500;
  font-size: 15px;
  transition: color 200ms var(--ease);
}
.article-toc a:hover { color: var(--mint-strong); }

.article-summary {
  position: relative;
  background: var(--mint-tint);
  border-left: 4px solid var(--mint);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 48px;
}
.article-summary__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-deep);
  background: rgba(0,199,169,0.18);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.article-summary p { margin: 0 0 8px; color: var(--ink); font-size: 16px; line-height: 1.65; }
.article-summary ul {
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
}
.article-summary ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}
.article-summary ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 2px;
  background: var(--mint-strong);
  border-radius: 2px;
}

.article-content { font-size: 17px; line-height: 1.75; color: var(--teal-text); }
.article-content h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 56px 0 16px;
  scroll-margin-top: 100px;
}
.article-content h2:first-of-type { margin-top: 0; }
.article-content h3 {
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  margin: 36px 0 12px;
  font-weight: 700;
}
.article-content p { margin: 0 0 18px; }
.article-content ul, .article-content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.article-content ul li, .article-content ol li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.article-content ul li::marker { color: var(--mint-strong); }
.article-content ol li::marker { color: var(--mint-strong); font-weight: 700; }
.article-content strong { color: var(--ink); font-weight: 700; }
.article-content a {
  color: var(--mint-strong);
  text-decoration: underline;
  text-decoration-color: rgba(0,199,169,0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 200ms var(--ease);
}
.article-content a:hover { text-decoration-color: var(--mint-strong); }
.article-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--mint);
  background: var(--paper);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

/* Comparison/data table */
.article-table-wrap { overflow-x: auto; margin: 28px 0 32px; }
.article-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 15px;
}
.article-table thead { background: var(--teal-deep); }
.article-table th {
  text-align: left;
  padding: 14px 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.article-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--hairline);
  vertical-align: top;
  color: var(--teal-text);
}
.article-table tr:first-child td { border-top: 0; }
.article-table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* Pull-out callout */
.callout {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
}
.callout__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mint-tint);
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.callout__icon svg { width: 20px; height: 20px; }
.callout p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink); }
.callout strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 15px; }

/* Inline mini CTA */
.inline-cta {
  margin: 40px 0;
  padding: 28px;
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0c4444 100%);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.inline-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 50%, rgba(0,199,169,0.25), transparent 60%);
  pointer-events: none;
}
.inline-cta__text { position: relative; }
.inline-cta strong { display: block; font-size: 20px; font-weight: 800; margin-bottom: 4px; color: var(--white); }
.inline-cta p { margin: 0; font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.5; }
.inline-cta .btn { position: relative; }
@media (max-width: 600px) {
  .inline-cta { grid-template-columns: 1fr; }
}

/* Author block */
.article-author {
  margin: 56px 0 0;
  padding: 28px;
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.article-author__avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.article-author__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.article-author__role {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.article-author p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--teal-text); }

/* Related articles */
.related-articles {
  background: var(--paper);
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
}
.related-articles__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.related-articles h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.related-articles__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.related-articles__link:hover { color: var(--mint-strong); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
@media (max-width: 600px) {
  .related-articles__head { flex-direction: column; align-items: flex-start; }
}



/* Static-site .btn classes (used inside text-basic HTML for kennisbank, related-articles, inline CTAs) */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; transition: transform 200ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease); white-space: nowrap; border: 1px solid transparent; }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(0, 199, 169, 0.45); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--mint); color: var(--teal-deep); box-shadow: var(--shadow-mint); }
.btn--primary:hover { background: var(--mint-strong); transform: translateY(-1px); }
.btn--dark { background: var(--teal-deep); color: var(--white); }
.btn--dark:hover { background: var(--teal-deeper); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.5); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--white); }
.btn--ghost-dark { background: transparent; color: var(--teal-deep); border-color: var(--teal-deep); }
.btn--ghost-dark:hover { background: var(--teal-deep); color: var(--white); }
.btn--lg { padding: 14px 30px; font-size: 14px; }
.btn .icon, svg.icon { width: 16px; height: 16px; }

/* Bricks wraps post-content in a div; flatten so .article-body__inner grid sees its grand-children as direct children */
.article-body__inner > .brxe-post-content { display: contents; }

/* ============================================================
   Projecten pages — moved from static styles.css for the
   project CPT single + archive templates.
   ============================================================ */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .project-grid { grid-template-columns: 1fr; gap: 24px; } }

.project-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
  text-decoration: none;
  color: inherit;
}
.project-card:hover {
  transform: scale(1.02);
  box-shadow:
    0 14px 32px rgba(0, 199, 169, 0.18),
    0 4px 10px rgba(9, 52, 52, 0.06);
  border-color: rgba(0, 199, 169, 0.5);
}

.project-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper);
}
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 600ms var(--ease);
}
.project-card:hover .project-card__media img { transform: scale(1.04); }

.project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,52,52,0) 60%, rgba(9,52,52,0.18) 100%);
  pointer-events: none;
}

.project-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

.project-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 700;
}
.project-card__meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(0,199,169,0.5);
}
.project-card__meta .branche { color: var(--muted); font-weight: 600; }

.project-card h3 { font-size: 22px; letter-spacing: -0.02em; margin: 0; }
.project-card__excerpt { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-deep);
}
.project-card__footer span { display: inline-flex; align-items: center; gap: 8px; }
.project-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--mint-tint);
  color: var(--mint);
  transition: background-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}
.project-card:hover .project-card__arrow {
  background: var(--mint);
  color: var(--teal-deep);
  transform: translateX(4px);
}

/* ---------- Project detail hero ---------- */
.project-hero {
  position: relative;
  background: var(--teal-deep);
  color: var(--white);
  padding: 150px 0 0;
  overflow: hidden;
  isolation: isolate;
}
.project-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 110% 0%, rgba(0,199,169,0.22), transparent 60%),
    radial-gradient(600px 400px at -10% 80%, rgba(0,199,169,0.10), transparent 60%);
  z-index: -1;
}

.project-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 70px;
}
@media (max-width: 960px) {
  .project-hero { padding: 130px 0 0; }
  .project-hero__inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 0; }
}

.project-hero__copy { padding-bottom: 12px; }
.project-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.project-hero__crumb a { color: var(--mint); }
.project-hero__crumb a:hover { color: var(--white); }

.project-hero__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.project-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mint);
  background: rgba(0,199,169,0.14);
  border: 1px solid rgba(0,199,169,0.3);
  border-radius: 999px;
}

.project-hero__title {
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--white);
  margin: 0 0 22px;
  max-width: 580px;
}
.project-hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 0 30px;
}

.project-hero__visual {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 -10px 60px rgba(0,199,169,0.15), 0 30px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 0;
  margin-bottom: -1px;
}
.project-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Mockup-variant binnen project-hero: compacter dan op de homepage zodat
   de visual qua hoogte beter matcht met de tekstkolom links. Geen floating
   cards op deze pagina, dus aspect-ratio is van de browser-frame zelf. */
.project-hero__mockup {
  aspect-ratio: auto;
  align-self: center;
  padding: 4% 2% 6%;
  max-width: 560px;
  justify-self: end;
  width: 100%;
}
.project-hero__mockup .browser-frame {
  transform: rotate(-1.2deg);
}
@media (max-width: 960px) {
  .project-hero__mockup { justify-self: stretch; max-width: none; padding: 6% 4%; }
}

/* Quick facts strip below hero */
.project-facts {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}
.project-facts__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
  gap: 24px;
}
.project-facts > .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.project-body > .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

@media (max-width: 760px) { .project-facts__inner { grid-template-columns: repeat(2, 1fr); padding: 20px 0; } }

.project-fact { display: flex; flex-direction: column; gap: 6px; }
.project-fact + .project-fact { padding-left: 24px; border-left: 1px solid rgba(255,255,255,0.10); }
@media (max-width: 760px) {
  .project-fact + .project-fact { border-left: 0; padding-left: 0; }
  .project-fact:nth-child(odd) { padding-right: 16px; border-right: 1px solid rgba(255,255,255,0.08); }
}
.project-fact small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.project-fact strong { font-size: 16px; color: var(--white); font-weight: 600; line-height: 1.4; }
.project-fact a { color: var(--mint); }
.project-fact a:hover { color: var(--white); }

/* Project body content */
.project-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) { .project-body { grid-template-columns: 1fr; gap: 24px; } }

.project-body__nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 880px) { .project-body__nav { position: static; flex-direction: row; flex-wrap: wrap; } }
.project-body__nav a {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-left: 2px solid var(--hairline);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
@media (max-width: 880px) {
  .project-body__nav a { border-left: 0; border-bottom: 2px solid var(--hairline); padding: 8px 14px; }
}
.project-body__nav a:hover { color: var(--teal-deep); border-color: var(--mint); }

.project-section + .project-section { margin-top: 56px; }
.project-section h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 16px;
}
.project-section p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--teal-text);
  margin: 0 0 16px;
}
.project-section p:last-child { margin-bottom: 0; }

.project-section__pull {
  border-left: 3px solid var(--mint);
  padding: 6px 0 6px 22px;
  margin: 28px 0;
  font-size: 19px;
  line-height: 1.5;
  color: var(--teal-deep);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.project-deliver {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 600px) { .project-deliver { grid-template-columns: 1fr; } }
.project-deliver li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--teal-text);
  font-weight: 500;
}
.project-deliver li::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint-tint) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300C7A9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 12px no-repeat;
}

.project-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 0;
}
@media (max-width: 760px) { .project-results { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .project-results { grid-template-columns: 1fr; } }
.project-result {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
}
.project-result strong { display: block; font-size: 30px; font-weight: 800; color: var(--teal-deep); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.project-result strong em { font-style: normal; color: var(--mint); }

/* Neutral variant: project-feiten i.p.v. performance-claims — iets bescheidener */
.project-results--neutral .project-result strong { font-size: 24px; font-weight: 700; }
.project-results--neutral .project-result strong em { font-weight: 600; }

/* Reading-friendly bullet list inside .project-section */
.project-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--teal-text);
}
.project-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint-tint) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300C7A9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 10px no-repeat;
}
.project-result span { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* Project showcase image */
.project-shot {
  position: relative;
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}
/* Flatten Bricks text-basic wrapper so .project-hero__inner grid applies + scale featured image */
.brxe-text-basic > .project-hero__inner { /* project-hero__inner-wrapper-flatten */ }
.project-hero__visual img { width: 100%; height: auto; display: block; border-radius: var(--radius-md); }


/* A11Y contrast fixes — ensure eyebrow + mint accents reach 4.5:1 on light backgrounds */
.eyebrow { color: #007a68 !important; }
.eyebrow::before { background: #007a68 !important; }
/* Specific overrides for inline-styled eyebrows */
span.eyebrow[style*="var(--mint)"] { color: #007a68 !important; }


/* A11Y contrast pass 2 */
/* Eyebrow span (any id ending in 'eb') on light backgrounds */
span[id$='eb'],span[id*='eyb'] { color: #007a68 !important; }
/* Em.accent-mint inside h2 on light backgrounds */
em.accent-mint { color: #007a68; }
/* Hero/footer eyebrows on dark backgrounds keep the mint (those use white parent) */
.brxe-section[id*='hersec'] span[id$='eb'], #brxe-pahsec span[id$='eb'] { color: var(--mint) !important; }


/* prevent horizontal scroll on iOS / fixed-element bleed */
html, body { overflow-x: clip; max-width: 100%; }


/* Pricing cards (service pages) */
.price-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,0.82);
  transition: transform 250ms var(--ease), border-color 250ms var(--ease), background-color 250ms var(--ease), box-shadow 250ms var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,199,169,0.5);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}
.price-card.is-featured {
  background: linear-gradient(180deg, rgba(0,199,169,0.10) 0%, rgba(0,199,169,0) 100%);
  border-color: rgba(0,199,169,0.55);
  box-shadow: 0 24px 48px rgba(0,199,169,0.18);
}
.price-card.is-featured:hover { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(0,199,169,0.24); }
.price-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--mint); color: var(--teal-deep);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,199,169,0.4);
  white-space: nowrap;
}
.price-card__name {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--mint); font-weight: 700;
  display: block;
}
.price-card__price {
  display: flex; align-items: baseline; gap: 6px; color: var(--white);
  margin: 0;
}
.price-card__price strong { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.price-card__price span { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }
.price-card__desc { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; line-height: 1.55; min-height: 6.3em; }
.price-card__features {
  list-style: none; padding: 18px 0 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.price-card__features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.5;
}
.price-card__features li::before {
  content: ""; flex: none;
  width: 18px; height: 18px; margin-top: 2px; border-radius: 50%;
  background: rgba(0,199,169,0.18) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300C7A9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 12px no-repeat;
}
.price-card__cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25);
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}
.price-card__cta:hover { background: rgba(255,255,255,0.08); border-color: var(--mint); color: var(--mint); transform: translateY(-1px); }
.price-card.is-featured .price-card__cta {
  background: var(--mint); color: var(--teal-deep); border-color: var(--mint);
  box-shadow: var(--shadow-mint);
}
.price-card.is-featured .price-card__cta:hover { background: var(--mint-strong); border-color: var(--mint-strong); color: var(--teal-deep); }

@media (max-width: 1100px) {
  .price-card__desc { min-height: 0; }
}

/* FORCE price-card */
body .brxe-block.price-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-lg); padding: 32px 30px 30px; gap: 16px; color: rgba(255,255,255,0.82); }
body .brxe-block.price-card.is-featured { background: linear-gradient(180deg, rgba(0,199,169,0.10) 0%, rgba(0,199,169,0) 100%); border-color: rgba(0,199,169,0.55); box-shadow: 0 24px 48px rgba(0,199,169,0.18); }

/* Price-card details toggle */
.price-card__features-wrap { display: contents; }
.price-card__more {
  margin-top: 4px;
}
.price-card__more summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mint);
  padding: 4px 0;
  user-select: none;
  transition: color 200ms var(--ease);
}
.price-card__more summary::-webkit-details-marker { display: none; }
.price-card__more summary:hover { color: var(--mint-strong); }
.price-card__more summary::after {
  content: '›';
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  transform: rotate(90deg);
  transition: transform 200ms var(--ease);
  color: var(--mint);
}
.price-card__more[open] summary::after { transform: rotate(-90deg); }
.price-card__more-label--open { display: none; }
.price-card__more[open] .price-card__more-label { display: none; }
.price-card__more[open] .price-card__more-label--open { display: inline; }
.price-card__features--extra { margin-top: 10px !important; border-top: 0 !important; padding-top: 0 !important; }

/* Contact form polish */
.brxe-form .form-subhead { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--ink); margin: 18px 0 6px; padding-top: 14px; border-top: 1px solid var(--hairline); letter-spacing: -0.01em; }
.brxe-form .form-subhead:first-child { padding-top: 0; border-top: 0; }
.brxe-form input[type="text"]:hover, .brxe-form input[type="email"]:hover, .brxe-form input[type="tel"]:hover, .brxe-form select:hover, .brxe-form textarea:hover { border-color: var(--mint-strong); }


/* Contact page signature card */
.cnt-sig { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--mint-tint); border: 1px solid rgba(0,199,169,0.18); border-radius: 12px; }
.cnt-sig__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-deep); color: var(--mint); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; flex: none; }
.cnt-sig strong { display: block; font-family: var(--font-display); font-weight: 600; color: var(--teal-deep); font-size: 14.5px; line-height: 1.25; }
.cnt-sig small { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }


/* project-card uniform clamps */
.project-card__meta { min-height: calc(11px * 1.6 * 1); }
.project-card__excerpt { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(15px * 1.55 * 3); }


/* next-project arrow + detail-page width fix */
.next-project__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--mint-tint);
  color: var(--mint);
  flex-shrink: 0;
  transition: background-color 220ms var(--ease), transform 220ms var(--ease);
}
.next-project a:hover .next-project__arrow,
a.next-project:hover .next-project__arrow { background: var(--mint); color: var(--white); transform: translateX(4px); }
#brxe-pcta, #brxe-pnxt { width: 100%; flex: 1 1 100%; max-width: 100%; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
