.news {
    padding: 100px 0;
}

.news__container {
    margin: 0 auto;
    padding: 0 18px;
}

.news__head {
    margin-bottom: 40px;
}

.news__title {
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: #0F2940;
    margin: 0 0 50px;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.news-card {
    display: none;
    height: 100%;
    border-radius: 20px;
    background: #e8f3f8;
    overflow: hidden;
}

.news-card.is-visible {
    display: flex;
    flex-direction: column;
}

.news-card__image {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.news-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(211, 211, 211, 0.2);
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

.news-card__title {
    color: #0F2940;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0 0 5px;
}

.news-card__text {
    color: #0F2940;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding-top: 20px;
    gap: 10px;
    color: #2C8DE3;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.news-card__link:hover {
    opacity: 0.8;
}

.news-card__link svg {
    flex-shrink: 0;
    display: block;
}

.news__actions {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.news__more-btn {
    min-width: 230px;
    min-height: 60px;
    padding: 19px 20px 20px 20px;
    border: none;
    border-radius: 100px;
    background: #2C8DE3;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.news__more-btn:hover {
    opacity: 0.9;
}

.news__more-btn:active {
    transform: translateY(1px);
}

.news__more-btn.is-hidden {
    display: none;
}

@media (max-width: 1024px) {
    .news {
        padding: 64px 0;
    }

    .news__title {
        font-size: 38px;
    }

    .news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .news {
        padding: 48px 0;
    }

    .news__container {
        padding: 0;
    }

    .news__head {
        margin-bottom: 24px;
    }

    .news__title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .news__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-card {
        padding: 0;
        min-height: auto;
    }

    .news-card__title {
        font-size: 20px;
    }

    .news__actions {
        margin-top: 24px;
    }

    .news__more-btn {
        width: 100%;
        min-width: 0;
        min-height: 56px;
    }
}


.news-detail {
    padding: 50px 0 80px;
}

.news-detail__container {
    margin: 0 auto;
    padding: 0 18px 0 34px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.022em;
    margin-bottom: 10px;
}

.breadcrumbs a {
    display: flex;
    align-items: center;
    color: #2C8DE3;
    text-decoration: none;
}

.breadcrumbs a:not(:last-child)::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10' fill='none'%3E%3Cpath d='M1 1.00006L4 5.00006L1 9.00006' stroke='%232C8DE3' stroke-opacity='0.5' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 6px;
    height: 10px;
    margin-left: 10px;
}

.breadcrumbs a.active {
    color: #0F2940;
    pointer-events: none;
}

.article__hero {
    height: 360px;
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
}

.article__hero picture,
.article__hero img {
    display: block;
    width: 100%;
}

.article__hero img {
    height: auto;
    object-fit: cover;
    object-position: center;
}

.article__meta {
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(15, 41, 64, 0.5);
    gap: 20px;
    margin-bottom: 50px;
}

.article__meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article__intro {
    margin-bottom: 30px;
}

.article__title {
    color: #0F2940;
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.048em;
    margin: 0 0 20px;
}

.article__subtitle {
    color: #0F2940;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 15px;
}

.article__lead {
    color: #0F2940;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
}

.article__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 414px;
    gap: 50px;
    align-items: start;
}

.article__content {
    min-width: 0;
}

.article__sidebar {
    position: sticky;
    top: 110px;
    min-width: 0;
}

.article__sidebar_desktop {
    display: block;
}

.article-toc {
    border-radius: 20px;
    background: #E8F7FF;
    padding: 30px 70px 30px 30px;
}

.article-toc__title {
    color: #0F2940;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 15px;
}

.article-toc__nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.article-toc__nav a {
    color: #2C8DE3;
    font-size: 18px;
    line-height: 1.5;
    text-decoration: none;
}

.article-section {
    margin-bottom: 30px;
    scroll-margin-top: 40px;
}

.article__content > .article-section:not(._faq):not(.article-section_sources):nth-of-type(odd) {
    padding: 30px;
    border-radius: 20px;
    background: #E8F7FF;
    margin-left: -30px;
}

.article-section__title {
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
    color: #2C8DE3;
    margin: 0 0 15px;
}

.article-section p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    color: #0F2940;
    margin: 0 0 15px;
}

.article-section a {
    color: #2C8DE3;
    text-decoration: underline;
}

.article-section__image {
    margin-top: 20px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.article-section__image picture,
.article-section__image img {
    display: block;
    width: 100%;
}

.article-section__image img {
    height: auto;
    object-fit: cover;
}

.article-list {
    margin: 0 0 15px;
    padding-left: 22px;
    color: #0F2940;
}

.article-list li {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1.5;
}

.article-section__caption {
    color: #567089;
    font-size: 14px;
    line-height: 1.5;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__item:not(:last-child) {
    padding-bottom: 30px;
}

.faq__summary {
    position: relative;
    width: 100%;
    padding: 0 32px 15px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: #0F2940;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    font-family: inherit;
}

.faq__summary::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    width: 18px;
    height: 11px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='11' viewBox='0 0 18 11' fill='none'%3E%3Cpath d='M1 9.41406L9 1.41406L17 9.41406' stroke='%232C8DE3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: rotate(180deg);
    transition: transform 0.25s ease;
}

.faq__item.active .faq__summary::after {
    transform: rotate(0deg);
}

.faq__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__content p {
    margin: 0;
    color: #0F2940;
    font-size: 20px;
    line-height: 1.5;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    padding-top: 24px;
}

.article-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2C8DE3;
    font-size: 18px;
    line-height: 1.5;
    text-decoration: none;
}

.article-nav__link_prev::before,
.article-nav__link_next::after {
    content: '';
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    width: 17px;
    height: 12px;
}

