/* Section Container */
.program-course-listing {
    padding-top: 100px !important;
    padding-bottom: 120px !important;
}

/* Course Relationship */
.program-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
    column-gap: 42px;
}

.course-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.course-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.course-thumb img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 1rem;
    width: 100%;
    height: auto;
    aspect-ratio: 362 / 272;
    object-fit: cover;
    transition: all .3s ease;
}

.course-card:hover img {
    transform: scale(1.1);
}

.course-tag {
    position: absolute;
    top: 10px;
    left: 12px;
    background: #d29e31;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: .25rem .75rem;
    border-radius: .5rem;
}

.course-content {
    padding-top: 1.5rem;
}

.course-title {
    margin-bottom: .75rem;
}

.course-card:hover .course-title {
    color: var(--fs-color-primary) !important;
}

.hidden-course {
    display: none;
}

/**
* 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(auto-fill, minmax(320px, 1fr));
    }

    .about-program__left {
        padding-right: 60px;
    }

}

/* Tablet portrait lớn / Mobile landscape */
@media screen and (max-width: 769px) {

    /* CSS cho màn hình <= 768px */
    .about-program__left {
        padding-right: 40px;
    }
}

/* 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 */
    /* Course List */
    .program-course-listing {
        padding-top: 60px !important;
        padding-bottom: 80px !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 */
}