/* MEMBERS */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
    gap: 3rem;
    margin-top: 2rem;
    justify-content: center;
}
  
.team-card {
    background-color: var(--container-color);
    border: 5px solid #3a88db7b;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.team-card img {
    width: 80%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-card h4 {
    font-size: 1.1rem;
    color: var(--title-color);
    margin-bottom: 0.5rem;
}

.team-card p {
    font-size: 0.95rem;
    color: #666;
}

.card-title {
    color: var(--par-title-color);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
  }