/* Publieke promo-landingspagina: hero met focal point (object-fit + object-position) */
.promo-public-hero {
    position: relative;
    min-height: clamp(220px, 42vw, 420px);
    overflow: hidden;
    background: var(--color-bg-alt, #0f172a);
}

.promo-public-hero--noimg {
    background: linear-gradient(135deg, var(--color-primary, #2d7a4f) 0%, #1a4d32 100%);
    min-height: 200px;
}

.promo-public-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position wordt inline gezet vanuit CMS focal (0–1 → %) */
}

.promo-public-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
    pointer-events: none;
}

.promo-public-hero-inner {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 6vw, 4rem) 0;
    max-width: 720px;
}

.promo-public-hero-title {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.promo-public-hero-sub {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin: 0;
    max-width: 40em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-public-body {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.promo-public-body .container-narrow {
    max-width: 720px;
}

.promo-public-body h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.promo-public-body h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.promo-public-body p {
    line-height: 1.65;
    margin-bottom: 1rem;
}
