/* ==========================================================
   Content Block: Studiengrundsätze
========================================================== */

.study-principles-section {
    width: 100%;
    padding: 3.5rem 0 4.5rem;
    background: #fff;
}

/* ==========================================================
   Dunkler Innencontainer
========================================================== */

.study-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
    background: #292929;
    border-radius: 0.875rem;
}

/* ==========================================================
   Einzelner Grundsatz
========================================================== */

.study-principle {
    min-width: 0;
    padding: 0 clamp(1.25rem, 3vw, 2rem);
}

.study-principle:first-child {
    padding-left: 0;
}

.study-principle:last-child {
    padding-right: 0;
}

.study-principle + .study-principle {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================
   Überschrift
========================================================== */

.study-principle__title {
    margin: 0 0 0.75rem;
    color: #f05b69;
    font-family: var(--font-monospace, monospace);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13rem;
    line-height: 1.4;
    text-transform: uppercase;
}

/* ==========================================================
   Beschreibung
========================================================== */

.study-principle__text {
    margin: 0;
    color: #f3f3f3;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
}

/* ==========================================================
   Tablet
========================================================== */

@media (max-width: 56rem) {
    .study-principles {
        grid-template-columns: 1fr;
    }

    .study-principle,
    .study-principle:first-child,
    .study-principle:last-child {
        padding: 1.5rem 0;
    }

    .study-principle:first-child {
        padding-top: 0;
    }

    .study-principle:last-child {
        padding-bottom: 0;
    }

    .study-principle + .study-principle {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-left: 0;
    }
}

/* ==========================================================
   Mobil
========================================================== */

@media (max-width: 48rem) {
    .study-principles-section {
        padding: 1.5rem 0 3.5rem;
    }

    .study-principles {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }

    .study-principle__title {
        font-size: 0.6875rem;
    }

    .study-principle__text {
        font-size: 0.875rem;
    }
}