/* =========================================================
   Actief65+ clone - layout.css
   Header, secties, grids, footer
   Maten gemeten op actief65plus.nl bij 1440px
   ========================================================= */

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 20;
}

.header-topbar {
  background: var(--color-sky);
  height: 44px;
}

.header-topbar .container {
  height: 44px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 21px;
}

.topbar-phone {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 0 13px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 27px;
}

.topbar-email {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-blue);
}

.header-main {
  background: var(--color-white);
  height: var(--header-main-height);
}

.header-main .container {
  height: var(--header-main-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Sticky gedrag: bron zet de hoofdrij op position:fixed zodra de topbar uit beeld is */
.header-main.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.header-spacer {
  display: none;
  height: var(--header-main-height);
}

.header-spacer.is-active {
  display: block;
}

.site-logo img {
  width: 130px;
  height: auto;
}

.main-nav > ul {
  display: flex;
  align-items: center;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 20px;
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.main-nav > ul > li:nth-child(1) > a { color: var(--color-orange); }
.main-nav > ul > li:nth-child(2) > a { color: var(--color-green); }
.main-nav > ul > li:nth-child(3) > a,
.main-nav > ul > li:nth-child(4) > a,
.main-nav > ul > li:nth-child(5) > a { color: var(--color-blue); }

.main-nav .sub-arrow svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--color-white);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  z-index: 30;
}

.main-nav .sub-menu a {
  color: var(--color-blue);
}

.main-nav .sub-menu a:hover {
  background: var(--color-mist);
}

.main-nav li:hover > .sub-menu,
.main-nav li.is-open > .sub-menu {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-btn {
  display: flex;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--color-blue);
}

.search-btn svg {
  width: 20px;
  height: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-blue);
}

/* ---------- Hero ---------- */
.hero {
  height: 700px;
  overflow: hidden;
}

.hero .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.hero-copy {
  flex: 0 0 615px;
  max-width: 615px;
}

.hero-copy h1 {
  margin-bottom: 25px;
}

.hero-copy .hero-intro {
  margin-bottom: 30px;
}

.hero-copy .check-list {
  margin-bottom: 24px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-gallery {
  flex: 0 0 615px;
  max-width: 615px;
  height: 700px;
  display: flex;
  gap: 15px;
  overflow: hidden;
}

.hero-col {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: hero-scroll 28s linear infinite;
}

.hero-col--reverse {
  animation-direction: reverse;
}

.hero-col img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

@keyframes hero-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-948px); } /* 3 x (300 + 16) */
}

