.operators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.operator-card {
    border: 1px solid #ddd;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.operator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.operator-photo {
    margin-bottom: 15px;
    text-align: center;
}

.operator-photo.square img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.operator-photo.circle img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.operator-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.operator-header {
    margin-bottom: 15px;
}

.operator-name {
    margin: 0 0 8px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.operator-specialization {
    line-height: 1.4;
}

.operator-rate {
    margin-bottom: 15px;
    font-weight: bold;
}

.operator-description {
    margin-bottom: 15px;
    line-height: 1.4;
    flex: 1;
}

.operator-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .operators-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .operators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .operators-grid {
        grid-template-columns: 1fr;
    }
}