:root {
    --Ice-Flow: #e5e5e5;
    --Dark-Blue: #333;
    --Tahitian-Tide: #007a87;
    --primary-color: #007a87;
    --text-dark: #333;
    --text-light: #666;
}

.department-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.teams__section {
    padding: 0 0;
}

.teams__container {
    margin: 0 auto;
    padding: 0 0;
}

.teams__header {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.teams__title {
    font-size: 44px;
    font-weight: 900;
    color: #006C7F;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 50px;
    margin-bottom: 0;
    width: 21.18%;
}

.teams__slider__wrapper {
    width: calc(78.82% - 21.18%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.teams__slider__header__wrapper {
    position: relative;
    max-width: 66rem;
    margin: 0 auto;
    padding: 0 3rem;
}

.teams__slider__header {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.teams__slider__header h3 {
    font-size: 36px;
    font-weight: 700;
    color: #006C7F;
    text-transform: uppercase;
    margin-bottom: 0;
}

.teams__slider__nav {
    position: absolute;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    left: 0;
    right: 0;
}

.nav__arrow {
    background: none;
    border: none;
    font-size: 38px;
    color: #006C7F;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
}

.nav__arrow:hover,
.nav__arrow:active {
    opacity: 0.7;
    background: none;
}

.nav__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: none;
}

.teams__tabs {}

.teams__tab__buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.teams__tab__button {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    background: transparent;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.teams__tab__button.active {
    background: var(--primary-color);
    color: white;
    border: none;
}

.teams__tab__button:hover:not(.active) {
    background: rgba(0, 122, 135, 0.1);
    border: none;
}

.teams__slide {
    display: none;
}

.teams__slide.active {
    display: block;
}

.teams__tab__content {
    display: none;
}

.teams__tab__content.active {
    display: block;
}

.teams__items {
    display: flex;
    width: calc(100% + 4rem);
    margin: -2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.teams__item {
    width: calc(100% / 5 - 4rem);
    margin: 2rem;
    text-align: center;
}

.teams__item h6 {
    color: var(--Dark-Blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    height: 40px;
    margin-bottom: 0.5rem;
}

.teams__item p {
    margin-bottom: 0.25rem;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-light);
    height: 45px;
}

.teams__item a {
    color: var(--Dark-Blue);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
}

.teams__item a:hover {
    color: var(--primary-color);
}

.teams__item__img {
    max-width: 18rem;
    margin: 0 auto 1.5rem;
}

.teams__item .img__box {
    border-radius: 50%;
    overflow: hidden;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.teams__item .img__box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1200px) {
    .teams__item {
        width: calc(100% / 4 - 4rem);
    }
}

@media (max-width: 1024px) {
    .teams__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .teams__title {
        width: 100%;
        font-size: 42px;
    }
    
    .teams__slider__wrapper {
        width: 100%;
    }
    
    .teams__item {
        width: calc(100% / 3 - 4rem);
    }
}

@media (max-width: 768px) {
    .teams__title {
        font-size: 32px;
        line-height: 38px;
        text-align: center;
    }
    
    .teams__slider__header h3 {
        font-size: 20px;
    }
    
    .teams__item {
        width: calc(100% / 2 - 4rem);
    }
    
    .teams__tab__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .teams__item .img__box {
        width: 120px;
        height: 120px;
    }
    
    .teams__item h6 {
        font-size: 14px;
        height: 30px;
    }
    
    .teams__item p {
        font-size: 13px;
        height: auto;
    }
    
    .teams__item a {
        font-size: 13px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .teams__section {
        padding: 0;
    }
    
    .teams__items {
        padding: 0;
        width: 100%;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    
    .teams__item {
        width: 100%;
        margin: 0;
    }
    
    .teams__item .img__box {
        width: 100px;
        height: 100px;
    }
    
    .teams__item__img {
        margin-bottom: 0.75rem;
    }
    
    .teams__item h6 {
        font-size: 12px;
        margin-bottom: 0.25rem;
    }
    
    .teams__item p {
        font-size: 11px;
        margin-bottom: 0.25rem;
    }
    
    .teams__item a {
        font-size: 11px;
    }
    
    .nav__arrow {
        font-size: 32px;
        padding: 0.5rem;
    }
    
    .teams__tab__buttons {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .teams__tab__button {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
}
