/* ── Gedeelde laag-stijlen (normaal in homepage.css) ────────── */
.hw-laag { width: 100%; }
.hw-pagina-hero .tekst-uitgebreid { display: none; }
@media (min-width: 900px) {
    .hw-pagina-hero .tekst-kort      { display: none; }
    .hw-pagina-hero .tekst-uitgebreid { display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   pagina-hero.css — Exacte kopie van homepage L1 CSS
   Toegepast via .hw-pagina-hero zodat homepage onaangetast blijft.
   ═══════════════════════════════════════════════════════════════ */

/* ── Mobiel basis ────────────────────────────────────────────── */
.hw-pagina-hero {
    background: linear-gradient(160deg, #2c4a52 0%, #1e333a 100%);
    position: relative;
    overflow: hidden;
    text-align: left;
    padding: 0;
}
.hw-pagina-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,201,160,0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.hw-pagina-hero .hw-label {
    color: #e8c9a0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hw-pagina-hero .hw-l1-titel {
    font-family: var(--display-font, Georgia, serif);
    font-size: clamp(1.7rem, 5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.35;
    color: #faf7f2;
    margin-bottom: 20px;
}
.hw-pagina-hero .hw-l1-tekst {
    font-size: 1rem;
    line-height: 1.75;
    color: #c8dde2;
    margin-bottom: 0;
}
.hw-pagina-hero .hw-l1-tekst-kolom {
    padding: 40px 20px 24px;
    box-sizing: border-box;
}
.hw-pagina-hero .hw-l1-tekst-inner .hw-label {
    margin-bottom: 16px;
}
.hw-pagina-hero .hw-l1-tekst-inner .hw-l1-titel {
    margin-bottom: 20px;
}
.hw-pagina-hero .hw-l1-foto-kolom {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}
.hw-pagina-hero .hw-l1-foto {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 12px;
}

/* ── Desktop: exacte kopie van homepage L1 grid ─────────────── */
@media (min-width: 900px) {
    .hw-pagina-hero {
        display: grid;
        grid-template-columns: 2fr 3fr;
        min-height: 620px;
        overflow: hidden;
        background: none;
        padding: 0;
        text-align: left;
    }
    .hw-pagina-hero .hw-label {
        font-size: 0.75rem;
        letter-spacing: 2.5px;
        margin-bottom: 32px;
        white-space: normal;
        overflow: visible;
    }
    .hw-pagina-hero .hw-l1-titel {
        font-size: clamp(2.2rem, 3.2vw, 3.2rem);
        margin-bottom: 40px;
        line-height: 1.25;
    }
    .hw-pagina-hero .hw-l1-tekst {
        font-size: clamp(1.05rem, 1.3vw, 1.2rem);
        margin-bottom: 20px;
        line-height: 1.9;
    }
    .hw-pagina-hero .hw-l1-tekst-kolom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 48px 60px 48px 80px;
        background: linear-gradient(160deg, #2c4a52 0%, #1e333a 100%);
    }
    .hw-pagina-hero .hw-l1-tekst-inner {
        max-width: 100%;
    }
    .hw-pagina-hero .hw-l1-foto-kolom {
        display: block;
        overflow: hidden;
        margin-top: 0;
        border-radius: 0;
    }
    .hw-pagina-hero .hw-l1-foto {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center center;
        display: block;
        border-radius: 0;
    }
}

/* ── Desktop zonder foto: volle breedte ─────────────────────── */
@media (min-width: 900px) {
    .hw-pagina-hero:not(:has(.hw-l1-foto-kolom)) {
        grid-template-columns: 1fr;
        background: linear-gradient(160deg, #2c4a52 0%, #1e333a 100%);
    }
    .hw-pagina-hero:not(:has(.hw-l1-foto-kolom)) .hw-l1-tekst-kolom {
        max-width: 860px;
        background: none;
    }
}
