.section p {
    margin: 0;
}

.info-page {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.info-page__aside {
    width: 280px;
    flex: none;
}

.info-page__content {
    flex: 1 1 auto;
}

.side-nav {
    width: 200px;
    max-width: 100%;
    height: 100%;
    border-right: 2px solid var(--br-br-primary);
}

.side-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav__item {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 14px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--tx-tx-secondary);
}

.side-nav__item--current {
    color: var(--bg-bg-button-chips);
}

.side-nav__item:not(:last-child) {
    margin-bottom: 23px;
}

.info-page__title {
    margin: 0 0 32px;
}

.section:not(:first-child) {
    margin-top: 36px;
}

.info-page__subtitle {
    font-size: 24px;
    line-height: 120%;
    margin-top: 36px;
    margin-bottom: 12px;
}

.info-page__subtitle:first-child {
    margin-top: 0;
}

.info-page__subtitle:last-child {
    margin-bottom: 0;
}

.info-page__top {
    margin-bottom: 20px;
}

.info-page__top-link {
    display: inline-flex;
    align-items: center;
}

.info-page__top-icon {
    width: 16px;
    height: 16px;
    fill: #999999;
    flex: none;
    margin-top: 1px;
}

.info-page__text {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: var(--bg-bg-button-chips);
}

.info-page__text h4 {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: var(--bg-bg-button-chips);
    margin-bottom: 4px;
    text-transform: none;
}

.info-page__text h4 + p {
    margin-top: 0;
}

.info-page__bottom {
    margin-top: 36px;
}

@media (max-width: 767px) {
    .info-page__top {
        margin-bottom: 10px;
    }

    .info-page__subtitle {
        font-size: 20px;
        line-height: 112%;
    }
}