/* ==========================================================
   Content Block: Vorteile / Checkliste
========================================================== */

.benefits-section {
    width: 100%;
    padding: 4.5rem 0;
}

.benefits-section--white {
    background: #fff;
}

.benefits-section--light {
    background: #f6f6f6;
}

/* ==========================================================
   Einleitung
========================================================== */

.benefits-section__intro {
    max-width: 58rem;
}

.benefits-section__eyebrow {
    margin: 0 0 0.75rem;
    color: var(--color-primary, #c12030);
    font-family: var(--font-monospace, monospace);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.benefits-section__title {
    max-width: 18ch;
    margin: 0;
    color: #333;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03125rem;
    line-height: 1.16;
    text-wrap: balance;
}

.benefits-section__lead {
    max-width: 46rem;
    margin-top: 1.125rem;
    color: #4f4f4f;
    font-size: 1.03125rem;
    line-height: 1.65;
}

.benefits-section__lead > :first-child,
.benefit-item__text > :first-child {
    margin-top: 0;
}

.benefits-section__lead > :last-child,
.benefit-item__text > :last-child {
    margin-bottom: 0;
}

/* ==========================================================
   Liste
========================================================== */

.benefits-list {
    display: grid;
    gap: 0 3rem;
    margin-top: 2.5rem;
}

.benefits-list--columns-1 {
    max-width: 54rem;
    grid-template-columns: 1fr;
}

.benefits-list--columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* ==========================================================
   Einzelner Vorteil
========================================================== */

.benefit-item {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    align-items: start;
    gap: 1.125rem;
    padding: 1.35rem 0;
    border-top: 1px solid #dedede;
}

.benefit-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--color-primary, #c12030);
    background: #fbeaec;
    border-radius: 50%;
}

.benefit-item__icon svg {
    width: 1.125rem;
    height: 1.125rem;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-item__title {
    margin: 0;
    color: #292929;
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.3;
    text-wrap: balance;
}

.benefit-item__text {
    margin-top: 0.4rem;
    color: #5a5a5a;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==========================================================
   Responsive
========================================================== */

@media (max-width: 64rem) {
    .benefits-section__title {
        max-width: 22ch;
    }

    .benefits-list {
        gap: 0 2rem;
    }
}

@media (max-width: 48rem) {
    .benefits-section {
        padding: 3.5rem 0;
    }

    .benefits-section__title {
        max-width: none;
    }

    .benefits-section__lead {
        max-width: none;
    }

    .benefits-list,
    .benefits-list--columns-1,
    .benefits-list--columns-2 {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 2rem;
    }

    .benefit-item {
        grid-template-columns: 2.5rem minmax(0, 1fr);
        padding: 1.25rem 0;
    }
}