.staff-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 24px;
}
@media (min-width: 500px) {
	.staff-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 800px) {
	.staff-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1080px) {
	.staff-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
.staff-grid .staff-grid__member {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 16px;
}
.staff-grid .staff-grid__headshot {
    width: 150px;
	height: 150px;
	object-fit: cover;
	object-position: center;
    border-radius: 100%;
    border: 1px solid #DADEEA;
}
.staff-grid .staff-grid__name {
    font-weight: 800;
    font-size: 1.125rem;
    line-height: 1.25;
    margin-top: 16px;
    margin-bottom: 8px;
	text-align: center;
}
.staff-grid .staff-grid__job-title {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.25;
    margin-top: 0;
	text-align: center;
}
.staff-grid .staff-grid__bio {
    font-size: 0.8125rem;
    padding: 16px;
    background-color: #3357e6;
    line-height: 1.5;
    color: #ffffff;
    border-radius: 10px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 100ms linear;
    z-index: 1;
}
.staff-grid .staff-grid__bio > :last-child {
    margin-bottom: 0;
}
.staff-grid .staff-grid__bio strong {
    font-weight: 700;
}
.staff-grid .staff-grid__member:hover .staff-grid__bio {
    opacity: 1;
}