/* ---------- Partner logos ---------- */
.partner-logos .container {
  height: 74px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.partner-logos img {
  width: auto;
}

.partner-logos img:nth-child(1) { height: 38px; }
.partner-logos img:nth-child(2) { height: 74px; }
.partner-logos img:nth-child(3) { height: 56px; }

/* ---------- Service cards ---------- */
.service-cards {
  background: var(--color-mist);
  padding: 80px 0;
}

.service-cards .section-heading {
  text-align: center;
  max-width: 705px;
  margin: 0 auto 35px;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* ---------- Split secties (features / cta) ---------- */
.split {
  display: flex;
  align-items: stretch;
}

.split__photo {
  flex: 0 0 485px;
  max-width: 485px;
  position: relative;
  overflow: hidden;
}

.split__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 80px 80px 80px 80px;
}

.split__content .section-heading p {
  margin-top: 30px;
}

.split__content .btn {
  align-self: flex-start;
}

/* Kandidaten-sectie: content links (800px), badge rechtsonder */
.candidate-features .container--wide {
  display: flex;
  align-items: stretch;
}

.candidate-features .features-col {
  flex: 0 0 800px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 80px 80px 80px 0;
}

.candidate-features .features-col .section-heading p {
  margin-top: 30px;
}

.candidate-features .badge-col {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}

.candidate-features .badge-col img {
  width: 260px;
  height: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 24px;
}

.features-grid--tight {
  gap: 16px 24px;
}

.candidate-features .btn,
.employer-features .btn {
  align-self: flex-start;
}

/* ---------- Quote ---------- */
.quote {
  background: var(--color-mist);
  padding: 90px 0;
}

.quote .container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.quote__photo {
  flex: 0 0 258px;
}

.quote__photo img {
  width: 258px;
  height: 258px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.quote__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.quote__text {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
}

.quote__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quote__author {
  padding-right: 20px;
}

.quote__author h3 {
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2px;
}

.quote__author p {
  font-size: var(--fs-base);
  line-height: 1.2;
}

.quote__logo img {
  height: 41px;
  width: auto;
}

/* ---------- Interviews ---------- */
.interviews {
  background: var(--color-mist);
  padding: 80px 0;
}

.interviews .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.interviews h2 {
  text-align: center;
}

.interviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  align-items: stretch;
}

/* ---------- Stats (jubileum) ---------- */
.stats {
  padding: 80px 0;
}

.stats .container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.stats__copy {
  flex: 0 0 600px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats__copy p {
  max-width: 420px;
}

.stats__numbers {
  flex: 0 0 600px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats__row {
  display: flex;
  gap: 20px;
}

.stats__row .stat {
  flex: 1;
}

.stats__numbers .btn {
  align-self: flex-start;
}

.stats--top {
  padding: 80px 0 0;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--color-mist);
}

.cta-banner .split__content {
  padding: 80px 80px 80px 80px;
}

/* ---------- Contact ---------- */
.contact {
  padding: 80px 0;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ---------- Footer ---------- */
.footer-top {
  background: var(--color-sky);
}

.footer-top .container--wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 15px;
  gap: 40px;
}

.footer-logo img {
  width: 250px;
  height: auto;
}

.footer-newsletter {
  flex: 0 0 429px;
  max-width: 429px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-newsletter h6 {
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-white);
}

.footer-main {
  background: var(--color-mist);
}

.footer-main .container--wide {
  display: flex;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-col {
  flex: 0 0 310px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col--first {
  gap: 50px;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col h4 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 28px;
  color: var(--color-blue);
}

.footer-col h4.is-orange { color: var(--color-orange); }
.footer-col h4.is-green { color: var(--color-green); }

.footer-links li {
  padding-bottom: 4px;
}

.footer-links li:last-child {
  padding-bottom: 0;
}

.footer-links a {
  display: block;
  font-size: 15px;
  line-height: 15px;
  color: var(--color-blue);
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-trustpilot {
  width: 177px;
  height: auto;
}

.footer-bottom {
  background: var(--color-mist);
  padding-bottom: 5px;
}

.footer-bottom ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  font-size: 15px;
  line-height: 25px;
  color: var(--color-blue);
}

/* ---------- Inner pages ---------- */
.breadcrumb-bar {
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
}

.page-hero {
  padding-top: var(--sp-4);
  padding-bottom: var(--sp-16);
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}

.page-hero p {
  max-width: 800px;
}

.section-heading--center {
  text-align: center;
  max-width: 705px;
  margin: 0 auto 35px;
}

.section-heading--center p {
  margin-top: 20px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-page .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.article-page .container {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.article-hero-image {
  max-width: 800px;
}

.article-hero-image img {
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-hero {
  background: var(--color-mist);
  padding: 60px 0;
}

.service-hero .container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}

.service-hero .hero-ctas {
  align-items: center;
}

.phone-link {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-blue);
}

.candidate-cta,
.employer-cta,
.interviews-cta {
  display: flex;
  margin-top: 30px;
}

/* ---------- Inner pages: hergebruikte homepage-blokken ---------- */
/* Feature-secties op subpagina's staan in een gewone .container met losse .feature-blokken */
.candidate-features > .container:not(.container--wide),
.employer-features > .container:not(.container--wide) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
  align-items: start;
}

.candidate-features > .container:not(.container--wide) > .section-heading,
.employer-features > .container:not(.container--wide) > .section-heading,
.candidate-features > .container:not(.container--wide) > .candidate-cta,
.employer-features > .container:not(.container--wide) > .employer-cta {
  grid-column: 1 / -1;
}

.candidate-features > .container:not(.container--wide) > .section-heading p,
.employer-features > .container:not(.container--wide) > .section-heading p {
  margin-top: 30px;
}

.feature > svg {
  height: 33px;
  width: auto;
  color: var(--color-blue);
}

.card:not(:has(.card__body)) {
  padding-bottom: 35px;
}

.card:not(:has(.card__body)) > a img {
  width: 100%;
  aspect-ratio: 407 / 230;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: 30px;
}

.card:not(:has(.card__body)) > h3,
.card:not(:has(.card__body)) > p {
  padding: 0 35px;
}

.card:not(:has(.card__body)) > h3 {
  margin-bottom: 20px;
}

.interview-card:not(:has(.interview-card__body)) {
  padding: 30px 25px 25px;
}

.interview-card:not(:has(.interview-card__body)) time {
  display: inline-block;
  border: 1px solid var(--color-sky);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-sky);
}

.interview-card:not(:has(.interview-card__body)) h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
}

.anniversary-stats-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section-heading > h2 + p {
  margin-top: 20px;
}

.service-cards .section-heading > h2 + p {
  margin-top: 20px;
}

.split__content .section-heading > h2 + p,
.candidate-features .features-col .section-heading > h2 + p {
  margin-top: 30px;
}

/* =========================================================
   Inner-page templates (gemeten op werkgevers/ en
   werkgevers/secretaresse-inhuren/)
   ========================================================= */

/* ---------- Foto-hero met blauw verloop (hub + service) ---------- */
.photo-hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.photo-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.photo-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}

.photo-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 100, 133, 0.6) 30%, rgba(0, 100, 133, 0) 100%);
}

