.anchors-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    padding-top: 40px;

    .on-this-page-text {
        color: #002B46;
        font-family: Inter;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        margin: 0;
    }
    .anchor-items {
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .anchor-item {
        display: flex;
        align-items: center;
        width: 100%;
        border-left: 1px solid #D9D9D9;
        transition: border-left 0.1s ease, background 0.1s ease;
    }
    .anchor-item a {
        color: #002B46;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        padding: 12px 20px;
        width: 100%;
        transition: font-weight 0.1s ease;
    }
    @media (min-width: 768px) {
        .anchor-item:hover {
            border-left: 2px solid #00B5D3;
            background: rgba(0, 181, 211, 0.10);
        }
        .anchor-item:hover a {
            font-weight: 500;
        }
    }
    @media (max-width: 768px) {
        padding-top: 20px;
        padding-bottom: 20px;

        .on-this-page-text {
            font-size: 20px;
        }
        .anchor-items {
            border-left: 1px solid #D9D9D9;
            gap: 20px;
        }
        .anchor-item {
            padding: 0 20px;
            border-left: unset;
        }
        .anchor-item a {
            font-size: 16px;
            line-height: 130%; /* 20.8px */
            text-decoration-line: underline;
            text-decoration-style: solid;
            text-decoration-skip-ink: auto;
            text-decoration-thickness: auto;
            text-underline-offset: auto;
            text-underline-position: from-font;
            padding: 0;
        }
    }
}