.banner {
    border-radius: var(--Border-md, 6px);
    border: 1px solid var(--Border-200, #E5E7EB);
    background: linear-gradient(93deg, #FEFFFE 0.12%, #F9FFFB 100%), url(/_master/_static/assets/simbolSyntetica.svg);
    backdrop-filter: blur(4px);
    padding: 80px;
    margin: 80px auto;
    background-repeat: no-repeat;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/_master/_static/assets/simbolSyntetica.svg') no-repeat;
    background-size: 28%;
    background-position: right center;
    pointer-events: none;
    z-index: 0;
}

.banner>h1 {
    color: var(--Text-Default, #111827);
    font-size: 34px;
    font-weight: 700;
    margin: 0px;
    padding-bottom: 24px;
}

.banner>p {
    overflow: hidden;
    color: var(--Text-Default, #111827);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    padding: 0px;
}

.section.release-notes {
    display: flex;
    position: static;
    margin-bottom: 40px;
}

.notes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 80%;
    margin-bottom: 60px;
}

.notes>:first-child {
    padding-top: 0px;
}

.note {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 60px;
}

.note h2 {
    margin-top: 0px;
    color: var(--Black-60, #70747D);
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.note h3 {
    color: var(--Text-Default, #111827);
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-top: 0px;
    margin-bottom: 0px;
}

.note h4 {
    color: var(--Text-Default, #111827);
    font-size: 18px;
    font-weight: 700;
    line-height: 160%;
}

.note ul {
    list-style-type: disc;
    padding-left: 20px;
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.note ul>li {
    gap: 24px;
    color: var(--Text-Default, #111827);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    padding-bottom: 1px;
}

/* SIDE BAR  */

.sidebar {
    padding: 0px 20px 20px;
    position: sticky;
    top: 0px;
    height: fit-content;
}

.sidebar h3 {
    padding-top: 12px;
    padding-left: 10px;
    border-left: 2px solid #e0e0e0;
    padding-bottom: 20px;
    color: var(--Black-40, #A0A3A9);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
}

.sidebar>ul {
    gap: 20px;
    list-style: none;
    gap: 20px;
    flex-direction: column;
}

.sidebar>ul>li {
    padding-left: 10px;
    border-left: 2px solid #e0e0e0;

}

.sidebar>ul>li>a {
    display: flex;
    color: var(--Black-40, #A0A3A9);
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 6px;
    padding-top: 6px;
    line-height: 160%;
}

.sidebar>ul>li:has(>a.active) {
    color: var(--Text-Link, #54AF73);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    border-left: 2px solid var(--primary, #54AF73);
}


@media (max-width: 700px) {

    .banner {
        background: linear-gradient(93deg, #FEFFFE 0.12%, #F9FFFB 100%);
    }

    section {
        width: -webkit-fill-available;
    }

    .section.release-notes {
        max-width: 90vw;
    }

    .banner {
        padding: 40px 20px;
        margin: 40px auto;
    }

    .banner>h1 {
        font-size: 24px;
    }

    .banner>p {
        font-size: 16px;
    }

    .sidebar {
        display: none;
    }

    .notes {
        width: fit-content;
    }

    .note {
        gap: 16px;
        width: 100%;
    }

    .note h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .note h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .note h4 {
        font-size: 16px;
    }

    .note ul>li {
        font-size: 16px;
    }
}