/* Overzichtspagina met alle landingspagina's. Vult klp-lp5.css aan, raakt de
   95 landingspagina's zelf niet: alles hangt onder .klp-hub. */

.klp-hub .klp-hero h1{max-width:16ch;margin-left:auto;margin-right:auto}

/* Snelnavigatie naar de groepen */
.klp-hub .hub-nav{display:flex;flex-wrap:wrap;gap:10px;justify-content:center}
.klp-hub .hub-nav a{display:inline-flex;align-items:center;padding:10px 18px;border:1px solid var(--line);
  border-radius:999px;background:#fff;color:var(--ink);text-decoration:none;font-size:.95rem;
  transition:background .25s,border-color .25s,transform .25s}
.klp-hub .hub-nav a:hover{background:var(--mint-soft);border-color:var(--green);transform:translateY(-2px)}

/* De sectie met alleen de chips hoeft niet zo hoog te zijn. Selecteren op de
   inhoud, want :first-of-type pakt de hero-section en niet deze. */
.klp-hub .klp-sec:has(> .klp-wrap > .hub-nav){padding:clamp(30px,3.4vw,44px) 0 0}

/* Linkkaarten per groep */
.klp-hub .hub-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.klp-hub .hub-item{display:flex;align-items:center;justify-content:space-between;gap:14px;
  background:#fff;border:1px solid var(--line);border-radius:16px;padding:18px 22px;
  color:var(--ink);text-decoration:none;font-size:1.02rem;line-height:1.35;
  transition:transform .3s var(--ease),box-shadow .3s,border-color .3s}
.klp-hub .klp-sec:not(.malt) .hub-item{background:var(--mint-soft)}
.klp-hub .hub-item::after{content:"";flex:0 0 auto;width:16px;height:16px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 11L11 3M11 3H5M11 3v6' stroke='%230a130c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity:.45;transition:opacity .3s,transform .3s}
.klp-hub .hub-item:hover{transform:translateY(-3px);border-color:var(--green);
  box-shadow:0 22px 38px -30px rgba(0,0,0,.34)}
.klp-hub .hub-item:hover::after{opacity:1;transform:translate(2px,-2px)}

@media(max-width:1024px){
  .klp-hub .hub-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:640px){
  .klp-hub .hub-grid{grid-template-columns:1fr}
  .klp-hub .hub-nav a{font-size:.88rem;padding:9px 15px}
}

/* Golvende overgang tussen alle secties. Dezelfde boog als op de landingspagina's,
   maar daar zit hij op .malt.boog; hier krijgt elke mintsectie hem. De sectie met
   een eigen .boog (de slot-CTA) slaan we over, die heeft de regels al. */
.klp-hub .klp-sec.malt:not(.boog){position:relative}
.klp-hub .klp-sec.malt:not(.boog)::before,
.klp-hub .klp-sec.malt:not(.boog)::after{content:"";position:absolute;left:0;right:0;
  height:clamp(34px,5vw,72px);background-repeat:no-repeat;background-size:100% 100%;
  pointer-events:none;z-index:0}
.klp-hub .klp-sec.malt:not(.boog)::before{top:0;transform:translateY(-99%);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 H1200 V35 C1000,0 800,70 600,35 C400,3 200,72 0,40 Z' fill='%23e7f6e6'/%3E%3C/svg%3E")}
.klp-hub .klp-sec.malt:not(.boog)::after{bottom:0;transform:translateY(99%);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H1200 V45 C1000,80 800,10 600,45 C400,77 200,8 0,40 Z' fill='%23e7f6e6'/%3E%3C/svg%3E")}
.klp-hub .klp-sec.malt:not(.boog) > *{position:relative;z-index:1}
