/* ===== Highlight Section ===== */
.section-highlight {
    padding: 15px;
    margin-left: 15px;
    margin-right: 15px;
}

.highlight-title {
    line-height: 1.5;
    text-align: center;
    font-size: 2rem;
}

.highlight-swiper-container {
    position: relative;
    overflow: unset;
    padding-left: 7px;
    padding-right: 7px;
}

.highlight-swiper .swiper-wrapper {
    align-items: stretch;
}

.highlight-swiper .swiper-slide {
    height: auto;
}

.highlight-card {
    height: 100%;
}

.highlight-card .highlight-card-content {
    padding: 20px;
}

.highlight-card-title {
    font-size: 1.6rem;
}

.highlight-card-desc {
    font-size: 1.3rem;
}

.highlight-card-img {
    aspect-ratio: 810/540;
    background-color: #E4E5E6;
}

/* Arrow styles */
.highlight-arrow-prev,
.highlight-arrow-next {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    background-color: rgb(129 129 129 / 50%);
    border: 1px #fff solid;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
    position: absolute;
    top: 50%;
    margin-top: -20px;
}

.highlight-arrow-prev::before,
.highlight-arrow-next::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: transform 0.3s ease;
}

.highlight-arrow-prev {
    left: 3px;
}

.highlight-arrow-prev::before {
    -webkit-mask-image: url('https://www.sansiri.com/location/images/blue-chevron-left.svg');
    mask-image: url('https://www.sansiri.com/location/images/blue-chevron-left.svg');
}

.highlight-arrow-prev:hover::before {
    transform: translateX(-3px);
}

.highlight-arrow-next {
    right: 3px;
}

.highlight-arrow-next::before {
    -webkit-mask-image: url('https://www.sansiri.com/location/images/blue-chevron-right.svg');
    mask-image: url('https://www.sansiri.com/location/images/blue-chevron-right.svg');
}

.highlight-arrow-next:hover::before {
    transform: translateX(3px);
}

.highlight-arrow-prev:hover,
.highlight-arrow-next:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.highlight-arrow-prev:hover::before,
.highlight-arrow-next:hover::before {
    background-color: #0053B5;
}

.highlight-arrow-prev.swiper-button-disabled,
.highlight-arrow-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

@media (min-width: 768px) {
    .highlight-card .highlight-card-content {
        padding: 30px !important;
    }
}

@media (min-width: 992px) {
    .highlight-title {
        font-size: 3.6rem;
    }

    .highlight-card-title {
        font-size: 2rem;
    }

    .highlight-card-desc {
        font-size: 1.6rem;
    }
}

@media (min-width: 1200px) {
    .section-highlight {
        padding: 40px;
        margin-left: 40px;
        margin-right: 40px;
    }

    .highlight-arrow-prev,
    .highlight-arrow-next {
        width: 50px;
        height: 50px;
        margin-top: -25px;
    }

    .highlight-arrow-prev::before,
    .highlight-arrow-next::before {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 1400px) {
    .highlight-swiper-container {
        padding-left: 60px;
        padding-right: 60px;
    }
}
