:root {
    --white: #fff;
    --txt: rgba(255, 255, 255, 0.74);
    --white: rgba(255, 255, 255, 1);
    --light-bg: rgba(255, 255, 255, 0.1);
    --black-bg: linear-gradient(90deg, #0A0A0A 0%, #171502 100%);
    --accent: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    --blur: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    --font-main: 'Saira', sans-serif;
    --font-title: 'Space Grotesk', sans-serif;
    --black-240: rgba(0, 0, 0, 0.24);
    --txt-740: rgba(255, 255, 255, 0.74);
    --white-100: rgba(255, 255, 255, 0.1);
}

.info-header {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 10px;
}

h1.page-title {
    margin: 0;
}

.info-contacts {
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 30px;
    gap: 30px;
}

.publication-date {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.74);
}

.site-link {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.info-contacts-list {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    max-width: max-content;
    gap: 10px;
}

.container {
    flex-flow: row wrap;
    column-gap: 20px;
}

.info-logo {
    display: flex;
    flex-flow: row;
    align-items: center;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 31px;
    text-align: center;
    color: #FFFFFF;
    gap: 20px;
}

.content {
    flex: 1;
}

aside {
    width: 100%;
    max-width: 290px;
}

/* .content-navigation {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
    gap: 5px;
    width: 100%;
    max-width: 290px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 20px;
} */

.content-navigation {
    position: sticky;
    top: 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 20px 30px;
    gap: 5px;

    width: 100%;
    max-width: 290px;

    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

.navigation-title {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: rgba(255, 255, 255, 0.74);
    margin: 0 0 5px 0;
}

ul.navigation {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 10px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.navigation>li {
    width: 100%;
    position: relative;
}

ul.navigation>li a span {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    word-wrap: break-word;
    color: #FFFFFF;
}

ul.navigation>li.active {
    padding-left: 16px;
}

ul.navigation>li.active a span {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

ul.navigation>li.active::before {
    position: absolute;
    display: block;
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    left: 0;
    top: 10px;
    border-radius: 50%;
}

.content {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 70px;
}

.content p {
    margin: 0;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.74);
}

.content p a {
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.content__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 10px;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.24);
    /* blur */
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    /* Note: backdrop-filter has minimal browser support */
    border-radius: 20px;
}

.content__item h2 {
    margin: 0 0;
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 700;
    font-size: 44px;
    line-height: 56px;
    color: rgba(255, 255, 255, 0.74);
}
.content__item h3 {
    margin: 0 0;
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 46px;
    color: rgba(255, 255, 255, 0.74);
}
.content__item ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.content__item ul>li {
    padding-left: 16px;
    position: relative;
    z-index: 2;
}

.content__item ul>li::before {
    position: absolute;
    left: 0;
    top: 13px;
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    border-radius: 50%;
}

.content__item ul>li a {
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    background: linear-gradient(90deg, #EADF82 0%, #EFA75E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.content__item ul>li{
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.74); 
}
.content__item ul>li:hover a {
    background: linear-gradient(90deg, #FFEF68 0%, #FF8000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.content__item ol {
    counter-reset: custom-ol-counter;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.content__item ol li {
    counter-increment: custom-ol-counter;
    position: relative;
    padding-left: 45px;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.74);
}

.content__item ol li::before {
    content: counter(custom-ol-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    min-width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-main);
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    leading-trim: both;
    text-edge: cap;
    text-align: center;
    color: #FFFFFF;
    padding: 3px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0px 0px 10px rgba(234, 223, 130, 0.34);
    backdrop-filter: blur(10px);
    border-radius: 10px;
}
@media (max-width: 1024px) {
    .content {
        margin-bottom: 50px;
    }

    .content__item h2 {
        font-size: 38px;
        line-height: 45px;
    }

    h1.page-title {
        font-size: 44px;
        line-height: 52px;
        margin: 0;
    }

    .info-header {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .content {
        flex: 0 0 100%;
    }

    .info-contacts {
        flex-wrap: wrap;
        gap: 10px 30px;
    }

    .content-navigation {
        display: none;
    }
}

@media (max-width: 768px) {
    .content__item h3{
        font-size: 28px;
        line-height: 28px;
    }
}

@media (max-width: 650px) {
    .info-logo {
        font-size: 16px;
        line-height: 25px;
        gap: 15px;
    }

    .info-logo img {
        max-width: 30px;
        height: auto;
    }
    .content__item{
        padding: 15px;
    }
    h1.page-title {
        font-size: 32px;
        line-height: 41px;
    }
    .content__item h2{
font-size: 28px;
line-height: 36px;
    }
    .info-header {
        margin-bottom: 15px;
    }

}

@media (max-width: 560px) {
    .content__item h3{
        font-size: 22px;
    }
    .content {
        margin-bottom: 40px;
    }
}