#top.hero {
    background-image: linear-gradient(180deg, rgba(15, 28, 46, 0.31), rgba(15, 28, 46, 0.51)),
        url("../../../assets/zweitpass/hero.webp");
    background-position: 50% 90%;
}

.three-boxes-grid {
    display: grid;
    gap: 16px;
    margin-top: var(--space-5);
    grid-template-columns: repeat(3, 1fr);
}

.three-boxes-card {
    padding: 18px;
    border-radius: var(--radius-2);
    background: var(--color-off-white-dark);
    box-shadow: none;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 10px;
    align-content: start;
    overflow: hidden;
}

.three-boxes,
.target-group {
    background: var(--color-off-white);
    border-top: 1px solid rgba(15, 28, 46, 0.08);
    border-bottom: 1px solid rgba(15, 28, 46, 0.08);
}

.three-boxes-card.lift {
    transition: transform 0.08s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.three-boxes-card.lift:hover {
    transform: translateY(-2px);
    border-color: var(--color-navy);
    box-shadow: 0 16px 36px rgba(15, 28, 46, 0.14);
}

.three-boxes-head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    align-self: stretch;
    gap: 12px;
    margin: -18px -18px 0;
    padding: 18px;
    background: var(--color-navy);
    border-radius: 0;
}

.three-boxes-card h4 {
    margin: 0;
    font-size: var(--fs-body);
    color: var(--color-heading);
    text-align: left;
}

.three-boxes-head h4 {
    color: var(--color-off-white);
    text-transform: uppercase;
}

.three-boxes-card p {
    margin: 0;
    padding: var(--space-2) 0;
}


@media (max-width: 720px) {
    #top.hero {
        background-position: 40% 100%;
    }

    .three-boxes-grid {
        grid-template-columns: 1fr;
    }

    .three-boxes-card {
        grid-template-rows: auto;
        grid-row: auto;
    }

}