.student-class-header {
    position:relative; 
    width:100%; 
    aspect-ratio:16/10; 
    flex-shrink:0; 
    overflow:hidden;
}


@media screen and (min-width: 320px) and (orientation : landscape){
    .student-class-header  {
        aspect-ratio: 16/8;
    }
}

@media screen and (min-width: 1280px){
    .student-class-header  {
        aspect-ratio: 16/8;
    }
    
}

@media screen and (min-width: 1536px){
    .student-class-header  {
        aspect-ratio: 16/10;
    }
    .action-container, 
    .student-class-titles{
        padding: 32px;
    }
}


/* .student-lesson-card {
    width: 450px;
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 10px;
}

.student-lesson-card:hover {
    outline: var(--color-cyan-1) solid 10px;
}

.student-lesson-card:hover .lesson-card-noted {
    color: var(--color-red-primary);
}

    .lesson-card-img {
        width: 100%;
        height: 273px;
        border-radius: 20px;
        object-fit: cover;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

        .lesson-card-img > img {
            width: 100%;
            border-radius: 20px;
        }
    
    .lesson-card-info {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .lesson-card-info .info-topic {
        width: 100%;
        background-color: var(--color-red-primary);
        font-family: "nunito-bold";
        font-size: 1.625rem;
        line-height: 35px;
        color: var(--color-white);
        border-radius: 10px;
        padding: 20px 10px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 20px;
    }

    .lesson-card-info .info-title {
        width: 100%;
        font-family: "nunito-semibold";
        font-size: 1.5rem;
        line-height: 26px;
        color: var(--color-blue-primary);
        padding-left: 30px;
        margin-bottom: 10px;
    }

    .lesson-card-info .info-date-wrap {
        display: flex;
        align-items: center;
        padding-left: 30px;
    }

        .lesson-card-info .info-date-wrap > img { 
            width: 30px;
            height: 30px;
            margin-right: 20px;
        }

        .lesson-card-info .info-date-wrap .info-date {
            width: 100%;
            font-family: "nunito-semibold";
            font-size: 1.375rem;
            line-height: 26px;
            color: var(--color-red-primary);
            text-align: left;
            border-left: 4px solid var(--color-red-primary);
            padding-left: 10px;
        }
    
    .lesson-card-noted {
        width: 100%;
        background-color: var(--color-yellow-light-1);
        border-radius: 20px;
        font-family: "nunito-regular";
        font-size: 1.25rem;
        line-height: 27px;
        color: var(--color-black);
        padding: 30px 20px;
    } */