/* ==================================================
Team Grid
================================================== */
#top .__team--grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
    gap: 2rem 4rem;
}
#top .__team--grid > .__team--member{
    display: flex;
    flex-flow: column wrap;
    gap: 1rem;
    align-items: flex-start;
}
#top .__team--grid > .__team--member > img{
    background: #e4e4e4;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
    margin: 0 0 1rem 0;
}
#top .__team--grid > .__team--member > h4{
    margin: 0 !important;
    display: inline-block;
    padding: .5em;
    background: var(--orthoplace-fresh-blue);
    border-radius: .5rem;
	font-size: var(--step-0);
}
#top .__team--grid > .__team--member > .__position{
    line-height: 1.2;   
}