.offices__item__body {
    display: grid;
    grid-template-columns: 5fr 2fr;
    grid-gap: 30px;
}

.offices__item__header {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    text-transform: uppercase;
    font-weight: bold;
}

.offices__item__location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.offices__item__address {
    display: flex;
    gap: 10px;
    align-items: center;
}

.offices__item__address:before {
    content: '';
    display: block;
    width: 19px;
    height: 19px;
    min-width: 19px;
        background: url(/images/representatives/place.svg) left center no-repeat;
}

.offices__item__working-time__info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.offices__item__working-time__info:before {
    content: '';
    display: block;
    min-width: 19px;
    height: 19px;
    background: url(/images/representatives/time.svg) left center no-repeat;
}

.offices__item__route {
    color: #F0592B;
    text-decoration: underline;
}

.offices__item__working-time__info {
    margin-bottom: 10px;
}

.offices__item__working-time__remark {
    margin-bottom: 30px;
}

.offices__items {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.offices__item__address {
    font-weight: 600;
}

.representatives-page .dynamic-pages-wrapper {
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .offices__item__body {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}