#arbeitsbereiche {
    margin: 0;
    padding: var(--section-gap) 0 0;
    background-color: #ffffff;
}

#arbeitsbereiche-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vh, 6rem);
    padding: 0 clamp(2rem, 7vw, 4rem);
}

#arbeitsbereiche-header .font-heading-small {
    font-size: clamp(1.5rem, 1.8vw, 2rem);
}

/* ── Tile grid ── */
#arbeitsbereiche-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 3rem);
    padding: 0 clamp(2rem, 6vw, 8rem);
    max-width: 1300px;
    margin: 0 auto;
}

.arbeitsbereich-kachel {
    display: grid;
    grid-template-rows: 5rem clamp(120px, 16vw, 180px) auto;
    align-content: start;
    justify-items: center;
    background-color: #f7f6f1;
    border: 1px solid rgba(44, 134, 43, 0.18);
    border-radius: 14px;
    padding: clamp(1.8rem, 2.5vw, 3rem) clamp(1.5rem, 2vw, 2.5rem);
    gap: 1.6rem;
}

.kachel-titel {
    font-size: clamp(1.5rem, 1.6vw, 1.9rem);
    font-weight: 700;
    color: #2C862B;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kachel-illus-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.kachel-illustration {
    height: 100%;
    width: auto;
    display: block;
}

.kachel-belastungen {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
}

.kachel-belastungen li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 1.4rem;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1.4;
    color: #02203c;
}

.kachel-belastungen li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #2C862B;
    margin-top: 0.5em;
}

/* ── BGF Statement ── */
#bgf-statement {
    display: flex;
    align-items: center;
    gap: clamp(3rem, 6vw, 8rem);
    padding: clamp(4rem, 8vh, 8rem) clamp(4rem, 8vw, 10rem);
}

#bgf-problem {
    flex: 0 0 42%;
    font-size: clamp(1.8rem, 2.2vw, 2.6rem);
    font-weight: 400;
    color: #02203c;
    line-height: 1.5;
    text-align: center;
}

#bgf-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

#bgf-body .font-medium {
    line-height: 1.8;
    color: #02203c;
}

#bgf-closing {
    font-size: clamp(1.6rem, 2vw, 2rem);
    font-weight: 400;
    color: #2C862B;
}

.bgf-ref-link {
    color: inherit;
    text-decoration: none;
}

.bgf-quellen {
    list-style: decimal;
    padding-left: 1.6rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: clamp(1.05rem, 1.1vw, 1.25rem);
    color: #7a8694;
    line-height: 1.6;
}

.bgf-quellen a {
    color: #2C862B;
    text-underline-offset: 2px;
}

/* ── Slider controls (hidden on desktop) ──────────────────── */
.arbeitsbereich-btn {
    display: none;
    background: none;
    border: none;
    font-size: 4.8rem;
    color: #2C862B;
    cursor: pointer;
    padding: 0 0.4rem;
    line-height: 1;
    user-select: none;
    flex-shrink: 0;
}

.arbeitsbereich-btn:disabled {
    opacity: 0.2;
    cursor: default;
}

#arbeitsbereich-nav {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.4rem;
}

#arbeitsbereich-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.arbeitsbereich-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #c9d0d8;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.arbeitsbereich-dot.active {
    background-color: #2C862B;
}

/* ── Mobile slider (≤ 1000px) ─────────────────────────────── */
@media (max-width: 1000px) {
    #arbeitsbereich-track-wrap {
        overflow: hidden;
        box-sizing: border-box;
        padding: 0 clamp(1.6rem, 3vw, 3.2rem);
    }

    #arbeitsbereiche-grid {
        display: flex;
        padding: 0;
        max-width: none;
        margin: 0;
    }

    .arbeitsbereich-kachel {
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .arbeitsbereich-btn {
        display: block;
    }

    #arbeitsbereich-nav {
        display: flex;
    }
}

/* ── BGF statement stacking (≤ 900px) ────────────────────── */
@media (max-width: 900px) {
    #bgf-statement {
        flex-direction: column;
        margin-top: clamp(2rem, 4vh, 4rem);
        padding: clamp(2rem, 4vh, 4rem) 7vw;
        gap: 2.4rem;
        text-align: center;
    }

    #bgf-problem {
        flex: none;
        width: 100%;
    }
}
