/* ==========================================================================
   OFFICE GALLERY SECTION - FULL WIDTH SLIDER
   Path: template-parts/sections/office-gallery/style.css
   ========================================================================== */

.sec-office-gallery {
    padding-top: 50px;
    padding-bottom: 30px;
    background-color: var(--color-surface);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Khung tiêu đề giữ căn lề chuẩn hệ thống */
.office-gallery__header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.office-gallery__title {
    font-family: var(--ff-h3);
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: var(--fw-h3);
    color: var(--text-title);
    margin-top: 0;
    margin-bottom: var(--space-heading-bottom);
    text-transform: none;
}

/* Khung Slider tràn 100% màn hình */
.office-gallery__slider-wrapper {
    width: 100%;
    position: relative;
}

.office-gallery__swiper {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.office-gallery__swiper:active {
    cursor: grabbing;
}

.office-gallery__slide {
    height: auto;
    box-sizing: border-box;
}

.office-gallery__item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10; /* Tỷ lệ hiển thị ảnh chữ nhật rộng */
    overflow: hidden;
}

.office-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: var(--transition-base, transform 0.4s ease);
}

.office-gallery__item:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   PHÂN TRANG DẠNG VIÊN THUỐC (PILL PAGINATION)
   ========================================================================== */
.office-gallery__pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 10px;
    z-index: 10;
}

.office-gallery__pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background-color: #cbd5e1;
    opacity: 0.8;
    border-radius: 50%;
    margin: 0 !important;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.office-gallery__pagination .swiper-pagination-bullet:hover {
    background-color: #94a3b8;
}

/* Chấm Active biến thành viên thuốc dài */
.office-gallery__pagination .swiper-pagination-bullet-active {
    width: 24px;
    height: 7px;
    border-radius: 10px;
    background-color: var(--color-primary-second, #456967);
    opacity: 1;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .sec-office-gallery {
        padding-top: 40px;
        padding-bottom: 25px;
    }

    .office-gallery__item {
        aspect-ratio: 16 / 9;
    }

    .office-gallery__title {
        font-size: var(--fs-h4);
    }

    .office-gallery__pagination {
        margin-top: 18px;
    }
}