.photo-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 50px;
}

.photo-hero__content {
  flex: 0 0 800px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.photo-hero__content h1,
.photo-hero__content p,
.photo-hero .breadcrumb,
.photo-hero .breadcrumb a {
  color: var(--color-white);
}

.photo-hero .breadcrumb {
  font-size: 15px;
  font-weight: 500;
  gap: 6px;
}

.photo-hero--hub {
  min-height: 490px;
}

.photo-hero--hub .container {
  padding-top: 100px;
  padding-bottom: 100px;
}

.photo-hero--service {
  min-height: 460px;
}

.photo-hero--service .container {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 460px;
}

.photo-hero__sub {
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: 1.2;
}

.btn--white {
  background: var(--color-white);
  color: var(--color-orange);
}

.btn--white:hover {
  background: var(--color-mist);
}

.btn--icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn--icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* USP's naast elkaar (service-hero) */
.usp-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 40px;
}

.usp-inline li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--color-green);
}

.usp-inline svg {
  width: 10px;
  height: 10px;
  fill: var(--color-green);
}

/* Tellers in service-hero */
.counters {
  display: flex;
  gap: 100px;
  margin-top: 8px;
}

.counter {
  display: flex;
  flex-direction: column;
}

.counter__number {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
}

.counter__label {
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--color-white);
}

/* ---------- Breadcrumb-balk (service-pagina) ---------- */
.breadcrumb-strip {
  background: var(--color-mist);
  padding: 10px 0;
}

.breadcrumb-strip .breadcrumb {
  font-size: 15px;
  font-weight: 500;
  color: #2563eb;
  gap: 6px;
}

.breadcrumb-strip .breadcrumb a {
  color: #2563eb;
}

/* ---------- Zwarte tekstblokken (service-pagina) ---------- */
.text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-block h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}

.text-block h2.is-bold {
  font-weight: 700;
}

.text-block p {
  font-size: var(--fs-base);
  line-height: 1.2;
  color: #000;
}

.text-block p + p {
  margin-top: -6px;
}

.text-block .btn {
  align-self: center;
  margin-top: 15px;
}

.text-block .btn--left {
  align-self: flex-start;
}

/* Voordelen-grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 14px;
}

.benefit {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 350px;
}

.benefit svg {
  width: 50px;
  height: 50px;
}

.benefit h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.benefit p {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--color-blue);
}

/* Processtappen (bron: eigen HTML-widget) */
.process-steps {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  width: 100%;
}

.process-steps .step {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-steps .step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2f63f4;
  color: var(--color-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.process-steps .step-title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  max-width: 200px;
  color: var(--color-text);
}

.process-steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 19px);
  width: calc(100% - 38px);
  height: 3px;
  background: #2f63f4;
  z-index: 1;
}

/* Vinkjeslijst in twee kolommen */
.check-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 20px;
}

.check-columns li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-base);
  color: var(--color-text);
}

.check-columns svg {
  width: 14px;
  height: 14px;
  fill: #ffc400;
  flex-shrink: 0;
}

/* Quote-band (service-pagina) */
.quote-band {
  background: var(--color-mist);
  border-radius: 10px;
  padding: 50px 20px;
}

.quote-band .quote-slide {
  display: none;
  align-items: center;
  gap: 60px;
}

.quote-band .quote-slide.is-active {
  display: flex;
}

.quote-band .quote-slide img {
  width: 256px;
  height: 256px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
}

