/* Text */
.section-course-details .text {
    color: black;
    font-size: 1rem;
    font-weight: 400;
}

/* List */
.section-course-details ul {
    margin-left: 1.5rem;
}

/* Image */
.course-details__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 1rem;
    object-fit: cover;
}

/* Margin */
.course-details__info,
.course-details__image,
.course-details__content,
.course-details__video {
    margin-bottom: 3rem;
}

/* Section */
.section-course-details {
    padding-top: 80px;
    padding-bottom: 0px;
}

.section-course-details figure {
    width: 100% !important;
}

.section-course-details img {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    border-radius: 1rem !important;
}

/**
* MEDIA 
*/
/* Desktop lớn (Widescreen) */
@media screen and (max-width: 1921px) {
    /* CSS cho màn hình <= 1920px */
}

/* Desktop thường / Laptop lớn */
@media screen and (max-width: 1441px) {
    /* CSS cho màn hình <= 1440px */
}

/* Laptop nhỏ / Tablet landscape lớn */
@media screen and (max-width: 1201px) {
    /* CSS cho màn hình <= 1200px */
}

/* Nest hub */
@media screen and (max-width: 1025px) {

    /* CSS cho màn hình <= 1025px */

}

/* Tablet landscape / Laptop nhỏ */
@media screen and (max-width: 993px) {
    /* CSS cho màn hình <= 992px */
}

/* Ipad Air */
@media screen and (max-width: 821px) {

    /* CSS cho màn hình <= 821px */
    .program-courses-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

}

/* Tablet portrait lớn / Mobile landscape */
@media screen and (max-width: 769px) {

    /* CSS cho màn hình <= 768px */

}

/* Mobile landscape / Phablet */
@media screen and (max-width: 577px) {

    /* CSS cho màn hình <= 576px */

}

/* Mobile IP 14Pro Max */
@media screen and (max-width: 431px) {

    /* CSS cho màn hình <= 431px */
    .section-course-details {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .program-courses-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

}

/* Mobile portrait lớn (iPhone 6/7/8 Plus) */
@media screen and (max-width: 415px) {

    /* CSS cho màn hình <= 414px */

}

/* Mobile portrait trung bình (iPhone X/11 Pro) */
@media screen and (max-width: 391px) {

    /* CSS cho màn hình <= 390px */
}

/* Mobile portrait nhỏ (iPhone SE, Android nhỏ) */
@media screen and (max-width: 376px) {
    /* CSS cho màn hình <= 375px */
}