﻿.abt_team-section {
    background: #1A1A1A;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    padding: 100px 0 60px;
}

.abt_team-container {
    max-width: 1400px; /* Giống history-container */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.abt_team-header {
    text-align: center;
    margin-bottom: 40px;
}

.abt_team-title {
    font-size: 36px;
    font-weight: 700;
    color: #D4A017;
}

    .abt_team-title span {
        color: #fff;
    }

/* Swiper Slider */
.abt_team-slider {
    position: relative;
    padding: 0 10px;
}

/* Slide Items */
.abt_team-member {
    text-align: center;
    transition: transform 0.4s ease;
}

    .abt_team-member img {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 15px;
        border: 4px solid #2a2a2a;
        transition: all 0.4s ease;
    }

    .abt_team-member h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #D4A017;
    }

    .abt_team-member p {
        font-size: 14px;
        color: #ccc;
        margin: 0;
    }

    /* Hover */
    .abt_team-member:hover img {
        transform: scale(1.12);
        border-color: #FFD700;
    }

/* Navigation */
.abt_team-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px; /* Lùi vào container */
    transform: translateY(-50%);
    z-index: 10;
}

    .abt_team-nav .swiper-button-prev,
    .abt_team-nav .swiper-button-next {
        width: 42px;
        height: 42px;
        background: #2a2a2a;
        color: #D4A017;
        font-size: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(212,160,23,0.35);
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .abt_team-nav .swiper-button-prev::after {
            content: "<";
        }

        .abt_team-nav .swiper-button-next::after {
            content: ">";
        }

/* Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.swiper-pagination-bullet {
    background: #444;
    opacity: 1;
    margin: 0 6px;
}

.swiper-pagination-bullet-active {
    background: #FFD700;
}

/* Responsive */
@media (max-width: 1024px) {
    .abt_team-member img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .abt_team-member img {
        width: 140px;
        height: 140px;
    }

    .abt_team-member h3 {
        font-size: 16px;
    }

    .abt_team-member p {
        font-size: 12px;
    }
}