.quote-band .quote__text {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  color: var(--color-blue);
}

.quote-band .quote__author h3 {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 2px;
}

.quote-band .quote__author p {
  font-size: var(--fs-base);
}

/* Loop-sectie (werkgevers aan het woord) */
.loop-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.loop-section h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  padding-top: 8px;
}

.loop-section > p {
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 40px;
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 5px;
}

.loop-section .btn {
  align-self: center;
  margin-top: 40px;
}

/* Kostenvergelijking */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.compare-box {
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.compare-box h6 {
  font-size: var(--fs-lg);
  font-weight: 600;
  line-height: 1.2;
}

.compare-box p {
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}

.compare-box--good {
  background: #c4f5e5;
}

.compare-box--good h6 {
  color: #1a6b4a;
}

.compare-box--bad {
  background: #f3b3b3;
}

.compare-box--bad h6 {
  color: #a32d2d;
}

/* FAQ met foto */
.faq-split {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.faq-split__photo {
  flex: 0 0 600px;
  max-width: 610px;
}

.faq-split__photo img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 10px;
}

.faq-split__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-split__body h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.faq-split__body h2.is-light {
  font-size: 30px;
  font-weight: 500;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--color-mist);
  border-radius: 10px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: #1f2124;
}

.accordion details summary::-webkit-details-marker {
  display: none;
}

.accordion details summary svg {
  width: 13px;
  height: 15px;
  fill: #1f2124;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.accordion details[open] summary svg {
  transform: rotate(180deg);
}

.accordion details .accordion__body {
  padding: 10px 16px 16px;
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--color-text);
}

.accordion details .accordion__body p {
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--color-text);
}

.accordion--round summary {
  border-radius: 25px;
  padding: 20px 25px 21px;
  font-size: var(--fs-base);
  font-weight: 400;
}

.accordion--round .accordion__body {
  padding: 20px 25px 25px;
}

/* Lead-band (service-pagina) */
.lead-band {
  background: var(--color-mist);
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lead-band h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.lead-band > p {
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin-bottom: 14px;
}

.lead-band__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.lead-band__row--wide {
  grid-template-columns: 1fr 298px;
  gap: 12px;
  margin-bottom: 0;
}

.lead-band input[type="text"],
.lead-band input[type="email"],
.lead-band input[type="tel"] {
  height: 42px;
  border-radius: 10px;
  border: 1px solid #666;
  padding: 8px 16px;
  font-size: var(--fs-base);
  background: var(--color-white);
  width: 100%;
}

.lead-band button {
  height: 43px;
  border-radius: 10px;
  border: 0;
  background: #ea580c;
  color: var(--color-white);
  font-size: var(--fs-lg);
  cursor: pointer;
}

/* Meer functies */
.more-functions {
  background: var(--color-mist);
  padding: 80px 0;
}

.more-functions .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.func-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  padding: 0 5px;
}

.func-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.func-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #d1d5db;
}

.func-card__body {
  background: #f3f4f6;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.func-card__body h3 {
  font-size: var(--fs-h4);
  font-weight: 600;
}

.func-card__body p {
  font-size: var(--fs-base);
  line-height: 1.4;
  color: var(--color-text);
}

.func-card__body .link-more {
  font-size: var(--fs-base);
  font-weight: 400;
  margin-top: auto;
  gap: 6px;
}

.func-card__body .link-more svg {
  width: 17px;
  height: 17px;
}

/* ---------- Werkgevers-hub: tekstkolom + zijkaart ---------- */
.hub-split {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 120px;
}

.hub-split__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hub-split__main h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}

.hub-split__main h3 + p {
  margin-top: -4px;
}

.hub-split__main p {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: #000;
}

.hub-split__main h3:not(:first-child) {
  margin-top: 20px;
}

.hub-split__main .btn {
  align-self: flex-start;
  margin-top: 15px;
}

.side-card {
  flex: 0 0 407px;
  max-width: 407px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.side-card h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.side-card p {
  font-size: var(--fs-base);
  line-height: 1.5;
  color: #000;
}

.side-card .form-field {
  margin-bottom: 0;
  gap: 4px;
}

.side-card .form-field label {
  font-weight: 400;
  color: var(--color-text);
}

.side-card .form-field input {
  height: 42px;
  border: 1px solid #666;
  border-radius: 10px;
  padding: 8px 16px;
}

.side-card .form-note {
  font-size: var(--fs-base);
  color: var(--color-text);
}

.side-card__link {
  text-align: center;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--color-blue);
}

