/*
 * McGinnis Loy Team Members Styles
 * Updated with user-provided styles.
 */

/* Main wrapper for the entire team section */
.team-members-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px; /* Vertical and horizontal gap */
    padding: 20px 0;
}

/* Container for a single team member */
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 220px;
}

/* === Your Provided Styles Start Here === */

/* Photo container - applies grayscale filter */
.team-member-photo {
    filter: grayscale(1);
}

/* The actual photo image */
.team-member-photo img {
    border-radius: 50%;
    max-width: 125px;
    height: auto;
}

/* Team member's name */
h3.team-member-name {
    font-size: 16px !important;
    color: #000000;
    font-weight: normal !important;
    font-style: normal;
    text-align: center;
    text-transform: none;
    margin-top: 15px;
    margin-bottom: 5px;
}

/* Team member's role/title */
p.team-member-role {
    font-size: 14px;
    color: rgba(110, 110, 110, 1);
    font-weight: normal;
    font-style: normal;
    text-align: center;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 10px;
}

/* LinkedIn icon link */
.team-member-linkedin {
    font-weight: bold;
    color: #6B0208;
    text-decoration: none;
    font-family: "LinkedIn", sans-serif;
    font-size: 18px;
}