/* =========================================================
   ST FORSTBEDARF – UNSER ANGEBOT
   ========================================================= */

.st-offer {
    background: var(--st-light);
}


/* ---------------------------------------------------------
   Überschrift
   --------------------------------------------------------- */

.st-offer__head {
    max-width: 760px;
    margin-bottom: 38px;
}

.st-offer__head h2 {
    margin: 0 0 14px;

    color: var(--st-anthracite);

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.st-offer__head > p:last-child {
    margin: 0;

    color: var(--st-muted);

    font-size: 1.08rem;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   Grid
   --------------------------------------------------------- */

.st-offer__grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 22px;
}


/* =========================================================
   ANGEBOTS-KACHELN
   ========================================================= */

.st-offer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.st-offer-card {
    position: relative;
    min-height: 270px;
    padding: 32px 26px 28px;

    background: #fff;

    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 16px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .08);

    overflow: hidden;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

/* orange Akzentkante */

.st-offer-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 6px;

    background: var(--st-orange);
}

/* großer Icon-Bereich */

.st-offer-card__icon {
    width: 72px;
    height: 72px;

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

    margin-bottom: 24px;

    background: rgba(239, 125, 0, .12);

    border-radius: 16px;

    font-size: 2.5rem;
    line-height: 1;
}

.st-offer-card h3 {
    margin: 0 0 12px;

    color: var(--st-anthracite);

    font-size: 1.35rem;
    font-weight: 800;
}

.st-offer-card p {
    margin: 0;

    color: var(--st-muted);

    line-height: 1.65;
}

/* Desktop-Hover */

.st-offer-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 38px rgba(0, 0, 0, .13);
}
.st-inline-icon {
    width: 1.4em;
    height: 1.4em;
    object-fit: contain;
    vertical-align: -0.3em;
    margin-right: 0.25em;
}
/* =========================================================
   WERBUNG
   ========================================================= */

.st-ads {
    width: 100%;
}

.st-ad {
    width: 100%;
}

.st-ad--dark {
    background: #18395f;
    color: #fff;
}

.st-ad--light {
    background: #f4f4f2;
    color: #222;
}

.st-ad__inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: center;

    padding-top: 60px;
    padding-bottom: 60px;
}

/* Logo */

.st-ad__logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.st-ad__logo--small {
    max-width: 120px;
}

.st-ad__logo--medium {
    max-width: 180px;
}

.st-ad__logo--large {
    max-width: 240px;
}

/* Text */

.st-ad__content {
    min-width: 0;
}

.st-ad__kicker {
    margin: 0 0 12px;

    font-size: .95rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: #f58200;
}

.st-ad__content h2 {
    margin: 0 0 20px;

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.st-ad__text {
    max-width: 760px;

    font-size: 1.05rem;
    line-height: 1.6;
}

.st-ad__text p:last-child {
    margin-bottom: 0;
}

/* Dunkle Variante */

.st-ad--dark .st-ad__content h2,
.st-ad--dark .st-ad__text {
    color: #fff;
}

/* =========================================================
   ÖFFNUNGSZEITEN + KONTAKT
   ========================================================= */

.st-service-section {
    padding: 64px 0;
    background: #f4f4f2;
}

.st-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.st-service-grid__item {
    min-width: 0;
    height: 100%;
}

/* Module sollen die volle Höhe der Grid-Zelle nutzen */
.st-service-grid__item > * {
    height: 100%;
}

/* =========================================================
   ÖFFNUNGSZEITEN + KONTAKT
   ========================================================= */

.st-service-section {
    padding: 64px 0;
    background: #f4f4f2;
}

.st-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;

    /* beide Grid-Zellen gleich hoch */
    align-items: stretch;
}

.st-service-grid__item {
    display: flex;
    min-width: 0;
}

/* Joomla-Modul bzw. Modul-Ausgabe volle Höhe */
.st-service-grid__item > * {
    width: 100%;
    height: 100%;
}

/* beide eigentlichen Karten ebenfalls volle Höhe */
.st-service-grid__item .st-opening,
.st-service-grid__item .st-contact {
    width: 100%;
    height: 100%;
}

.st-service-grid__item .st-opening__card,
.st-service-grid__item .st-contact__card {
    height: 100%;
    box-sizing: border-box;
}

/* =========================================================
   VERTRAUENSLEISTE
   ========================================================= */

.st-trustbar {
    background: var(--st-orange, #ef7d00);
    color: #fff;
}

.st-trustbar__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    padding: 28px 0;
}

.st-trustbar__item {
    padding: 0 26px;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.st-trustbar__item + .st-trustbar__item {
    border-left: 1px solid rgba(255, 255, 255, .35);
}

.st-trustbar__item strong {
    font-size: 1rem;
    font-weight: 800;
}

.st-trustbar__item span {
    font-size: .95rem;
    color: rgba(255, 255, 255, .92);
}
.st-main {
    padding: 56px 0 72px;
    background: #f4f4f2;
}

.st-main .item-page {
    padding: 36px 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.st-main .item-page h1,
.st-main .item-page h2 {
    color: var(--st-anthracite, #292929);
}