.staffContainer {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-bottom: 1px solid var(--mainLight);
}
.staffContainer:last-of-type {
    border-bottom: none;
}
article p:has(img) {
    width: 50%;
}
@media only screen and (max-width: 950px) {
    article p:has(img) {
        width: 100%;
    }
}
@media only screen and (max-width: 730px) {
    .staffContainer {
        display:block;
    }
}