.people{

}
.people__titleBlock {
    color: var(--inactive);
    font-style: italic;
    font-size: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}
.people__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.people__body{
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 40px;
}
.people__item{}
.people__image{
    display: block;
    height: 366px;
    width: 100%;
    margin-bottom: 8px;
}
.people__image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center; */
    object-position: top;
}
.people_name{
    font-weight: 500;
    font-size: 24px;
    margin-bottom: px;
    letter-spacing: -.8px;
}
.people_post{
    line-height: 1.1;
    color: var(--inactive);
    font-style: italic;
}
.people__footer{
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


@media screen and (max-width: 992px) {
    .people__body {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media screen and (max-width: 768px) {
    .people__titleBlock {
        font-size: 30px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .people__body {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
        row-gap: 20px;
    }
    .people__button {
        display: none;
    }
    .people__image {
        height: auto;
    }
}


@media screen and (max-width: 576px) {
    .people__image {
        height: 210px;
    }
    .people_name {
        font-size: 15px;
        margin-bottom: 2px;
    }
    .people_post {
        font-size: 12px;
    }
    .people__titleBlock {
        font-size: 20px;
    }
}