#studieliv_container {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 5vh 0;
} 


#studieliv_container h1 {
    font-size: clamp(22px, 3vw, 42px);
    margin-bottom: 2vh;
}

.intro_text {
    max-width: 60vw;
    text-align: center;
    font-size: clamp(13px, 1.3vw, 44px);
    line-height: 1.6;

    margin-bottom: 15vh;
}

.studie_kort {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
}

.kort{
    display:flex;
    flex-direction: row;
    width:45vw;
    border-radius: 15px;
    padding-bottom: 2vh;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
}

.kort_img {
    width: 100%;
    height: auto;
    border-radius:15px;
    margin-bottom:2vh;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.studie_kort h2 {
    text-align:center;
    font-size: clamp(16px, 2vw, 52px);
    margin:0;
    margin-top:10vh;
}

.studie_kort p {
    text-align: center;
    font-size: clamp(12px, 1.1vw, 36px);
    line-height: 1.5;
    margin-bottom:1vh;
}

.studieliv_img_card_div{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.image_container{
    width:45vw;

}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 900px) {
    .kort {
        width: 70vw;
    }
    .image_container {
        width: 70vw;
    }
}

@media (max-width: 700px) {
    .kort {
        width: 88vw;
    }
    .image_container {
        width: 88vw;
    }
    .intro_text {
        max-width: 88vw;
    }
    .studie_kort {
        width: 100%;
    }
    .studie_kort h2 {
        margin-top: 6vh;
    }
    .studieliv_img_card_div {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .kort {
        width: 95vw;
    }
    .image_container {
        width: 78vw;
    }
}
