/* =========================================================
   ST FORSTBEDARF – HERO
   ========================================================= */

.st-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(25, 25, 25, 0.88) 0%,
            rgba(25, 25, 25, 0.66) 48%,
            rgba(25, 25, 25, 0.30) 100%
        ),
        url("/images/st/hero.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* ---------------------------------------------------------
   Overlay
   --------------------------------------------------------- */

.st-hero__overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 78% 40%,
            rgba(239, 125, 0, 0.22),
            transparent 28%
        );
}


/* ---------------------------------------------------------
   Inhalt
   --------------------------------------------------------- */

.st-hero__inner {
    position: relative;
    z-index: 2;

    min-height: 520px;

    display: grid;
    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(280px, 0.7fr);

    align-items: center;

    gap: 64px;
}


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

.st-hero__content {
    color: #fff;
}

.st-hero__content h1 {
    max-width: 760px;

    margin: 0 0 18px;

    color: #fff;

    font-size: clamp(2.8rem, 5.5vw, 5rem);
    line-height: 1.02;
}

.st-hero__lead {
    max-width: 680px;

    margin: 0 0 30px;

    color: rgba(255, 255, 255, 0.86);

    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.6;
}


/* ---------------------------------------------------------
   Button
   --------------------------------------------------------- */

.st-hero__button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    background: var(--st-orange);

    color: #fff;

    border-radius: 7px;

    font-weight: 800;
    text-decoration: none;

    transition:
        background-color 0.18s ease,
        transform 0.18s ease;
}

.st-hero__button:hover,
.st-hero__button:focus {
    background: var(--st-orange-dark);
    color: #fff;

    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   Husqvarna-Karte
   --------------------------------------------------------- */

.st-hero__partner {
    padding: 30px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;

    text-align: center;
}

.st-hero__partner img {
    display: block;

    width: min(100%, 250px);

    margin: 0 auto 18px;

    padding: 16px;

    background: #fff;

    border-radius: 12px;
}

.st-hero__partner span {
    color: #fff;

    font-size: 1.1rem;
    font-weight: 700;
}

.st-hero__partner,
.st-hero__partner h2,
.st-hero__partner h3,
.st-hero__partner p,
.st-hero__partner span {
    color: #fff !important;
}