/* Management Team Card Styles - Simplified Design */
.management-team-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(42, 183, 55, 0.1);
    position: relative;
}

.management-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    z-index: 1;
}

.management-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(42, 183, 55, 0.2);
}

.management-team-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.management-team-photo-container {
    position: relative;
    margin-bottom: 1.25rem;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.management-team-photo {
    width: 100%;
    height: 280px;
    border-radius: 0;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
    background: #f8f9fa;
}

.management-team-card:hover .management-team-photo {
    transform: scale(1.05);
}

.management-team-name {
    color: var(--dark-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.management-team-title {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
}
