.policy__wrapper {
    position: relative
}

@media (min-width: 1200px) {
    .policy {
        margin: 20px 0 0
    }

    .policy__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 20px
    }
}

.policy__side {
    margin-bottom: 20px
}

@media (min-width: 1200px) {
    .policy__side {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 100%;
        max-width: 325px;
        position: sticky;
        top: calc(var(--header-height) + 24px);
        left: 0;
        margin-bottom: 0
    }
}

.policy__side-toggle {
    color: var(--black);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-transform: uppercase;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.policy__side-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px
}

.policy__side-link {
    font-size: var(--text-size);
    font-weight: var(--fw-bold);
    line-height: var(--lh-sm);
    color: var(--black)
}

.policy__side-link.is-active .policy__side-link-text {
    background-size: 100% 100%
}

.policy__side-link-text {
    width: 100%;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    background-repeat: no-repeat;
    background-size: 0 100%;
    -webkit-transition: background-size var(--transition);
    transition: background-size var(--transition)
}

@media (min-width: 1200px) {
    .policy__main {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }
}

.policy__title {
    font-size: var(--text-size-36);
    font-weight: var(--fw-bold);
    line-height: var(--lh-sm);
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 20px
}

.policy__content ol:not(:first-child), .policy__content p:not(:first-of-type), .policy__content ul:not(:first-child) {
    margin-top: 0
}

.policy__content h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase
}