/* Hero zonder foto (bron: afbeelding ontbreekt, alleen verloop) */
.photo-hero--gradient {
  min-height: 460px;
  background: linear-gradient(90deg, rgba(0, 100, 133, 0.6) 30%, rgba(0, 100, 133, 0) 100%), var(--color-mist);
}

.photo-hero--gradient .container {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 460px;
}

.photo-hero--gradient .photo-hero__content {
  flex: 1 1 auto;
  max-width: none;
}

.hub-split__main h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin-top: 20px;
}

.hub-split__main h2:first-child {
  margin-top: 0;
}

.hub-split__main h2.is-blue {
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--color-blue);
  margin-top: 0;
}

.hub-split__main ul.bullets {
  list-style: disc;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
}

.hub-split__main ul.bullets li {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: #000;
}

.side-card__image {
  width: 100%;
  height: auto;
}

.side-card .form-field input[type="date"] {
  width: 156px;
}

/* Vacature-blokken (overzicht) */
.vacancy-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.vacancy-box h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  color: var(--color-blue);
}

.vacancy-box p {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--color-blue);
}

/* ---------- Team (ons-team) ---------- */
.team-page {
  padding: 80px 0;
}

.team-page .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.team-page h1 {
  text-align: center;
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.team-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.team-card h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-blue);
}

.team-card .team-role {
  font-size: var(--fs-base);
  font-weight: 600;
  color: #000;
  margin-top: -14px;
}

.team-card p {
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--color-text);
}

.team-card a {
  font-size: var(--fs-base);
  color: var(--color-blue);
  text-decoration: none;
}

.team-card__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ---------- Contact (formulier + zijkaart) ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.contact-form .form-field {
  margin-bottom: 0;
  gap: 4px;
}

.contact-form .form-field label {
  font-weight: 400;
  color: var(--color-text);
}

.contact-form input,
.contact-form textarea {
  height: 42px;
  border: 1px solid #666;
  border-radius: 10px;
  padding: 8px 16px;
  width: 100%;
}

.contact-form textarea {
  height: 258px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

.hub-split__main .contact-intro {
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--color-text);
}

.side-card p.is-black {
  color: #000;
}

.side-card p.is-black a {
  color: var(--color-blue);
}

.side-card .btn {
  width: 100%;
}

.side-card__btn-center {
  align-self: center;
  width: auto;
}

.side-card__logos {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}

.side-card__logos img {
  height: auto;
}

/* ---------- Archief-pagina (nieuws / pers / interviews) ---------- */
.archive-page {
  padding: 80px 0;
}

.archive-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.archive-page h1 {
  text-align: center;
  margin-bottom: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px;
  width: 100%;
}

/* ---------- FAQ-pagina ---------- */
.faq-page {
  padding: 80px 0;
}

.faq-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq-page h1 {
  text-align: center;
}

.faq-page .faq-intro {
  max-width: 900px;
  text-align: center;
  color: #000;
  margin-bottom: 80px;
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.faq-column h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-column h2.is-green { color: var(--color-green); }
.faq-column h2.is-orange { color: var(--color-orange); }

.faq-column .accordion {
  gap: 15px;
  width: 100%;
}

.faq-column .btn {
  margin-top: 10px;
}

/* Klantcases met logo */
.client-stories {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 120px;
}

.client-story {
  display: flex;
  gap: 30px;
  align-items: center;
}

.client-story__logo {
  flex: 0 0 288px;
}

.client-story__logo img {
  width: 288px;
  height: auto;
}

.client-story__body h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 35px;
  color: #000;
  margin-bottom: 16px;
}

.client-story__body p {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: #000;
}

.client-stories .btn {
  align-self: flex-start;
}

/* Cases-pagina: zelfde image-box-lijst, meer ruimte */
.client-stories--cases {
  padding-top: 80px;
  gap: 32px;
}

.client-stories--cases h2 {
  margin-bottom: 8px;
}

.client-story__logo img {
  height: 200px;
  object-fit: contain;
  object-position: left center;
}

/* ---------- Formulierpagina's (inschrijven / vacature-werkgevers) ---------- */
.form-page {
  padding: 80px 0;
}

.form-page .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.form-page h1 {
  color: var(--color-blue);
}

.form-page__title--narrow {
  max-width: 886px;
}

.form-page__intro {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: #000;
}

