/* ==========================================================================
   HERO SWIPER SLIDER BANNER - BEM 
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero__container {
    width: 100%;
    min-height: clamp(450px, 85vh, 550px);
}

.hero__slide {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: clamp(650px, 85vh, 850px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 300px;
    box-sizing: border-box;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero__slide>.container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* CONTAINER BAO BÊN NGOÀI */
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: #ffffff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero__content h1,
.hero__content h2,
.hero__content h3,
.hero__content h4,
.hero__content h5,
.hero__content h6,
.hero__content [class*="font-h"],
.hero__content .font-h2-l,
.hero__content .font-h2-m,
.hero__content .font-h2-s {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero__content [class*="font-body"],
.hero__content p,
.hero__content span,
.hero__content div {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__content p,
.hero__content div {
    font-style: italic;
}

.hero__content.align-left {
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
}

/* THẺ PHÂN TRANG SWIPER SLIDER (ĐÃ ĐỔI THÀNH NÚT TRÒN) */
.hero__pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Chấm tròn bình thường */
.hero__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Chấm tròn đang kích hoạt (Nổi bật & Phóng to nhẹ) */
.hero__pagination .swiper-pagination-bullet-active {
    background-color: var(--text-white, #ffffff);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}