/* "Ihre Vorteile", Seite "Bewerbung und Zulassung". */

.advantages-grid {
    padding: 72px 0;
    background: var(--color-white);
}

.advantages-grid__title {
    margin: 0 0 36px;
    color: var(--color-headings);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    text-align: center;
}

.advantages-grid__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.advantage-tile {
    padding: 28px 24px 30px;
    border-radius: 12px;
    background: var(--color-grey-light-1);
    text-align: center;
}

.advantage-tile__icon {
    display: block;
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background-color: var(--color-blue);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px 22px;
}

.advantage-tile__icon--clock {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 15 14'/%3E%3C/svg%3E");
}

.advantage-tile__icon--shield {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v6c0 4.4-3 8.1-7 9-4-0.9-7-4.6-7-9V6z'/%3E%3Cpolyline points='9 12 11 14 15 10'/%3E%3C/svg%3E");
}

.advantage-tile__icon--headset {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13v-1a8 8 0 0 1 16 0v1'/%3E%3Crect x='2.5' y='13' width='4' height='6' rx='1.5'/%3E%3Crect x='17.5' y='13' width='4' height='6' rx='1.5'/%3E%3C/svg%3E");
}

.advantage-tile__icon--lock {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='10' width='16' height='11' rx='2'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0'/%3E%3C/svg%3E");
}

.advantage-tile__title {
    margin: 0 0 8px;
    color: var(--color-headings);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
}

.advantage-tile__text {
    margin: 0;
    color: var(--color-grey-dark);
    font-size: 14px;
    line-height: 22px;
}

@media (max-width: 1100px) {
    .advantages-grid__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobil: Zeilen mit Icon links, Text rechts (wie im Mockup). */
@media (max-width: 700px) {
    .advantages-grid {
        padding: 48px 0;
    }

    .advantages-grid__title {
        margin-bottom: 24px;
        font-size: 26px;
        line-height: 34px;
    }

    .advantages-grid__items {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .advantage-tile {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 4px 16px;
        align-items: center;
        padding: 18px 20px;
        text-align: left;
    }

    .advantage-tile__icon {
        grid-row: span 2;
        margin: 0;
    }

    .advantage-tile__title {
        align-self: end;
        margin: 0;
    }

    .advantage-tile__text {
        align-self: start;
    }
}
