.section-program {
    padding: 50px 0 50px;
    background: #eae2ef !important;
}

.section-program .program-title-1 {
    text-align: center;
    margin-bottom: 12px;
    font-size: 40px;
    color: #0D4E91;
    font-weight: 700;
}

.section-program .program-title-2 {
    background: #D72262;
    color: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.section-program .contai-view-more {
    text-align: center;
}

.section-program .contai-title-2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Swiper Slide */
.section-program .program-swiper .program-slide {
    display: flex;
    height: 680px;
}

/* Layout 1 */
.section-program .layout-1 {
    display: flex;
    width: 100%;
    height: 100%;
}

.section-program .layout-1 .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Ảnh chính giữa */
.section-program .layout-1 .col-1img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.section-program .layout-2 .col-1img {
    padding: 0 15px 13px;
}

/* Ảnh 2 bên */
.section-program .layout-1 .col-2img img {
    width: 100%;
    height: calc((100% - 10px) / 2);
    object-fit: cover;
    border-radius: 12px;
}

/* Layout 2 */
.section-program .layout-2 .col-1img {
    flex: 1;
}

.section-program .layout-2 .col-1img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.section-program .layout-2 .col-4img {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
}

.section-program .layout-2 .col-4img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
}

/* View More */
.section-program .program-view-more {
    display: inline-block;
    margin-top: 35px;
    padding: 6px 20px;
    background: #0D4E91;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}
@media (max-width: 768px) {
    .section-program .program-swiper .program-slide {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        height: auto !important;
    }

    .section-program .program-swiper .program-slide img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 12px;
    }

    .section-program .program-title-1 {
        font-size: 26px;
    }

    .section-program {
        padding: 0px 0 23px;
    }

    .section-program .program-title-2 {
        font-size: 14px;
    }

}