/* Style for each headshot container */
.headshot {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    max-width: 15rem;
    margin-right: 2rem;
    margin-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.headshot-image img {
    max-width: 100%;
    height: auto;
    width: auto;
    vertical-align: middle; /* Align the image vertically in the middle */
    display: inline-block; /* Make the image an inline block */
}

/* Additional styling for layout responsiveness */
.row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.headshot-name{
    margin: auto;
}

.margin-bottom{
    margin-bottom: 6rem;
}

.past-leadership {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.past-leadership h3 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.past-leadership__table {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    row-gap: 1.75rem;
}

.past-leadership__row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 3rem;
}

.past-leadership__row--head {
    font-weight: 600;
}

.past-leadership__cell {
    text-align: left;
}

@media (max-width: 768px) {
    .past-leadership__row {
        grid-template-columns: 1fr;
        row-gap: 0.35rem;
    }
}
