.contact-section__people {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.employees-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.employee-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.employee-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4a4a4a;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.employee-card--small img {
    margin: 24px 24px 0px 24px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.employee-card--large img {
    width: 100%;
    height: auto;
    aspect-ratio: 6 / 7;
    object-fit: cover;
    border-radius: 12px 12px 0px 0px;
}

.employee-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    user-select: text;
}

.employee-card__name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px;
    color: #111827;
}

.employee-card__role {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6b7280;
}

.employee-card__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 2px;
    user-select: all;
}

.employee-card__phone::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1-9.4 0-17-7.6-17-17 0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.employee-card__email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    word-break: break-all;
    user-select: all;
}

.employee-card__email::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.employee-card__email:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .employees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section__people {
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .employees-grid {
        grid-template-columns: 1fr;
    }
}