.team-hero {
    padding: 70px 20px;
    text-align: center;
    background: hsl(0, 0%, 99%);
    color: #9E1B53;
}

.team-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 25px;
}

.team-controls input,
.team-controls select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 220px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 40px;
}

.team-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-card h3 {
    margin-bottom: 6px;
}

.team-card span {
    color: #1EB6E8;
    font-weight: 600;
}

.team-card button {
    margin-top: 15px;
    padding: 10px 18px;
    border: none;
    background: #1EB6E8;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}
