:root {
    --brechel-blue: rgb(0, 51, 102);
    --brechel-light-blue: rgb(220, 230, 245);
    --terminal-gray: rgb(245, 245, 245);
}

.why-hero {
    background: white;
    padding: 60px 40px;
}

/* WICHTIG: eine Spalte */
.why-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ITEM */
.why-hero__item {
    display: flex;
    flex-direction: column;
}

.why-hero__lead {
    background: var(--brechel-blue);
    color: white;
    padding: 28px 32px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    font-size: clamp(1.25rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
    min-height: 180px;
}

/* EMPHASIS (unten rechts) */
.why-hero__emphasis {
    background: white;
    color: var(--brechel-blue);
    border-top: 1px solid var(--brechel-light-blue);
    border-right: 1px solid var(--brechel-light-blue);
    border-bottom: 1px solid var(--brechel-light-blue);
    padding: 20px 32px 28px 32px;

    display: flex;
    align-items: flex-start;   /* ↑ oben */
    justify-content: flex-end;

    text-align: right;
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    line-height: 1.35;
}
