/* iPhone 6/7/8 Plus im Portrait (414px),
   iPhone 12/13/14 im Portrait (auch 390px, 414px) */
@media screen and (min-width: 481px) and (max-width: 768px){

    h1 {
        font-size: 0.7rem;
        letter-spacing: 0.185rem;
    }

    h2 {
        font-size: clamp(1.75rem, 2.25vw, 2.25rem);
        line-height: clamp(2rem, 2.75vw, 2.75rem);
    }

    h4.spacing {
        font-size: 0.75rem;
    }

    p {
        font-size: clamp(0.9rem, 1rem, 1.1rem);
        line-height: clamp(1.75rem, 1.65rem, 1.75rem);
        color: var(--text-color);
    }

    a {
        font-size: clamp(0.9rem, 1rem, 1.1rem);
        line-height: clamp(1.75rem, 1.65rem, 1.75rem);
    }

    .split-section {
        flex-direction: column-reverse;
        margin-bottom: 2%;
        position: relative;
    }

    .split-section {
        display: flex;
        flex-wrap: wrap; /* erlaubt Umbruch */
        flex-direction: column-reverse;
        gap: 2%;
        margin-bottom: 2%;
        position: relative;
    }

    .split-section.top {
        margin-top: var(--header-height);
    }

    .split-section_2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2%;
    }

    .text-section {
        margin-top: 2%;
    }

    .text-section,
    .video-section {
        flex: 1 1 calc(50%);
        max-width: 100%;
        box-sizing: border-box;
    }

    .text-section.long {
        aspect-ratio: auto;
    }

    .text-section_2 {
        padding-bottom: 2rem;
    }

    .content {
        padding: 5rem 0;
    }

    .container_coloured {
        aspect-ratio: auto;
    }

    .container_coloured_content {
        width: clamp(70%, 80%, 85%);
        padding: 5rem 0;

    }

    .coloured-overlay {
        width: 40vw;
    }

    .coloured-overlay h3 {
        font-size: 22px;
        width: 85%;
        padding-left: 5%;
    }

    .two-columns {
        flex-direction: column;
    }

    .four-columns {
        grid-template: 1fr 1fr / 1fr 1fr;
    }

    .four-columns .column {
        padding-bottom: 3rem;
    }

    .column {
        gap: 1rem;
        padding-bottom: 2rem;
    }

    .column ul li {
        font-size: clamp(0.9rem, 1rem, 1.1rem);
        line-height: clamp(1.75rem, 1.65rem, 1.75rem);
        color: var(--text-color);
    }

    a.button {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
        width: clamp(220px, 3vw, 270px);
    }

    .container-text {
        width: clamp(80%, 85%, 90%);
        padding: 5rem 0;
    }

    .container-text.full {
        padding: 3rem 0;
    }

    .container-button {
        padding-top: 2rem;
    }

    .two-columns.books {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding-top: 3rem;
        gap: 1rem;
        padding-bottom: 5rem;
    }

    .column-book1 {
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .column-book2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 3.5rem;
    }

    .column-book2 img {
        width: 70%;
        margin: auto 5% auto 25%;
    }

    .column-book2 p {
        text-align: center;
    }

        .baskerville {
            font-size: 0.85rem;
            line-height: 1.55rem;
        }

    /* O L D  S T Y L E S */

    .related-menu-list.foBiLi {
        grid-template: 1fr / 1fr;
        gap: 1rem;
    }
    .related-menu-list-item {
        height: clamp(420px, 40vw, 450px);
    }
}