/* Club Banner */
.club-banner {
    text-align: center;
    /* margin-bottom: 40px; */
}
.club-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

/* Club About */
.club-about p {
    max-width: auto;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
    font-size: 18px;
    color: #444;
}



.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 5%;
    margin-bottom: 15px;
    border: 2px solid var(--accent-orange);
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #666;
}


.team-grid {
    justify-items: center;
}