/* Team Grid and Member Cards */
.team-section-title {
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid #6495ed;
    padding-left: 12px;
    font-size: 22px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 15px;
}

.member-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.member-card:hover {
    transform: translateY(-3px);
    border-color: rgba(100, 149, 237, 0.3);
}

.member-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.member-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #ffffff;
}

.member-role {
    font-size: 14px;
    font-weight: 600;
    color: #6495ed;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 14px;
    color: #cccccc;
    margin: 0 0 15px 0;
    flex-grow: 1;
}

.member-links {
    display: flex;
    gap: 15px;
    font-size: 13px;
}

.member-links a {
    color: #6495ed;
    font-weight: 500;
}

.member-links a:hover {
    text-decoration: underline;
}

