/* Team Grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* spacing between cards */
    justify-content: center; /* center cards on desktop */
}

/* Team Card */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Team Logo */
.team-logo {
    font-size: 48px;
    margin-bottom: 12px;
}

/* Responsive: single column on mobile */
@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        width: 90%; /* almost full width on mobile */
    }
}
