.staff-section { 
    padding-block: 80px;
    background-color: rgba(242, 244, 245, 1);
}

.staff-section .container { 

}

.staff-section .container .staff-section__content { 

}

.staff-section .container .staff-section__content .staff-section__title-wrapper { 

}

.staff-section .container .staff-section__content .staff-section__title-wrapper .pre-title {
    margin-bottom: 8px;
}

.staff-section .container .staff-section__content .staff-section__title-wrapper .staff-section__title {
    text-align: center;
    margin-bottom: 40px;
}

.staff-section .container .staff-section__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 40px;
}

.staff-section .container .staff-section__grid .staff-section__grid-item { 
    width: calc(33.333% - 40px);
    max-width: 400px;
}

.staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-image { 
    width: 100%;
    height: auto;
    aspect-ratio: 1/1.5;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 16px;
}


.staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-details { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}

.staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-details .staff-section__grid-item-name-and-job { 

}

.staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-details .staff-section__grid-item-name-and-job h3 { 
    font-family: CircularXX TT;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 4px;
}

.staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-details .staff-section__grid-item-name-and-job .staff-section__grid-item-title { 
    font-family: CircularXX TT;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    vertical-align: middle;
    color: rgba(138, 147, 172, 1);
}

.staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-details .show-bio-button { 
    padding-block: 5px;
    min-width: 106px;
}

@media (max-width: 992px) {
    .staff-section .container .staff-section__grid .staff-section__grid-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .staff-section { 
        padding-block: 40px;
    }

    .staff-section .container .staff-section__grid {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .staff-section .container .staff-section__grid .staff-section__grid-item {
        width: 100%;
    }

    .staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-image { 
        aspect-ratio: 328/426;
    }

    .staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-details{
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-details .staff-section__grid-item-name-and-job { 
        width: 100%;
    }

    .staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-details .staff-section__grid-item-name-and-job h3,
    .staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-details .staff-section__grid-item-name-and-job .staff-section__grid-item-title { 
        text-align: center;
    }

    .staff-section .container .staff-section__grid .staff-section__grid-item .staff-section__grid-item-details .show-bio-button{
        width: 100%;
    }
    
}


