main {
	padding-top: var(--wp--custom--header-height);
}

.staff-card {
    display: grid;
    overflow: hidden;
    margin-top: 6rem;
    background-color: white;
}

.staff-card h2 {
    margin-bottom: 0;
    margin-top: 12px;
}

.staff-card .title {
    margin-top: 0;
    font-weight: 300;
}

.staff-card .bio {
    font-weight: 350;
    line-height: 1.6;
    font-size: 16px;
}

.left-image {
    grid-template-columns: 1fr 4fr;
}

.right-image {
    grid-template-columns: 4fr 1fr;
}

.staff-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.staff-card .text {
    padding: 16px 32px;
}

#staff-section {
    margin-bottom: 200px;
}

@media (max-width: 767px) {
    .staff-card {
        display: flex;
        margin-left: 8px;
        margin-right: 8px;
    }

    .staff-card.right-image {
        flex-direction: column-reverse;
    }

    .staff-card.left-image {
        flex-direction: column;
    }

    .staff-card img {
        height: unset;
        aspect-ratio: 5 / 4;
        object-position: 50% 40%;
    }

    
}