/* Gedeelde styling voor de voorbeeldoplossing-pagina's.
   Laadt NA site.css (tokens + basiscomponenten). */

.oplossing-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream); border-bottom: 1.5px solid var(--ink-15);
}
.oplossing-nav .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.oplossing-nav img { height: 36px; }
.terug-link {
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  color: var(--cocoa); text-decoration: none;
  border: 1.5px dashed var(--cocoa); border-radius: var(--r-pill);
  padding: 10px 18px; min-height: 44px; display: inline-flex; align-items: center; gap: 8px;
  transition: background 180ms ease;
}
.terug-link:hover { background: var(--mustard-tint); }
.terug-link:focus-visible { outline: 2px solid var(--petrol); outline-offset: 2px; }

.oplossing-kop { padding-top: var(--sp-9); padding-bottom: var(--sp-7); }
.oplossing-kop h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.05; margin: var(--sp-4) 0;
  max-width: 16ch; text-wrap: balance;
}
.oplossing-kop .lede { font-size: clamp(16px, 1.6vw, 19px); color: var(--cocoa-soft); max-width: 58ch; text-wrap: pretty; }

.strip { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); padding-bottom: var(--sp-9); }
@media (min-width: 760px){ .strip { grid-template-columns: 1fr 1fr; } }
.strip-stap {
  background: var(--paper); border: 1.5px solid var(--cocoa);
  border-radius: var(--r-4); box-shadow: 6px 6px 0 var(--cocoa);
  overflow: hidden; display: flex; flex-direction: column;
}
.strip-stap svg { display: block; width: 100%; height: auto; }
.strip-onder { padding: var(--sp-5) var(--sp-6) var(--sp-6); display: flex; gap: var(--sp-4); align-items: flex-start; }
.stap-nr {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 999px;
  background: var(--rust); color: var(--paper);
  font-family: var(--font-display); font-size: 19px;
  display: grid; place-items: center;
}
.strip-onder h2 { font-family: var(--font-heading); font-weight: 700; font-size: 19px; margin: 0 0 6px; }
.strip-onder p { margin: 0; color: var(--cocoa-soft); font-size: 15px; line-height: 1.55; }

.oplossing-cta {
  background: var(--mustard-tint); border: 1.6px dashed var(--cocoa); border-radius: var(--r-3);
  padding: var(--sp-7) var(--sp-6); text-align: center; margin-bottom: var(--sp-9);
}
.oplossing-cta h3 { font-family: var(--font-heading); font-weight: 700; font-size: clamp(22px, 2.6vw, 28px); margin: 0 0 var(--sp-3); text-wrap: balance; }
.oplossing-cta p { color: var(--cocoa-soft); margin: 0 0 var(--sp-5); }