.article-nav__link_prev::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='12' viewBox='0 0 17 12' fill='none'%3E%3Cpath d='M15.75 4.77297C16.1642 4.77297 16.5 5.10877 16.5 5.52297C16.5 5.93717 16.1642 6.27297 15.75 6.27297V4.77297ZM0.219645 6.05327C-0.0732555 5.76037 -0.0732555 5.28557 0.219645 4.99267L4.99264 0.219668C5.28554 -0.0732225 5.76044 -0.0732225 6.05334 0.219668C6.34624 0.512558 6.34624 0.987438 6.05334 1.28033L1.81064 5.52297L6.05334 9.76557C6.34624 10.0585 6.34624 10.5334 6.05334 10.8263C5.76044 11.1192 5.28554 11.1192 4.99264 10.8263L0.219645 6.05327ZM15.75 6.27297H0.750044V4.77297H15.75V6.27297Z' fill='%232C8DE3'/%3E%3C/svg%3E");
}

.article-nav__link_next::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='12' viewBox='0 0 17 12' fill='none'%3E%3Cpath d='M0.749996 4.77297C0.335786 4.77297 0 5.10877 0 5.52297C0 5.93717 0.335786 6.27297 0.749996 6.27297V4.77297ZM16.2804 6.05327C16.5733 5.76037 16.5733 5.28557 16.2804 4.99267L11.5074 0.219668C11.2145 -0.0732225 10.7396 -0.0732225 10.4467 0.219668C10.1538 0.512558 10.1538 0.987438 10.4467 1.28033L14.6894 5.52297L10.4467 9.76557C10.1538 10.0585 10.1538 10.5334 10.4467 10.8263C10.7396 11.1192 11.2145 11.1192 11.5074 10.8263L16.2804 6.05327ZM0.749996 6.27297H15.75V4.77297H0.749996V6.27297Z' fill='%232C8DE3'/%3E%3C/svg%3E");
}

.article-note {
    border-radius: 20px;
    border: 2px solid #E8F7FF;
    margin-bottom: 30px;
    padding: 30px;
}

.article-note p {
    color: #2C8DE3;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.article-sources ol {
    margin: 0;
    padding-left: 22px;
}

.article-sources li {
    margin-bottom: 5px;
    color: #0F2940;
    font-size: 20px;
    line-height: 1.5;
}

.article-sources-accordion__item {
}

.article-sources-accordion__trigger {
    position: relative;
    width: 100%;
    padding: 0 32px 15px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font: inherit;
}

.article-sources-accordion__trigger::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    width: 18px;
    height: 11px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='11' viewBox='0 0 18 11' fill='none'%3E%3Cpath d='M1 9.41406L9 1.41406L17 9.41406' stroke='%232C8DE3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: rotate(180deg);
    transition: transform 0.25s ease;
}

.article-sources-accordion__item.active .article-sources-accordion__trigger::after {
    transform: rotate(0deg);
}

.article-sources {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.article-sources__inner {
    padding: 0 0 20px;
}

@media (max-width: 1280px) {
    .article__layout {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .news-detail {
        padding: 24px 18px 64px 18px;
    }

    .news-detail__container {
        padding: 0;
    }

    .article__layout {
        display: flex;
        flex-direction: column-reverse;
    }

    .article__sidebar_desktop {
        position: static;
        width: 100%;
    }

    .article__title {
        font-size: 42px;
    }

    .article-section__title {
        font-size: 26px;
    }

    .article-toc {
        padding: 18px;
    }

    .article-toc_sticky {
        position: static;
    }
}

@media (max-width: 767px) {
    .breadcrumbs {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .article__hero {
        margin-bottom: 14px;
        border-radius: 16px;
    }

    .article__meta {
        gap: 12px;
        margin-bottom: 16px;
        font-size: 12px;
    }

    .article__title {
        margin-bottom: 12px;
        font-size: 32px;
        line-height: 1.02;
        letter-spacing: -0.02em;
    }

    .article__lead {
        font-size: 16px;
        line-height: 1.45;
    }

    .article-section {
        margin-bottom: 36px;
        scroll-margin-top: 90px;
    }

    .article-section:nth-child(even) {
        padding: 18px;
        border-radius: 16px;
    }

    .article-section__title {
        margin-bottom: 16px;
        font-size: 24px;
        line-height: 1.12;
    }

    .article-section p,
    .article-list li {
        font-size: 15px;
        line-height: 1.6;
    }

    .article-section__image {
        margin-top: 16px;
        border-radius: 16px;
    }

    .faq__summary {
        font-size: 16px;
        padding: 0 28px 14px 0;
    }

    .faq__content p {
        font-size: 15px;
    }

    .article-nav {
        flex-direction: column;
        align-items: flex-start;
        margin: 40px 0 20px;
    }

    .article-note {
        margin-bottom: 32px;
        padding: 16px;
        border-radius: 14px;
    }
}

.instruction__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.instruction__hero-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.instruction__hero-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: #0F2940;
}

.instruction__hero-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    border-radius: 100px;
    background: #2C8DE3;
    padding: 19px 40px 20px 40px;
    width: 300px;
}

.instruction__hero-image {
    width: 414px;
}

.instruction__hero-image img,
.instruction__hero-logo img {
    width: 100%;
    height: auto;
}

.instruction__section {
    color: #0F2940;
    margin-bottom: 60px;
}

.instruction__section h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    margin: 0 0 15px;
}

.instruction__section h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 15px;
}

.instruction__section p {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
}

.instruction__section p:not(:last-child) {
    margin: 0 0 15px;
}

.instruction__section a {
    color: #2C8DE3;
}

.instruction__section .underline {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .instruction__hero-logo {
        width: 300px;
    }

    .instruction__hero-image {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .instruction__hero {
        flex-direction: column;
        gap: 40px;
    }
}