.office-subnav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 34px;
    padding: 8px;
    border: 1px solid #dfe4e8;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(11, 32, 53, .05);
}

.office-subnav__button {
    min-height: 62px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 3px;
    color: #425160;
    background: transparent;
    font-family: "ABC Diatype", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.office-subnav__button:hover,
.office-subnav__button:focus {
    border-color: #d8a4ac;
    color: #8f2938;
    background: #fff7f8;
    outline: none;
}

.office-subnav__button.is-active,
.office-subnav__button[aria-selected="true"] {
    border-color: #8f2938;
    color: #fff;
    background: #8f2938;
}

.office-subnav__button.is-active:hover,
.office-subnav__button.is-active:focus,
.office-subnav__button[aria-selected="true"]:hover,
.office-subnav__button[aria-selected="true"]:focus {
    color: #fff;
    background: #a63445;
}

.office-panel[hidden] {
    display: none !important;
}

.office-panel .c-desc {
    color: #000;
}

.office-panel .office-email-addresses,
.office-panel .office-email-addresses * {
    color: #8f2938 !important;
    font-weight: 700 !important;
}

@media (max-width: 767px) {
    .office-subnav {
        grid-template-columns: 1fr;
        gap: 7px;
        margin-bottom: 26px;
    }

    .office-subnav__button {
        min-height: 50px;
        text-align: left;
    }
}
