.team-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 36px;
}
.team-section .team-section__title {
        margin-bottom: 24px;
        color: var(--color-dark);
        text-align: center;
        font-size: 32px;
        font-weight: 600;
        letter-spacing: -1.28px;
    }
.team-section .team-swiper {
        padding-bottom: 24px !important;
        position: relative;
    }
.team-section .team-swiper__pagination-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 40px;
    }
.team-section .team-swiper .swiper-pagination {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: -moz-fit-content;
        width: fit-content;
        margin-top: 16px;
    }
.team-section .team-swiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: var(--color-secondary-muted);
        opacity: 1;
    }
.team-section .team-swiper .swiper-pagination-bullet-active {
        background: var(--color-dark);
    }
.team-section .team-swiper__nav {
        min-width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--color-dark);
        color: var(--color-primary);
        margin: 0 8px;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        cursor: pointer;
    }
.team-section .team-swiper__nav::after {
        display: none;
    }
.team-section .team-swiper__nav img {
        width: 24px;
        height: 24px;
        -o-object-fit: contain;
           object-fit: contain;
    }
.team-section .team-swiper__nav.swiper-button-disabled {
        background: var(--color-secondary-muted);
        opacity: 1;
        cursor: not-allowed;
    }
.team-section .team-swiper__nav:not(.swiper-button-disabled):hover {
        transform: scale(1.05);
    }
.team-section .team-card {
        width: 100%;
        height: 100%;
        max-width: 330px;
        display: flex;
        padding: 16px;
        flex-direction: column;
        flex: 1 0 0;
        border-radius: 16px;
        background: var(--color-surface);
        justify-self: center;
    }
.team-section .team-card__image {
        width: 100%;
        height: auto;
        aspect-ratio: 1.1;
        border-radius: 8px;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: top;
           object-position: top;
    }
.team-section .team-card__info {
        display: flex;
        padding: 24px 0;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        align-self: stretch;
        border-radius: 0 16px 16px 0;
    }
.team-section .team-card__name {
        color: var(--color-dark);
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        letter-spacing: -0.96px;
    }
.team-section .team-card__role {
        font-size: 16px;
        font-weight: 400;
        color: var(--color-dark);
    }
.team-section .team-card__email {
        font-size: 14px;
        font-weight: 400;
        color: var(--color-dark);
    }
.team-section .team-card__actions {
        display: flex;
        width: 100%;
    }
.team-section .team-card__actions .team-card__button--call {
            z-index: 2;
            border-radius: 16px;
        }
.team-section .team-card__actions .team-card__button--message {
            border-radius: 0 16px 16px 0;
        }
.team-section .team-card__actions .team-card__button--message::before {
            content: "";
            position: absolute;
            left: -36px;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 36px;
            background: var(--color-surface);
            border-radius: 16px;
            z-index: 1;
        }
.team-section .team-card__actions .team-card__button {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 8px 12px;

            background: var(--color-primary);
            justify-content: center;
            position: relative;
            gap: 10px;
        }
.team-section .team-card__actions .team-card__button span {
                color: var(--color-dark);
                font-size: 16px;
                font-weight: 400;
                letter-spacing: -0.64px;
                white-space: nowrap;
            }
.team-section .team-card__actions .team-card__button:hover {
            transform: scale(1.05);
        }
.team-section .team-card__actions .team-card__button-icon {
            width: 16px;
            height: 16px;
            -o-object-fit: contain;
               object-fit: contain;
        }
@media screen and (max-width: 768px) {
    .team-section {
        padding: 24px 16px;
    }
        .team-section .team-swiper__pagination-wrapper {
            margin-top: 32px;
        }
        .team-section .team-card {
            max-width: none;
            max-width: initial;
        }
}
@media screen and (min-width: 900px) {
        .team-section .team-swiper__pagination-wrapper {
            display: none;
        }
}