.form-page__intro a {
  color: var(--color-blue);
}

/* Native nabouw van het ingesloten Interleave-formulier */
.embed-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.embed-form h2 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: #000;
}

.embed-form p,
.embed-form__small,
.embed-form__note {
  font-size: 15px;
  line-height: 1.5;
  color: #000;
}

.embed-form__body {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.embed-form__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.embed-form__badge {
  flex: 0 0 auto;
  padding-top: 20px;
}

.embed-form__badge img {
  width: 210px;
  height: auto;
}

.embed-form__note {
  margin-top: 10px;
}

.stepper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin-bottom: 4px;
}

.stepper li {
  display: flex;
  align-items: center;
  flex: 1;
}

.stepper li:last-child {
  flex: 0 0 auto;
}

.stepper li span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #b5b5b5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #8a8a8a;
  background: var(--color-white);
}

.stepper li.is-active span {
  background: var(--color-green);
  border-color: var(--color-green);
  color: var(--color-white);
}

.stepper li::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #cfcfcf;
}

.stepper li:last-child::after {
  display: none;
}

.embed-form__fields {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.embed-form__fields--stack {
  max-width: 640px;
}

.form-field--compact {
  gap: 4px;
  margin-bottom: 0;
}

.form-field--compact label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-blue);
}

.form-field--compact label abbr {
  color: #d0021b;
  text-decoration: none;
}

.form-field--compact input,
.form-field--compact select,
.form-field--compact textarea {
  height: 30px;
  width: 315px;
  max-width: 100%;
  padding: 4px 8px;
  border: 1px solid #cfd8dc;
  border-radius: 3px;
  background: #f4f4f4;
  font-size: 14px;
  font-family: inherit;
}

.form-field--compact select {
  width: 292px;
}

.form-field--compact textarea {
  height: 90px;
  width: 380px;
}

.form-field--xs input,
.form-field--xs select {
  width: 60px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
}

.embed-form .btn--small {
  padding: 6px 14px;
  font-size: 15px;
  border-radius: 4px;
}

/* ---------- Single interview / blogpost ---------- */
.post-hero {
  background: var(--color-mist);
  padding: 80px 0;
}

.post-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.post-hero__head {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.post-hero__breadcrumb {
  font-size: 15px;
  font-weight: 500;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--color-text);
}

.post-hero__breadcrumb a {
  color: var(--color-text);
}

.post-hero__head h1 {
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.share-icons {
  display: flex;
  gap: 12px;
}

.share-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
}

.share-icons svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.post-hero__image {
  width: 100%;
}

.post-hero__image img {
  width: 100%;
  aspect-ratio: 32 / 15;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.post-body {
  padding: 80px 0;
}

.post-body__inner {
  max-width: 800px;
  margin: 0 auto;
}

.post-body__inner p {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: #000;
  margin-bottom: 14.4px;
}

.post-body__inner p:last-child {
  margin-bottom: 0;
}

.post-body__inner img {
  display: block;
  width: 100%;
  height: auto;
}

.post-body__inner a {
  color: var(--color-blue);
}

.related-posts {
  background: var(--color-mist);
  padding: 80px 0;
}

.related-posts .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.related-posts h2 {
  text-align: center;
}

/* ---------- Archief-varianten ---------- */
.archive-page__intro {
  font-size: var(--fs-lg);
  line-height: 1.5;
  color: #000;
  text-align: center;
  margin-top: -10px;
  margin-bottom: 20px;
}

.archive-page__intro a {
  color: var(--color-blue);
  text-decoration: underline;
}

.news-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.news-grid--two .interview-card__image img {
  aspect-ratio: 624 / 295;
}

/* ---------- Onze samenwerkingen ---------- */
.candidate-features--intro .features-col {
  gap: 0;
}

.stories-split {
  background: var(--color-mist);
}

.stories-split .container--wide {
  display: flex;
  align-items: flex-start;
}

.stories-split__col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 80px 80px 80px 0;
}

.stories-split__col h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-blue);
}

.stories-split__col p {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: #000;
}

/* Hub-hero met volle breedte (AOW-artikelen) */
.photo-hero__content--full {
  flex: 1 1 auto;
  max-width: none;
}

