/* Grid Layout */
.team-members-grid {
    display: grid;
    gap: 30px;
}

.team-member {
    overflow: hidden;
}

.member-image {
    overflow: hidden;
    border-radius: 250px;
    width: 225px;
    height: 225px;
	    background-repeat: no-repeat;
    background-size: cover;
}

.member-image img.member-image-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    height: 225px;
    width: 225px;
}

.member-details {
    padding: 20px;
}

.team-board-of-directors .member-name {
    margin: 10px 0 5px 0;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}

.member-designation,
.member-organization,
.member-title {
    text-align: center;
    /* font-size: 1rem; */
    font-weight: 600;
}

.team-board-of-directors .member-designation
{
    text-transform: uppercase;
}

.member-email a {
    color: #2271b1;
    text-decoration: none;
}

.member-social-links {
    margin-top: 15px;
}

.member-social-links a {
    display: inline-block;
    margin-right: 10px;
    color: #2271b1;
    text-decoration: none;
}

/* Table Layout */
.team-members-table {
    width: 100%;
    border-collapse: collapse;
}

.team-members-table td {
    padding: 15px;
    vertical-align: top;
    border: 1px solid #ddd;
}

.team-members-table .member-image {
    height: auto;
    margin-bottom: 10px;
}

.team-members-table .member-image img {
    max-width: 100%;
    height: auto;
}

/* List Layout */
.team-members-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-members-list .team-member {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.team-members-list .member-image {
    flex: 0 0 100px;
    height: 100px;
    margin-right: 20px;
}

.team-members-list .member-details {
    flex: 1;
}
