/* Секция операторов колл-центра */
.callcenter-operators {
    padding: 100px 20px;
    color: var(--secondary-color);
    background: var(--white);
}

.callcenter-operators-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.callcenter-operators-title {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.callcenter-operators-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.callcenter-operators-swiper {
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.callcenter-operator-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-default);
    width: 100%;
    max-width: 380px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.callcenter-operator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.callcenter-operator-photo-wrap {
    height: 250px;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.callcenter-operator-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.callcenter-operator-photo-placeholder {
    width: 80px;
    height: 80px;
    background: #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 24px;
}

.callcenter-operator-slide:hover .callcenter-operator-photo {
    transform: scale(1.05);
}

.callcenter-operator-info {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.callcenter-operator-name {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.callcenter-operator-name {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--secondary-color);
    margin-bottom: 20px;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.2;
}

.callcenter-operator-name .first-name {
    display: block;
    margin-bottom: 5px;
}

.callcenter-operator-name .last-name {
    display: block;
    font-size: 20px;
    color: var(--secondary-color);
}

.callcenter-operator-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 183, 125, 0.2);
    margin-top: auto;
    align-self: center;
}

.callcenter-operator-button:hover {
    background: #0ea371;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 183, 125, 0.3);
}

.callcenter-operator-button:active {
    transform: translateY(0);
}

.callcenter-operator-button i {
    font-size: 16px;
}

/* Стили для состояния воспроизведения */
.callcenter-operator-button.playing {
    background: #dc2626;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.callcenter-operator-button.playing:hover {
    background: #b91c1c;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

/* Пагинация */
.callcenter-operators-pagination {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.callcenter-operators-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.callcenter-operators-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Адаптивность */
@media (max-width: 992px) {
    .callcenter-operators {
        padding: 80px 20px;
    }

    .callcenter-operators-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .callcenter-operators {
        padding: 60px 20px;
    }

    .callcenter-operators-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .callcenter-operators-swiper {
        margin: 0 auto;
        max-width: 350px;
    }

    .callcenter-operator-card {
        width: 320px;
        margin: 0 15px;
    }

    .callcenter-operator-photo-wrap {
        height: 250px;
    }

    .callcenter-operator-info {
        padding: 20px;
    }

    .callcenter-operator-name {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .callcenter-operators {
        padding: 40px 15px;
    }

    .callcenter-operators-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .callcenter-operators-swiper {
        margin: 0 auto;
        max-width: 320px;
    }

    .callcenter-operator-card {
        max-width: 300px;
        margin: 0 10px;
    }
}