/* =====================================================================
 * BSH Subpage Hero 3 – Styles
 * Zwei-Spalten-Layout: Text links, Bild rechts – heller Hintergrund.
 * ===================================================================== */

.sph3-hero,
.sph3-hero *,
.sph3-hero *::before,
.sph3-hero *::after {
    box-sizing: border-box;
}

.sph3-hero {
    position: relative;
    display: block;
    width: 100%;
    background: #f4f7fb;
    overflow: hidden;
    padding: 72px 0;
    text-decoration: none;
    color: inherit;
}

/* -- Container --------------------------------------- */

.sph3-inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
}

/* -- Two-column grid --------------------------------- */

.sph3-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* -- Text column ------------------------------------- */

.sph3-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: var(--sph3-mw, 680px);
}

.sph3-kicker {
    display: inline-flex;
    width: fit-content;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #eb6a05;
    margin: 0;
}

.sph3-title {
    margin: 0;
    color: #0f1720;
    font-size: var(--sph3-fs, clamp(28px, 4vw, 52px));
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.02em;
    text-wrap: balance;
}

.sph3-subtitle {
    margin: 0;
    color: #0f1720;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.65;
    max-width: 62ch;
}

.sph3-cta-wrap {
    margin-top: 6px;
}

.sph3-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 28px;
    border-radius: 50px 0 50px 0;
    background: #eb6a05;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: background 180ms ease, transform 180ms ease;
}

.sph3-cta:hover,
.sph3-cta:focus-visible {
    background: #1b3a61;
    transform: translateY(-1px);
}

/* -- Image column ------------------------------------ */

.sph3-image-wrap {
    position: relative;
    overflow: hidden;
    height: 450px;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.sph3-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -- Hover link state -------------------------------- */

a.sph3-hero:hover .sph3-title,
a.sph3-hero:focus-visible .sph3-title {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* -- Responsive -------------------------------------- */

@media (max-width: 900px) {
    .sph3-hero {
        padding: 56px 0;
    }

    .sph3-inner {
        padding: 0 24px;
    }

    .sph3-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sph3-image-wrap {
        height: 340px;
    }
}

@media (max-width: 600px) {
    .sph3-hero {
        padding: 44px 0;
    }

    .sph3-inner {
        padding: 0 18px;
    }

    .sph3-copy {
        gap: 16px;
    }

    .sph3-image-wrap {
        height: auto;
        aspect-ratio: 4 / 3;
        border-top-left-radius: 40%;
        border-bottom-right-radius: 40%;
    }

    .sph3-cta {
        padding: 0 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}


