﻿.employee-section {
    padding: 60px 0;
    background-color: #fff;
}

.employee-content {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.employee-item {
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.employee-item:hover {
    transform: translateY(-8px);
}

.employee-image {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.employee-image img {
    width: 264px;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.employee-item:hover .employee-image img {
    transform: scale(1.05);
}

.employee-title h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.employee-title p {
    font-size: 14px;
    color: #666;
    margin: 0;
}