.hub-split__main a:not(.btn) {
  color: var(--color-blue);
  text-decoration: underline;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .hero-copy,
  .hero-gallery {
    flex: 1 1 50%;
    max-width: none;
  }

  .hero-gallery {
    justify-content: flex-end;
  }

  .candidate-features .features-col {
    flex: 1 1 auto;
    max-width: none;
  }

  .stats__copy,
  .stats__numbers {
    flex: 1 1 50%;
    max-width: none;
  }

  .footer-col {
    flex: 1 1 calc(50% - 10px);
    max-width: none;
  }

  .footer-main .container--wide {
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  .main-nav.is-open > ul {
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-4) var(--container-pad);
  }

  .main-nav.is-open .sub-menu {
    position: static;
    box-shadow: none;
    padding-left: var(--sp-4);
  }

  .nav-toggle {
    display: flex;
  }

  .search-btn {
    display: none;
  }

  .hero {
    height: auto;
    padding: 40px 0;
  }

  .hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .hero-gallery {
    height: 320px;
    width: 100%;
    max-width: none;
    justify-content: flex-start;
  }

  .hero-col {
    animation: none;
  }

  .split {
    flex-direction: column;
  }

  .split__photo {
    flex: 0 0 auto;
    max-width: none;
    height: 360px;
  }

  .split__content,
  .cta-banner .split__content,
  .candidate-features .features-col {
    padding: 60px var(--container-pad);
  }

  .candidate-features .container--wide {
    flex-direction: column;
    padding: 0;
  }

  .candidate-features .badge-col {
    justify-content: flex-end;
    padding: 0 var(--container-pad) 40px;
  }

  .service-cards-grid,
  .interviews-grid,
  .grid-3,
  .grid-4,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats .container,
  .quote .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-page .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top .container--wide {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-newsletter {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .photo-hero__content {
    flex: 1 1 auto;
    max-width: none;
  }

  .counters {
    gap: 40px;
  }

  .hub-split {
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .side-card {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }

  .faq-split {
    flex-direction: column;
    gap: 40px;
  }

  .faq-split__photo {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }

  .faq-split__photo img {
    height: 360px;
  }

  .loop-grid,
  .func-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-band__row {
    grid-template-columns: 1fr 1fr;
  }

  .lead-band__row--wide {
    grid-template-columns: 1fr;
  }

  .client-story {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-band .quote-slide.is-active {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .photo-hero--hub,
  .photo-hero--service {
    min-height: 0;
  }

  .photo-hero--hub .container,
  .photo-hero--service .container {
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 0;
  }

  .counters {
    flex-wrap: wrap;
    gap: 20px 40px;
  }

  .benefits-grid,
  .check-columns,
  .compare,
  .loop-grid,
  .func-grid,
  .lead-band__row {
    grid-template-columns: 1fr;
  }

  .text-block h2,
  .faq-split__body h2,
  .lead-band h2,
  .loop-section h2 {
    font-size: 26px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 320px;
    gap: 40px 20px;
    padding-top: 20px;
  }

  .process-steps .step:not(:last-child)::after {
    display: none;
  }

  .lead-band {
    padding: 20px;
  }

  .header-topbar .container {
    justify-content: center;
    gap: 12px;
  }

  .topbar-email {
    display: none;
  }

  .hero-gallery {
    height: 220px;
    gap: 10px;
  }

  .hero-col {
    width: calc(50% - 5px);
  }

  .hero-col img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .partner-logos .container {
    justify-content: center;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }

  .service-cards-grid,
  .interviews-grid,
  .features-grid,
  .contact-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .interviews,
  .stats,
  .contact,
  .quote {
    padding: 50px 0;
  }

  .quote__text {
    font-size: 20px;
    line-height: 28px;
  }

  .stats__row {
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-bottom ul {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 0;
  }
}

/* ---------- Responsive: nieuwe templates ---------- */
@media (max-width: 1024px) {
  .embed-form__body,
  .stories-split .container--wide {
    flex-direction: column;
  }

  .stories-split__col {
    padding: 40px 0;
  }

  .news-grid--two {
    grid-template-columns: 1fr;
  }

  .post-hero__image img {
    aspect-ratio: 16 / 9;
  }

  .client-story {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .form-page,
  .post-hero,
  .post-body,
  .related-posts {
    padding: 50px 0;
  }

  .post-hero .container {
    gap: 40px;
  }

  .form-field--compact input,
  .form-field--compact select,
  .form-field--compact textarea {
    width: 100%;
  }

  .form-field--xs input,
  .form-field--xs select {
    width: 80px;
  }

  .stepper li span {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}
