.staff__group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.staff__group:last-of-type {
    margin-bottom: 0;
}

.group__name {
    width: 22%;
    margin-right: 15px;
}

.group__contacts {
    width: 27%;
    margin-right: 15px;
}

p.group__name--text {
    color: #7c4c00;
}

.group__description {
    width: 50%;
}

.staff__group:last-of-type p {
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .staff__group {
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    .group__name {
        width: 100%;
        margin-bottom: 4px;
    }
    .group__contacts {
        width: 45%;
    }
    .group__description {
        width: 52%;
    }
}