

/* Start:/local/components/sections/checks.detail/templates/.default/style.css?176471556079698*/
/* Импорт стилей для карточек */
@import url('/local/dist/components/news-card/news-card.css');
@import url('/local/dist/components/media-card/media-card.css');
@import url('/local/dist/components/bulletins-card/bulletins-card.css');

/* CSS переменные */
:root {
    --color-white: #FDFCFF;
    --color-dark-blue: #161333;
    --color-dark-blue-10: rgba(22, 19, 51, 0.1);
    --color-dark-blue-40: rgba(22, 19, 51, 0.4);
    --color-bright-blue: #3D61F3;
    --color-blue-sky: #CCEFFF;
    --color-light-gray: #F3F2F5;
}

/* Стили для детальной страницы проверки */
.check-detail {
    width: 100%;
}

.check-detail__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header wrapper с темным фоном */
.check-detail__header-wrapper {
    padding-top: 20px;
    padding-bottom: 80px;
    background: var(--color-dark-blue);
}

/* Кнопка "Назад" */
.check-detail__back-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px 12px 14px;
    margin-bottom: 32px;
    background: rgba(199, 237, 255, 0.16);
    border-radius: 6px;
    color: #CCEFFF;
    text-decoration: none;
    transition: all 200ms ease;
}

.check-detail__back-link::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.8 5L4 10M4 10L8.8 15M4 10H16' stroke='%23CCEFFF' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: background-image 200ms ease;
}

.check-detail__back-link span {
    color: #CCEFFF;
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 200ms ease;
}

@media (hover: hover) {
    .check-detail__back-link:hover {
        background: #CCEFFF;
    }

    .check-detail__back-link:hover::before {
        background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.8 5L4 10M4 10L8.8 15M4 10H16' stroke='%23161333' stroke-width='1.5'/%3E%3C/svg%3E");
    }

    .check-detail__back-link:hover span {
        color: #161333;
    }
}

/* Заголовок */
.check-detail__head {
    max-width: 1278px;
    margin: 0 auto;
    width: 100%;
    color: #CCEFFF;
}

.check-detail__meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 40px;
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #CCEFFF;
}

.check-detail__category {
    color: #CCEFFF;
}

.check-detail__date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-detail__date::before {
    content: '';
    display: inline-block;
    height: 18px;
    width: 1.5px;
    background: #CCEFFF;
    margin: 0 10px;
}

.check-detail__views {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-detail__views::before {
    content: '';
    display: inline-block;
    height: 18px;
    width: 1.5px;
    background: #CCEFFF;
    margin: 0 10px;
}

.check-detail__title {
    margin: 0;
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 50px;
    text-align: left;
    letter-spacing: -0.44px;
    color: #CCEFFF;
}

/* Теги в верхнем блоке */
.check-detail__head .check-detail__tags {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
    text-align: left;
}

@media screen and (min-width: 542px) {
    .check-detail__head .check-detail__tags {
        gap: 8px;
    }
}

.check-detail__head .check-detail__tag {
    padding: 4px 12px;
    border-radius: 20px;
    background: #CCEFFF;
    text-transform: uppercase;
    letter-spacing: 0.22px;
    line-height: 16px;
    font-weight: 500;
    font-size: 11px;
    color: #161333;
}

@media screen and (min-width: 542px) {
    .check-detail__head .check-detail__tag {
        padding: 8px 14px;
        letter-spacing: 0.26px;
        line-height: 18px;
        font-size: 13px;
    }
}

/* Авторы */
.check-detail__authors {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-detail__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.check-detail__author-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(199, 237, 255, 0.16);
}

.check-detail__author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.check-detail__author-name {
    font-size: 18px;
    font-weight: 520;
    line-height: 24px;
    letter-spacing: -0.36px;
    color: var(--color-dark-blue);
}

.check-detail__author-position {
    font-size: 13px;
    font-weight: 520;
    line-height: 18px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-dark-blue-40);
}

/* Анонс */
.check-detail__lead {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.18px;
    color: var(--color-dark-blue);
}

/* Детальное изображение */
.check-detail__image {
    width: 100%;
    margin: 0 0 32px;
}

.check-detail__image img {
    width: 100%;
    height: auto;
    display: block;
}

.check-detail__image-caption {
    margin-top: 16px;
    font-size: 13px;
    line-height: 18px;
    color: var(--color-dark-blue-40);
    text-align: center;
}

/* Layout */
.check-detail__layout {
    position: relative;
    display: flex;
    flex-direction: column;
}

.check-detail__layout-content {
    min-width: 0;
    width: 100%;
}

.check-detail__layout-aside {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media screen and (min-width: 1024px) {
    .check-detail__layout {
        display: grid;
        grid-template-columns: 307px 1fr 307px;
        gap: 40px;
        align-items: start;
    }

    .check-detail__layout-content {
        padding-right: 0;
    }

    .check-detail__layout-aside {
        position: static;
        width: 307px;
    }
}

/* Контент */
.check-detail__content {
    margin-bottom: 32px;
}

.check-detail__lead {
    max-width: 706px;
    margin: 0 auto 40px;
}

.check-detail__lead p {
    margin: 0 0 24px;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.44px;
    color: #161333;
}

.check-detail__lead p:last-child {
    margin-bottom: 0;
}

/* Кнопка перехода к документам */
.check-detail__documents-link-wrapper {
    max-width: 630px;
    margin: 0 auto 32px;
    text-align: center;
}

.check-detail__documents-link {
    display: inline-block;
    width: fit-content;
    margin: 0;
    padding: 16px 24px;
    border: none;
    border-radius: 6px;
    background: #CCEFFF;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 22px;
    font-weight: 500;
    font-size: 15px;
    color: #161333;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 200ms linear, color 200ms linear;
    text-align: center;
}

@media screen and (max-width: 540px) {
    .check-detail__documents-link {
        width: 100%;
        padding: 12px 18px;
        letter-spacing: 0.22px;
        line-height: 16px;
        font-size: 11px;
    }
}

.check-detail__documents-link:hover {
    background: var(--color-bright-blue);
    color: var(--color-blue-sky);
}

/* Блок с изображением в контенте */
.check-detail-image {
    max-width: 630px;
    margin: 64px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-detail-image__image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.check-detail-image__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.check-detail-image__caption {
    margin: 0;
    max-width: 630px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: rgba(22, 19, 51, 0.4);
    flex: none;
    order: 1;
    align-self: flex-start;
    flex-grow: 0;
}

@media screen and (max-width: 768px) {
    .check-detail-image {
        margin: 32px 0;
    }

    .check-detail-image__caption {
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
}

/* Блок с цитатой */
.check-detail-quote {
    max-width: 630px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 64px auto;
    padding-left: 32px;
    border-left: 1.5px solid #3D61F3;
}

.check-detail-quote__text {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: var(--color-dark-blue);
}

.check-detail-quote__text p {
    margin: 0 0 24px;
}

.check-detail-quote__text p:last-child {
    margin-bottom: 0;
}

.check-detail-quote__author {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: rgba(22, 19, 51, 0.4);
}

.check-detail-quote--author {
    max-width: 630px;
    gap: 32px;
    margin: 64px auto;
    padding: 40px 0;
    border-top: 1.5px solid rgba(22, 19, 51, 0.16);
    border-bottom: 1.5px solid rgba(22, 19, 51, 0.16);
    border-left: none;
    padding-left: 0;
}

.check-detail-quote__author-head {
    display: flex;
    align-items: center;
    gap: 24px;
}

.check-detail-quote__author-photo {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #D9EFFA;
}

.check-detail-quote__author-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.check-detail-quote__author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.check-detail-quote__author-name {
    margin: 0;
    font-size: 22px;
    font-weight: 520;
    line-height: 30px;
    letter-spacing: -0.44px;
    color: var(--color-dark-blue);
}

.check-detail-quote__author-position {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.3px;
    color: rgba(22, 19, 51, 0.7);
}

/* Медиа-запросы для цитаты */
@media (max-width: 768px) {
    .check-detail-quote {
        padding-left: 16px;
    }

    .check-detail-quote--author {
        padding: 24px 0;
    }

    .check-detail-quote__author-head {
        gap: 16px;
    }

    .check-detail-quote__author-photo {
        width: 40px;
        height: 40px;
    }

    .check-detail-quote__author-name {
        font-size: 18px;
        line-height: 24px;
    }
}

/* Текстовый блок */
.check-detail-text-block {
    max-width: 630px;
    margin: 40px auto;
    padding: 0;
    background: none;
}

.check-detail-text-block:first-of-type {
    margin-top: 0;
}

.check-detail-text-block:last-of-type {
    margin-bottom: 0;
}

.check-detail-text-block h2 {
    margin-top: 24px;
    margin-bottom: 40px;
    font-style: normal;
    font-weight: 470;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.56px;
    color: #161333;
}

.check-detail-text-block h3 {
    margin-top: 0;
    margin-bottom: 24px;
    font-style: normal;
    font-weight: 470;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.44px;
    color: #161333;
}

.check-detail-text-block p {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: var(--color-dark-blue);
}

.check-detail-text-block > p:not(:first-child) {
    margin-top: 12px;
}

.check-detail-text-block ul,
.check-detail-text-block ol {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: var(--color-dark-blue);
}

.check-detail-text-block > ul:not(:first-child),
.check-detail-text-block > ol:not(:first-child) {
    margin-top: 16px;
}

.check-detail-text-block > ul:not(:last-child),
.check-detail-text-block > ol:not(:last-child) {
    margin-bottom: 16px;
}

.check-detail-text-block strong {
    font-weight: 600;
}

.check-detail-text-block a {
    color: var(--color-bright-blue);
    text-decoration: none;
    background-image: linear-gradient(to right, var(--color-blue-sky), var(--color-blue-sky));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0% 100%;
    transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.check-detail-text-block a:hover,
.check-detail-text-block a:focus-visible {
    outline: none;
    background-size: 100% 100%;
}

.check-detail-text-block ol {
    counter-reset: ol;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    list-style: none;
}

.check-detail-text-block ol li {
    counter-increment: ol;
    flex: 0 0 auto;
    position: relative;
    padding-left: 25px;
    margin: 0;
}

.check-detail-text-block ol li::before {
    content: counter(ol) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #3D61F3;
}

.check-detail-text-block ol li ul {
    margin-top: 8px;
}

.check-detail-text-block ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    list-style: none;
}

.check-detail-text-block ul li {
    flex: 0 0 auto;
    position: relative;
    padding-left: 12px;
    margin: 0;
}

.check-detail-text-block ul li::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 10px;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #3D61F3;
}

/* Подсказка в тексте */
.check-detail-text-block-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.check-detail-text-block-tooltip-trigger {
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    color: var(--color-bright-blue);
    cursor: pointer;
}

.check-detail-text-block-tooltip-content {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    min-width: 240px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(61, 97, 243, 0.92);
    color: var(--color-white);
    font-size: 14px;
    line-height: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.check-detail-text-block-tooltip-trigger:focus-visible + .check-detail-text-block-tooltip-content,
.check-detail-text-block-tooltip-trigger:hover + .check-detail-text-block-tooltip-content {
    opacity: 1;
    transform: translateY(0);
}

.check-detail-text-block sup {
    top: -0.1em;
    font-size: 0.6em;
    line-height: 1;
    vertical-align: super;
    color: var(--color-dark-blue);
    font-weight: 600;
    margin-left: 1px;
}

/* Сноски */
.check-detail-text-block__footnotes {
    display: grid;
    gap: 12px;
    margin-top: 40px;
    padding-top: 8px;
    border-top: 1px solid rgba(22, 19, 51, 0.16);
}

.check-detail-text-block__footnote {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 520px;
}

.check-detail-text-block__footnote-number {
    flex: none;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: rgba(22, 19, 51, 0.4);
}

.check-detail-text-block__footnote-text {
    flex: 1 1 auto;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: rgba(22, 19, 51, 0.4);
}

.check-detail-text-block__footnote--highlight {
    background: rgba(135, 197, 35, 0.16);
    color: #4F7512;
}

/* Зеленая подсказка (tooltip) */
.green-tooltip {
    display: inline;
    color: #0ACFBE;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.green-tooltip:hover,
.green-tooltip:focus-visible {
    outline: none;
    color: rgba(10, 207, 190, 0.8);
}

/* Контейнер для попапа */
.check-detail {
    position: relative;
}

.green-tooltip-popup {
    display: none;
    position: absolute;
    z-index: 2;
    right: 32px;
    width: 307px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.green-tooltip-popup--visible {
    display: block;
}

.green-tooltip-popup--show {
    opacity: 1;
    transform: translateX(0);
}

.green-tooltip-popup--hide {
    opacity: 0;
    transform: translateX(20px);
}

.green-tooltip-popup__title {
    margin: 0 0 8px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid rgba(22, 19, 51, 0.16);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: #04B25B;
}

.green-tooltip-popup__text {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: #161333;
}

/* Медиа-запросы для текстового блока */
@media (max-width: 768px) {
    .check-detail-text-block ul li::before {
        top: 10px;
    }

    .check-detail-text-block ol {
        gap: 8px;
    }

    .check-detail-text-block ol li {
        padding-left: 25px;
    }

    .check-detail-text-block ol li ul {
        margin-top: 8px;
    }

    .check-detail-text-block ul {
        gap: 8px;
    }

    .check-detail-text-block ul li {
        padding-left: 12px;
    }

    .green-tooltip-popup {
        right: 16px;
        max-width: calc(100vw - 32px);
    }
}

/* Блок с выделением текста */
.check-detail-special-text {
    width: min(1018px, 100vw);
    margin: 80px 0;
    padding: 0;
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.32px;
    color: #161333;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .check-detail-special-text {
        width: 100%;
        margin: 40px 0;
        font-size: 24px;
        line-height: 32px;
        left: 0;
        transform: none;
    }
}

/* Теги */
.check-detail__tags {
    margin-top: 32px;
}

.check-detail__tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-detail__tag {
    padding: 6px 12px;
    background: var(--color-light-gray);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 520;
    line-height: 18px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-dark-blue);
}

/* Блоки в боковой панели */
.check-detail__aside-block {
    padding: 24px 0;
    position: relative;
}

.check-detail__aside-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-dark-blue-10, rgba(22, 19, 51, 0.1));
}

.check-detail__aside-block:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-dark-blue-10, rgba(22, 19, 51, 0.1));
}

.check-detail__aside-title {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 520;
    line-height: 18px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-dark-blue-40, rgba(22, 19, 51, 0.4));
}

/* Авторы в боковой панели */
.check-detail__aside-authors-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-detail__aside-author {
    margin: 0;
}

.check-detail__aside-author:not(:last-child) {
    margin-bottom: 16px;
}

.aside-author-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.aside-author-card__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-light-gray);
    flex-shrink: 0;
}

.aside-author-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aside-author-card__name {
    font-size: 14px;
    font-weight: 520;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: var(--color-dark-blue);
}

.aside-author-card__position {
    font-size: 12px;
    font-weight: 520;
    line-height: 16px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-dark-blue-40);
}

/* Шаринг */
/* Боковой шаринг в aside */
.check-detail__aside-block.check-detail__share,
.check-detail__layout-aside .check-detail__share {
    padding-top: 24px;
}

.check-detail__aside-block.check-detail__share .check-detail__share-list,
.check-detail__layout-aside .check-detail__share .check-detail__share-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-detail__aside-block.check-detail__share .check-detail__share-item,
.check-detail__layout-aside .check-detail__share .check-detail__share-item {
    margin: 0;
}

.check-detail__aside-block.check-detail__share .check-detail__share-item:not(:last-child),
.check-detail__layout-aside .check-detail__share .check-detail__share-item:not(:last-child) {
    margin-bottom: 12px;
}

.check-detail__aside-block.check-detail__share .check-detail__share-link,
.check-detail__layout-aside .check-detail__share .check-detail__share-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 520;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: var(--color-dark-blue);
    text-decoration: underline;
    text-decoration-color: var(--color-dark-blue);
    text-underline-offset: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 200ms ease;
}

.check-detail__aside-block.check-detail__share .check-detail__share-link:hover,
.check-detail__layout-aside .check-detail__share .check-detail__share-link:hover {
    color: var(--color-bright-blue);
    text-decoration-color: var(--color-bright-blue);
}

.check-detail__aside-block.check-detail__share .check-detail__share-link--copy,
.check-detail__layout-aside .check-detail__share .check-detail__share-link--copy {
    text-align: left;
}

/* Адаптивность */
@media (max-width: 768px) {
    .check-detail__container {
        padding: 0 16px;
    }

    .check-detail__title {
        font-size: 32px;
        line-height: 38px;
    }
}

/* Блок с документами */
.check-detail__documents {
    margin-top: 200px;
    scroll-margin-top: 200px;
}

.files__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media screen and (min-width: 1024px) {
    .files__list {
        gap: 16px;
    }
}

.file {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
    background: var(--color-blue-light, #E8F6FF);
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .file {
        padding: 32px;
        gap: 32px;
    }
}

@media screen and (min-width: 1280px) {
    .file {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        padding: 24px 32px;
    }
}

.file__name {
    letter-spacing: -0.3px;
    line-height: 22px;
    font-weight: 400;
    font-size: 15px;
    color: #161333;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .file__name {
        letter-spacing: -0.36px;
        line-height: 26px;
        font-size: 18px;
    }
}

@media screen and (min-width: 1280px) {
    .file__name {
        flex: 1 1 auto;
        max-width: 918px;
    }
}

.file__options {
    display: flex;
    justify-content: space-between;
}

@media screen and (min-width: 1280px) {
    .file__options {
        flex: 0 0 auto;
        gap: 24px;
    }
}

.file__info,
.file__link {
    text-transform: uppercase;
    letter-spacing: 0.22px;
    line-height: 16px;
    font-weight: 500;
    font-size: 11px;
}

@media screen and (min-width: 768px) {
    .file__info,
    .file__link {
        letter-spacing: 0.3px;
        line-height: 22px;
        font-weight: 520;
        font-size: 15px;
    }
}

@media screen and (min-width: 1280px) {
    .file__link {
        position: relative;
        background-image: linear-gradient(to right, var(--color-blue-sky), var(--color-blue-sky));
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: 0% 100%;
        transition: background-size 0s;
    }
    .file:hover .file__link {
        background-size: 100% 100%;
        transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
}

.file__info {
    display: flex;
    gap: 8px;
    color: #161333;
}

@media screen and (min-width: 1280px) {
    .file__info {
        gap: 10px;
    }
}

.file__data {
    display: flex;
    gap: 4px;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .file__data {
        gap: 8px;
    }
}

.file__date {
    position: relative;
    padding-left: 9px;
    margin: 0;
}

@media screen and (min-width: 1280px) {
    .file__date {
        padding-left: 11px;
    }
}

.file__date::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 2px;
    display: block;
    width: 1px;
    height: calc(100% - 4px);
    background: #161333;
}

@media screen and (min-width: 768px) {
    .file__date::before {
        width: 1.5px;
    }
}

@media screen and (min-width: 1280px) {
    .file__date::before {
        height: 18px;
    }
}

.file__link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3D61F3;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .file__link {
        gap: 8px;
        padding: 0 2px;
    }
}

.file__icon {
    flex: 0 0 auto;
    display: block;
    width: 16px;
    height: 16px;
    stroke: none;
    fill: #3D61F3;
}

@media screen and (min-width: 768px) {
    .file__icon {
        width: 20px;
        height: 20px;
    }
}

.files__box {
    display: flex;
    justify-content: flex-start;
    margin-top: 24px;
}

@media screen and (min-width: 1280px) {
    .files__box {
        justify-content: center;
    }
}

@media screen and (min-width: 768px) {
    .files__box {
        margin-top: 32px;
    }
}

@media screen and (min-width: 1024px) {
    .files__box {
        margin-top: 40px;
    }
}

.files__link {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.22px;
    line-height: 16px;
    font-weight: 500;
    font-size: 11px;
    color: #3D61F3;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .files__link {
        letter-spacing: 0.3px;
        line-height: 22px;
        font-weight: 520;
        font-size: 15px;
    }
}

@media screen and (min-width: 1280px) {
    .files__link {
        margin: 0 auto;
        padding: 0 2px;
        position: relative;
        background-image: linear-gradient(to right, var(--color-blue-sky), var(--color-blue-sky));
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: 0% 100%;
        transition: background-size 0s;
    }
    .files__link:hover {
        background-size: 100% 100%;
        transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
}

.files__icon {
    flex: 0 0 auto;
    display: block;
    width: 16px;
    height: 16px;
    stroke: none;
    fill: #3D61F3;
}

@media screen and (min-width: 768px) {
    .files__icon {
        width: 20px;
        height: 20px;
    }
}

/* Материалы по теме */
.check-detail__related {
    margin-top: 100px;
}

.check-related__title {
    margin-bottom: 40px;
    font-family: 'Golos Text', sans-serif;
    font-size: 34px;
    font-weight: 470;
    line-height: 40px;
    letter-spacing: -0.68px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #161333;
}

.check-related__list {
    display: grid;
    gap: 80px;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    list-style: none;
}

@media screen and (max-width: 1024px) {
    .check-related__list {
        gap: 64px;
    }
}

@media screen and (max-width: 540px) {
    .check-related__title {
        margin-bottom: 24px;
        font-size: 22px;
        line-height: 26px;
        letter-spacing: -0.44px;
    }

    .check-related__list {
        gap: 48px;
    }
}

/* Стили для карточек материалов по теме */

/* Audit Card */
.audit-card {
  padding-top: 24px;
  border-top: 1.5px solid rgba(22, 19, 51, 0.16);
}

@media screen and (min-width: 1280px) {
  .audit-card {
    position: relative;
    padding: 24px 0 0 453px;
    cursor: pointer;
  }
}

@media screen and (min-width: 1280px) {
  .audit-card__block {
    max-width: 824px;
  }
}

.audit-card__info {
  display: flex;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 22px;
  font-weight: 500;
  font-size: 15px;
}

@media screen and (max-width: 1024px) {
  .audit-card__info {
    gap: 8px;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.22px;
  }
}

@media screen and (max-width: 540px) {
  .audit-card__info {
    gap: 10px;
  }
}

.audit-card__type {
  color: #3D61F3;
}

.audit-card__date {
  position: relative;
  padding-left: 10px;
  color: #161333;
}

.audit-card__date::before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  width: 1.5px;
  height: 12px;
  background: #161333;
}

.audit-card__heading {
  margin-top: 24px;
  letter-spacing: -0.56px;
  line-height: 34px;
  font-size: 28px;
  transition: color 200ms linear;
  font-weight: 430;
  color: #161333;
}

@media screen and (max-width: 540px) {
  .audit-card__heading {
    margin-top: 12px;
    font-style: normal;
    font-weight: 470;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.46px;
  }
}

@media (hover: hover) {
  .audit-card:hover .audit-card__heading {
    color: #3D61F3;
  }
}

.audit-card__heading a {
  color: inherit;
  text-decoration: none;
}

.audit-card__description {
  max-width: 630px;
  margin-top: 16px;
  letter-spacing: -0.36px;
  line-height: 26px;
  font-size: 18px;
  font-weight: 400;
  color: #161333;
}

.audit-card__authors {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 64px;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 1024px) {
  .audit-card__authors {
    margin-top: 40px;
  }
}

@media screen and (max-width: 540px) {
  .audit-card__authors {
    margin-top: 24px;
  }
}

.audit-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media screen and (max-width: 540px) {
  .audit-card__author {
    gap: 8px;
  }
}

.audit-card__author-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 540px) {
  .audit-card__author-link {
    gap: 8px;
    cursor: pointer;
  }
}

.audit-card__image {
  flex: 0 0 auto;
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (max-width: 540px) {
  .audit-card__image {
    width: 38px;
    height: 38px;
  }
}

.audit-card__box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.audit-card__name,
.audit-card__position {
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 22px;
  font-weight: 500;
  font-size: 15px;
}

@media screen and (max-width: 540px) {
  .audit-card__name,
  .audit-card__position {
    letter-spacing: 0.22px;
    line-height: 16px;
    font-weight: 500;
    font-size: 11px;
  }
}

.audit-card__name {
  color: #161333;
}

@media (hover: hover) {
  .audit-card__author-link:hover .audit-card__name {
    color: var(--color-bright-blue);
  }
}

.audit-card__position {
  color: rgba(22, 19, 51, 0.4);
}

.audit-card__tags {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .audit-card__tags {
    position: static;
    flex-direction: row;
    gap: 4px;
  }
}

.audit-card__tag {
  padding: 4px 12px;
  border-radius: 20px;
  background: #CCEFFF;
  text-transform: uppercase;
  letter-spacing: 0.22px;
  line-height: 16px;
  font-weight: 500;
  font-size: 11px;
  color: #161333;
}

@media screen and (min-width: 542px) {
  .audit-card__tag {
    padding: 8px 14px;
    letter-spacing: 0.26px;
    line-height: 18px;
    font-size: 13px;
  }
}

.audit-card__documents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 64px;
  max-width: 630px;
}

@media screen and (max-width: 1024px) {
  .audit-card__documents {
    max-width: none;
    margin-top: 32px;
    gap: 24px;
  }
}

@media screen and (max-width: 540px) {
  .audit-card__documents {
    max-width: none;
    gap: 8px;
  }
}

.audit-card__documents-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audit-card__document {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px;
  border-top: 1.5px solid rgba(22, 19, 51, 0.16);
}

@media screen and (max-width: 540px) {
  .audit-card__document {
    padding: 24px 16px;
    gap: 24px;
    background: #F3F2F5;
    border: 0;
  }
}

.audit-card__document--hidden {
  display: none;
}

.audit-card__document-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.36px;
  color: #161333;
}

@media screen and (max-width: 540px) {
  .audit-card__document-title {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.24px;
  }
}

.audit-card__document-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.audit-card__document-info {
  display: flex;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 22px;
  font-weight: 500;
  font-size: 15px;
  color: #161333;
}

@media screen and (max-width: 1024px) {
  .audit-card__document-footer {
    gap: 16px;
  }

  .audit-card__document-info {
    letter-spacing: 0.22px;
    line-height: 16px;
    font-size: 11px;
  }
}

.audit-card__document-ext {
  color: rgba(22, 19, 51, 0.8);
}

.audit-card__document-size {
  color: rgba(22, 19, 51, 0.8);
}

.audit-card__document-description {
  letter-spacing: -0.32px;
  line-height: 22px;
  font-weight: 400;
  font-size: 15px;
  color: rgba(22, 19, 51, 0.7);
  max-width: 630px;
}

@media screen and (max-width: 540px) {
  .audit-card__document-footer {
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .audit-card__description {
    margin-top: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.24px;
    max-width: none;
  }
}

.audit-card__document-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 22px;
  font-weight: 500;
  font-size: 15px;
  color: #3D61F3;
  text-decoration: none;
  position: relative;
  padding: 0 2px;
  background-image: linear-gradient(to right, var(--color-blue-sky), var(--color-blue-sky));
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 0% 100%;
  transition: background-size 0s;
}

.audit-card__document-link:hover {
  background-size: 100% 100%;
  transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media screen and (max-width: 540px) {
  .audit-card__document-link {
    gap: 6px;
    letter-spacing: 0.22px;
    line-height: 16px;
    font-size: 11px;
    background-image: none;
    padding: 0;
  }
}

.audit-card__document-icon {
  flex: 0 0 auto;
  display: block;
  width: 20px;
  height: 20px;
  fill: #3D61F3;
}

@media screen and (max-width: 540px) {
  .audit-card__document-icon {
    width: 16px;
    height: 16px;
  }
}

.audit-card__documents-toggle {
  flex: 0 0 auto;
  align-self: flex-start;
  padding: 16px 24px;
  border: none;
  border-radius: 6px;
  background: #CCEFFF;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 22px;
  font-weight: 500;
  font-size: 15px;
  color: #161333;
  cursor: pointer;
  transition: background-color 200ms linear, color 200ms linear;
}

@media screen and (max-width: 540px) {
  .audit-card__documents-toggle {
    width: 100%;
    padding: 12px 18px;
    letter-spacing: 0.22px;
    line-height: 16px;
    font-size: 11px;
  }
}

.audit-card__documents-toggle:hover {
  background: var(--color-bright-blue);
  color: var(--color-blue-sky);
}

/* Bulletin Card */
.bulletin-card {
  padding-top: 24px;
  border-top: 1.5px solid rgba(22, 19, 51, 0.16);
}

@media screen and (max-width: 1279px) {
  .bulletin-card {
    border-width: 1px;
  }
}

@media screen and (min-width: 1280px) {
  .bulletin-card {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    cursor: pointer;
  }
}

@media screen and (min-width: 1280px) {
  .bulletin-card__block {
    flex: 1 1 auto;
    max-width: 824px;
    margin-left: 453px;
  }
}

.bulletin-card__info {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: 0.22px;
  line-height: 16px;
  font-weight: 500;
  font-size: 11px;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__info {
    letter-spacing: 0.3px;
    line-height: 22px;
    font-weight: 500;
    font-size: 15px;
  }
}

.bulletin-card__type:not(:first-child),
.bulletin-card__date:not(:first-child) {
  position: relative;
  margin-left: 6px;
  padding-left: 9px;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__type:not(:first-child),
  .bulletin-card__date:not(:first-child) {
    margin-left: 8px;
    padding-left: 11px;
  }
}

.bulletin-card__type:not(:first-child)::before,
.bulletin-card__date:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 1.5px;
  height: 12px;
}

@media screen and (max-width: 1279px) {
  .bulletin-card__type:not(:first-child)::before,
  .bulletin-card__date:not(:first-child)::before {
    width: 1px;
  }
}

@media screen and (min-width: 1280px) {
  .bulletin-card__type:not(:first-child)::before,
  .bulletin-card__date:not(:first-child)::before {
    height: 18px;
  }
}

.bulletin-card__type {
  color: #3D61F3;
}

.bulletin-card__type::before {
  background: #3D61F3;
}

.bulletin-card__date {
  color: #161333;
}

.bulletin-card__date::before {
  background: #161333;
}

.bulletin-card__heading {
  margin-top: 12px;
  letter-spacing: -0.46px;
  line-height: 22px;
  font-weight: 430;
  font-size: 18px;
  color: #161333;
  transition: color 200ms linear;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__heading {
    margin-top: 24px;
    letter-spacing: -0.56px;
    line-height: 34px;
    font-size: 28px;
    transition: color 200ms linear;
  }
}

.bulletin-card__heading_a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms linear;
}

@media (hover: hover) {
  @media screen and (min-width: 1280px) {
    .bulletin-card__heading:hover,
    .bulletin-card__heading_a:hover {
      color: var(--color-bright-blue);
    }
  }
}

.bulletin-card__description {
  margin-top: 8px;
  letter-spacing: -0.24px;
  line-height: 16px;
  font-weight: 400;
  font-size: 12px;
  color: #161333;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__description {
    max-width: 630px;
    margin-top: 16px;
    letter-spacing: -0.36px;
    line-height: 26px;
    font-size: 18px;
  }
}

.bulletin-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__list {
    gap: 16px;
    margin-top: 64px;
  }
}

.bulletin-card__item {
  flex: 0 0 auto;
}

.bulletin-card__authors {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__authors {
    margin-top: 64px;
  }
}

.bulletin-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__author {
    gap: 16px;
  }
}

.bulletin-card__author-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__author-link {
    gap: 16px;
    cursor: pointer;
  }
}

.bulletin-card__author-image {
  flex: 0 0 auto;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__author-image {
    width: 48px;
    height: 48px;
  }
}

.bulletin-card__author-box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bulletin-card__author-name,
.bulletin-card__author-position {
  text-transform: uppercase;
  letter-spacing: 0.22px;
  line-height: 16px;
  font-weight: 500;
  font-size: 11px;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__author-name,
  .bulletin-card__author-position {
    letter-spacing: 0.3px;
    line-height: 22px;
    font-weight: 500;
    font-size: 15px;
  }
}

.bulletin-card__author-name {
  color: #161333;
}

@media (hover: hover) {
  .bulletin-card__author-link:hover .bulletin-card__author-name {
    color: var(--color-bright-blue);
  }
}

.bulletin-card__author-position {
  color: rgba(22, 19, 51, 0.4);
}

.bulletin-card__picture {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__picture {
    position: absolute;
    left: 0;
    top: 23px;
    width: 243px;
    height: 160px;
    margin: 0;
    background: #000;
  }
}

.bulletin-card__picture::before {
  content: "";
  display: block;
  padding-top: 65.8536585366%;
}

@media screen and (min-width: 1280px) {
  .bulletin-card__picture::before {
    display: none;
  }
}

.bulletin-card__image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Media Card Inner */
.media-card--inner {
  padding-top: 24px;
  border-top: 1.5px solid rgba(22, 19, 51, 0.16);
}

@media screen and (max-width: 1279px) {
  .media-card--inner {
    border-width: 1px;
  }
}

@media screen and (min-width: 1280px) {
  .media-card--inner {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-start;
    cursor: pointer;
  }
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__block {
    flex: 1 1 auto;
    max-width: 824px;
    margin-left: 453px;
  }
}

.media-card--inner .media-card__info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22px;
  line-height: 16px;
  font-weight: 500;
  font-size: 11px;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__info {
    gap: 10px;
    letter-spacing: 0.3px;
    line-height: 22px;
    font-weight: 500;
    font-size: 15px;
  }
}

.media-card--inner .media-card__type {
  color: #3D61F3;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__type {
    padding-bottom: 0;
    background-image: none;
    background-size: auto;
    transition: none;
  }
}

@media (hover: hover) {
  .media-card--inner .media-card__type:hover {
    color: #3D61F3;
  }

  @media screen and (min-width: 1280px) {
    .media-card--inner .media-card__type:hover {
      background-size: auto;
    }
  }
}

.media-card--inner .media-card__sort,
.media-card--inner .media-card__date {
  position: relative;
  padding-left: 9px;
  color: #161333;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__sort,
  .media-card--inner .media-card__date {
    padding-left: 11px;
  }
}

.media-card--inner .media-card__sort:not(:first-child)::before,
.media-card--inner .media-card__date:not(:first-child)::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 1.5px;
  height: 12px;
  background: #161333;
}

@media screen and (max-width: 1279px) {
  .media-card--inner .media-card__sort:not(:first-child)::before,
  .media-card--inner .media-card__date:not(:first-child)::before {
    width: 1px;
  }
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__sort:not(:first-child)::before,
  .media-card--inner .media-card__date:not(:first-child)::before {
    height: 18px;
  }
}

.media-card--inner .media-card__heading,
.media-card--inner .media-card__heading_a {
  margin-top: 12px;
  letter-spacing: -0.46px;
  line-height: 22px;
  font-weight: 430;
  font-size: 18px;
  color: #161333;
  transition: color 200ms linear;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__heading,
  .media-card--inner .media-card__heading_a {
    margin-top: 24px;
    letter-spacing: -0.56px;
    line-height: 34px;
    font-size: 28px;
    transition: color 200ms linear;
  }
}

@media (hover: hover) {
  @media screen and (min-width: 1280px) {
    .media-card--inner:hover .media-card__heading,
    .media-card--inner .media-card__heading:hover,
    .media-card--inner:hover .media-card__heading_a,
    .media-card--inner .media-card__heading_a:hover {
      color: var(--color-bright-blue);
    }
  }
}

.media-card--inner .media-card__description {
  margin-top: 8px;
  letter-spacing: -0.24px;
  line-height: 16px;
  font-weight: 400;
  font-size: 12px;
  color: #161333;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__description {
    max-width: 630px;
    margin-top: 16px;
    letter-spacing: -0.36px;
    line-height: 26px;
    font-size: 18px;
  }
}

.media-card--inner .media-card__authors {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__authors {
    margin-top: 64px;
  }
}

.media-card--inner .media-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__author {
    gap: 16px;
  }
}

.media-card--inner .media-card__author-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__author-link {
    gap: 16px;
    cursor: pointer;
  }
}

.media-card--inner .media-card__author-image {
  flex: 0 0 auto;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__author-image {
    width: 48px;
    height: 48px;
  }
}

.media-card--inner .media-card__author-box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.media-card--inner .media-card__author-name,
.media-card--inner .media-card__author-position {
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.22px;
  line-height: 16px;
  font-weight: 500;
  font-size: 11px;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__author-name,
  .media-card--inner .media-card__author-position {
    letter-spacing: 0.3px;
    line-height: 22px;
    font-weight: 500;
    font-size: 15px;
  }
}

.media-card--inner .media-card__author-name {
  color: #161333;
}

@media (hover: hover) {
  .media-card--inner .media-card__author-link:hover .media-card__author-name {
    color: var(--color-bright-blue);
  }
}

.media-card--inner .media-card__author-position {
  color: var(--color-dark-blue-40);
}

.media-card--inner .media-card__picture {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__picture {
    flex: 0 0 auto;
    position: absolute;
    left: 0;
    top: 23px;
    width: 243px;
    height: 160px;
    margin: 0;
    background: #000;
  }
}

.media-card--inner .media-card__picture::before {
  content: "";
  display: block;
  padding-top: 65.8536585366%;
}

@media screen and (min-width: 1280px) {
  .media-card--inner .media-card__picture::before {
    display: none;
  }
}

.media-card--inner .media-card__image {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Media Card Picture Video */
.media-card__picture--video {
  position: relative;
}

.media-card__picture--video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='24' cy='24' r='24' fill='white' fill-opacity='0.9'/%3E%3Cpath d='M19 16L19 32L32 24L19 16Z' fill='%23161333'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .media-card__picture--video::after {
    width: 64px;
    height: 64px;
  }
}

/* News Card Authors */
.news-card__authors {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .news-card__authors {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .news-card__authors {
    gap: 16px;
    margin-top: 64px;
  }
}

.news-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .news-card__author {
    gap: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .news-card__author {
    cursor: pointer;
  }
}

.news-card__author-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 768px) {
  .news-card__author-link {
    gap: 16px;
  }
}

@media screen and (min-width: 1280px) {
  .news-card__author-link {
    cursor: pointer;
  }
}

.news-card__author-image {
  flex: 0 0 auto;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .news-card__author-image {
    width: 48px;
    height: 48px;
  }
}

.news-card__author-box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.news-card__author-name,
.news-card__author-position {
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.22px;
  line-height: 16px;
  font-weight: 500;
  font-size: 11px;
}

@media screen and (min-width: 768px) {
  .news-card__author-name,
  .news-card__author-position {
    letter-spacing: 0.3px;
    line-height: 22px;
    font-weight: 520;
    font-size: 15px;
  }
}

.news-card__author-name {
  color: #161333;
  transition: color 200ms linear;
}

@media (hover: hover) {
  .news-card__author-link:hover .news-card__author-name {
    color: var(--color-bright-blue);
  }
}

.news-card__author-position {
  color: rgba(22, 19, 51, 0.4);
}

/* ГАЛЕРЕЯ */
.check-detail-gallery {
    margin: 120px 0 0;
    overflow: hidden;
    width: calc(100vw - (100vw - 1920px) / 2 - 32px);
}

@media screen and (max-width: 1920px) {
    .check-detail-gallery {
        width: calc(100vw - 32px);
    }
}

@media screen and (max-width: 1278px) {
    .check-detail-gallery {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}

.check-detail-gallery--single .check-detail-gallery__controls {
    justify-content: center;
    margin-top: 32px;
}

.check-detail-gallery--single .check-detail-gallery__controls-inner {
    justify-items: center;
    text-align: center;
}

.check-detail-gallery--single .check-detail-gallery__swiper {
    display: flex;
    justify-content: center;
}

.check-detail-gallery--single .check-detail-gallery__swiper .swiper-wrapper {
    justify-content: center;
}

.check-detail-gallery--single .check-detail-gallery__slide {
    width: auto !important;
}

.check-detail-gallery--single .check-detail-gallery__text {
    text-align: center;
}

.check-detail-gallery--single .check-detail-gallery__buttons {
    display: none;
}

.check-detail-gallery__container {
    padding: 0 32px;
}

.check-detail-gallery__inner {
    position: relative;
}

.check-detail-gallery__controls {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-top: 48px;
    width: 100%;
    box-sizing: border-box;
}

.check-detail-gallery__controls-inner {
    display: grid;
    gap: 16px;
    max-width: 760px;
}

.check-detail-gallery__text {
    max-width: 760px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
}

.check-detail-gallery__swiper {
    width: 100%;
    overflow: visible;
}

.check-detail-gallery__slide {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 auto;
    width: auto;
    align-items: center;
}

.check-detail-gallery__image-wrapper {
    width: 100%;
    height: 630px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.check-detail-gallery__image {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.check-detail-gallery__buttons {
    display: none;
}

@media screen and (min-width: 1280px) {
    .check-detail-gallery__buttons {
        display: flex;
        gap: 4px;
    }
}

.check-detail-gallery__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 6px;
    background: #466CF21A;
    cursor: pointer;
    transition: background-color 200ms linear;
}

@media screen and (min-width: 1920px) {
    .check-detail-gallery__button {
        width: 44px;
        height: 44px;
    }
}

.check-detail-gallery__button::before {
    content: '';
    display: block;
    width: 10px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: opacity 200ms linear, filter 200ms linear;
}

@media screen and (min-width: 1920px) {
    .check-detail-gallery__button::before {
        width: 12px;
        height: 18px;
    }
}

.check-detail-gallery__button--prev::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='14' viewBox='0 0 10 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 12L2.5 7L7.5 2' stroke='%23161333' stroke-width='1.5'/%3E%3C/svg%3E");
}

.check-detail-gallery__button--next::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='14' viewBox='0 0 10 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 12L7.5 7L2.5 2' stroke='%23161333' stroke-width='1.5'/%3E%3C/svg%3E");
}

.check-detail-gallery__button:hover,
.check-detail-gallery__button:focus-visible {
    background: #CCEFFF;
    outline: none;
}

.check-detail-gallery__button--prev:hover::before,
.check-detail-gallery__button--prev:focus-visible::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='14' viewBox='0 0 10 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 12L2.5 7L7.5 2' stroke='%23161333' stroke-width='1.5'/%3E%3C/svg%3E");
}

.check-detail-gallery__button--next:hover::before,
.check-detail-gallery__button--next:focus-visible::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='14' viewBox='0 0 10 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 12L7.5 7L2.5 2' stroke='%23161333' stroke-width='1.5'/%3E%3C/svg%3E");
}

.check-detail-gallery__button.swiper-button-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.check-detail-gallery__pagination {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #161333;
}


@media screen and (max-width: 1024px) {
    .check-detail-gallery {
        margin-top: 100px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .check-detail-gallery__container {
        padding: 0 24px;
    }

    .check-detail-gallery__controls {
        flex-direction: column;
        gap: 24px;
        margin-top: 40px;
        width: 100%;
    }

    .check-detail-gallery__buttons {
        order: -1;
    }

    .check-detail-gallery__image-wrapper {
        height: 648px;
    }

    .check-detail-gallery__button {
        bottom: 12px;
    }

    .check-detail-gallery__button--prev {
        left: 24px;
    }

    .check-detail-gallery__button--next {
        right: 24px;
    }
}

@media screen and (max-width: 768px) {
    .check-detail-gallery {
        margin-top: 72px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }


    .check-detail-gallery__controls {
        gap: 20px;
    }

    .check-detail-gallery__image-wrapper {
        height: 483px;
    }
}

@media screen and (max-width: 540px) {
    .check-detail-gallery__container {
        padding: 0 16px;
    }

    .check-detail-gallery__controls {
        gap: 16px;
        width: 100%;
    }

    .check-detail-gallery__pagination {
        font-size: 13px;
        letter-spacing: 0.26px;
    }

    .check-detail-gallery__image-wrapper {
        height: 221px;
    }

    .check-detail-gallery__image {
        max-height: 100%;
    }
}

/* Блок статистики */
.check-detail-statistics {
    max-width: 630px;
    width: 100%;
    margin: 64px auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.check-detail-statistics__title {
    margin: 0;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(22, 19, 51, 0.16);
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.44px;
    color: #161333;
}

.check-detail-statistics__value {
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 72px;
    line-height: 80px;
    letter-spacing: -1.44px;
    color: #161333;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.check-detail-statistics--vertical .check-detail-statistics__value {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.check-detail-statistics__number {
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 72px;
    line-height: 80px;
    letter-spacing: -1.44px;
    color: #161333;
}

.check-detail-statistics__prefix {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.44px;
    color: #161333;
}

.check-detail-statistics__unit {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.44px;
    color: #161333;
}

.check-detail-statistics__description {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.3px;
    color: rgba(22, 19, 51, 0.4);
}

/* Медиа-запросы для статистики */
@media (max-width: 768px) {
    .check-detail-statistics {
        margin: 32px 0;
        gap: 16px;
    }

    .check-detail-statistics__title {
        font-size: 20px;
        line-height: 28px;
    }

    .check-detail-statistics__value {
        font-size: 56px;
        line-height: 64px;
    }

    .check-detail-statistics__number {
        font-size: 56px;
        line-height: 64px;
    }

    .check-detail-statistics__prefix,
    .check-detail-statistics__unit {
        font-size: 18px;
        line-height: 26px;
    }

    .check-detail-statistics__description {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Список статистики */
.check-detail-statistics-list {
    max-width: 630px;
    width: 100%;
    margin: 64px auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.check-detail-statistics-list__items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.check-detail-statistics-list__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-detail-statistics-list__value {
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -1.12px;
    color: #161333;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.check-detail-statistics-list__number {
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -1.12px;
    color: #161333;
}

.check-detail-statistics-list__prefix {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: #161333;
    text-transform: uppercase;
}

.check-detail-statistics-list__unit {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: #161333;
    text-transform: uppercase;
}

.check-detail-statistics-list__label {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.3px;
    color: #161333;
}

.check-detail-statistics-list__description {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.3px;
    color: rgba(22, 19, 51, 0.4);
}

/* Медиа-запросы для списка статистики */
@media (max-width: 768px) {
    .check-detail-statistics-list {
        margin: 32px 0;
        gap: 24px;
    }

    .check-detail-statistics-list__items {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .check-detail-statistics-list__value {
        font-size: 48px;
        line-height: 56px;
    }

    .check-detail-statistics-list__number {
        font-size: 48px;
        line-height: 56px;
    }

    .check-detail-statistics-list__prefix,
    .check-detail-statistics-list__unit {
        font-size: 16px;
        line-height: 24px;
    }

    .check-detail-statistics-list__label {
        font-size: 14px;
        line-height: 20px;
    }

    .check-detail-statistics-list__description {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Блок с документами */
.check-detail-documents {
    max-width: 630px;
    width: 100%;
    min-width: 0;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.check-detail-documents__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.check-detail-documents__item {
    list-style: none;
}

.check-detail-documents__item-link {
    display: block;
    padding: 32px;
    background: #CCEFFF;
    text-decoration: none;
    color: inherit;
}

.check-detail-documents__item-name {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: #161333;
}

.check-detail-documents__item-description {
    margin-top: 8px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: rgba(22, 19, 51, 0.4);
}

.check-detail-documents__item-options {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.check-detail-documents__item-info {
    display: flex;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.22px;
    line-height: 16px;
    font-weight: 500;
    font-size: 11px;
    color: var(--color-dark-blue);
}

.check-detail-documents__item-data {
    display: flex;
    gap: 4px;
    margin: 0;
}

.check-detail-documents__item-date {
    position: relative;
    padding-left: 9px;
    margin: 0;
}

.check-detail-documents__item-date::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 1px;
    height: calc(100% - 4px);
    background: var(--color-dark-blue);
}

.check-detail-documents__item-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.22px;
    line-height: 16px;
    font-weight: 500;
    font-size: 11px;
    color: var(--color-bright-blue);
    position: relative;
    background-image: linear-gradient(to right, var(--color-blue-sky), var(--color-blue-sky));
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 0% 100%;
    transition: background-size 0s;
    padding: 0 2px;
}

.check-detail-documents__item-link:hover .check-detail-documents__item-download,
.check-detail-documents__item-link:focus-visible .check-detail-documents__item-download {
    background-size: 100% 100%;
    transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.check-detail-documents__item-icon {
    width: 16px;
    height: 16px;
    fill: var(--color-bright-blue);
}

/* Медиа-запросы для блока документов */
@media (max-width: 768px) {
    .check-detail-documents {
        margin: 40px auto;
        gap: 24px;
    }

    .check-detail-documents__item-link {
        padding: 24px;
    }

    .check-detail-documents__item-name {
        font-size: 16px;
        line-height: 24px;
    }

    .check-detail-documents__item-description {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Блок шаринга внизу страницы (не в aside) */
.check-detail__container > .check-detail__share {
    max-width: 630px;
    margin: 100px auto 0;
}

.check-detail__container > .check-detail__share .check-detail__share-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
}

.check-detail__container > .check-detail__share .check-detail__share-item {
    position: relative;
    display: flex;
    align-items: center;
}

.check-detail__container > .check-detail__share .check-detail__share-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background: var(--color-bright-blue);
    margin-left: 16px;
    margin-right: 16px;
    flex-shrink: 0;
}

.check-detail__container > .check-detail__share .check-detail__share-link {
    display: inline-flex;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-bright-blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    position: relative;
    transition: color 0.2s ease;
}

.check-detail__container > .check-detail__share .check-detail__share-link:hover,
.check-detail__container > .check-detail__share .check-detail__share-link:focus-visible {
    outline: none;
    color: rgba(61, 97, 243, 0.8);
}

.check-detail__container > .check-detail__share .check-detail__share-link--copied {
    color: rgba(61, 97, 243, 0.8);
}

.check-detail__container > .check-detail__share .check-detail__share-link--copy {
    font: inherit;
}

/* Медиа-запросы для блока шаринга внизу страницы - max-width: 1024px */
@media screen and (max-width: 1024px) {
    .check-detail__container > .check-detail__share {
        max-width: 630px;
        margin: 64px auto 0;
    }

    .check-detail__container > .check-detail__share .check-detail__share-list {
        justify-content: center;
    }
}

/* Медиа-запросы для блока шаринга внизу страницы - max-width: 768px */
@media screen and (max-width: 768px) {
    .check-detail__container > .check-detail__share .check-detail__share-list {
        gap: 24px;
    }
}

/* Медиа-запросы для блока шаринга внизу страницы - max-width: 480px */
@media screen and (max-width: 480px) {
    .check-detail__container > .check-detail__share {
        margin-top: 64px;
    }

    .check-detail__container > .check-detail__share .check-detail__share-list {
        flex-direction: column;
        gap: 16px;
    }

    .check-detail__container > .check-detail__share .check-detail__share-item:not(:last-child)::after {
        display: none;
    }

    .check-detail__container > .check-detail__share .check-detail__share-link {
        font-size: 13px;
        letter-spacing: 0.26px;
    }
}

/* Базовые стили для блоков */
.acc {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background: #fff;
    transition: all 0.3s ease;
    min-height: 60px; /* Минимальная высота чтобы значки не наезжали */
}

/* Обертка для контента */
.block-content {
    padding-right: 100px; /* Отступ для значков справа */
    min-height: 40px; /* Минимальная высота контента */
}

/* Действия блока */
.block-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
    background: transparent;
}

.action-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.edit-btn {
    color: #007bff;
}

.edit-btn:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.delete-btn {
    color: #dc3545;
}

.delete-btn:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

/* Drag handle */
.drag-handle {
    color: #6c757d;
    cursor: grab;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-left: 4px;
}

.drag-handle:hover {
    color: #007bff;
    background-color: #e9ecef;
}

.edit-mode .sortable-item:active .drag-handle,
.edit-mode .sortable-item.sortable-chosen .drag-handle {
    cursor: grabbing;
    color: #0056b3;
}

/* Остальные ваши стили остаются без изменений */
.edit-mode .sortable-item {
    cursor: grab;
    border: 2px dashed transparent;
    transition: all 0.3s ease;
}

.edit-mode .sortable-item:hover {
    border-color: #007bff;
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.edit-mode .sortable-item.sortable-ghost {
    opacity: 0.4;
    background-color: #e3f2fd;
    border: 2px dashed #007bff;
}

.edit-mode .sortable-item.sortable-chosen {
    cursor: grabbing;
    transform: rotate(2deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.edit-mode .sortable-item.sortable-drag {
    opacity: 0.8;
}

.edit-mode .sortable-item.sortable-inserted {
    border-left: 4px solid #28a745;
    background-color: #f8fff9;
}

.sortable-container.edit-mode {
    min-height: 100px;
    padding: 8px;
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%),
    linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
    linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

/* Контейнер для кнопки добавления */
.add-block-btn-container {
    margin-bottom: 20px;
    text-align: center;
}

/* Кнопка добавления нового блока */
.add-block-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-block-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Остальные стили остаются без изменений */
.block-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
    background: transparent;
}

.action-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.edit-btn {
    color: #007bff;
}

.edit-btn:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.delete-btn {
    color: #dc3545;
}

.delete-btn:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.drag-handle {
    color: #6c757d;
    cursor: grab;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-left: 4px;
}

.drag-handle:hover {
    color: #007bff;
    background-color: #e9ecef;
}

.block-content {
    padding-right: 100px;
    min-height: 40px;
}

.acc {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background: #fff;
    transition: all 0.3s ease;
    min-height: 60px;
}

/* Стили для кнопок управления */
.sortable-controls {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.move-up-btn, .move-down-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #ccc;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.move-up-btn:hover:not(:disabled),
.move-down-btn:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #007bff;
}

.move-up-btn:disabled,
.move-down-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Стили для выделенного элемента */
.sortable-item.selected {
    background-color: #e3f2fd;
    border-color: #2196f3;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

/* Стили для inline кнопок */
.move-up-inline, .move-down-inline {
    color: #6c757d;
}

.move-up-inline:hover {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
}

.move-down-inline:hover {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.1);
}


/* End */


/* Start:/local/css/base-components.css?17647813935745*/
/* Базовые компоненты для текстовых страниц */

/* Блок ссылок (base-link) */
.base-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

.base-link__item {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--color-blue-light, #E8F6FF);
    text-decoration: none;
    color: inherit;
    transition: background-color 200ms linear;
}

@media screen and (min-width: 768px) {
    .base-link__item {
        padding: 32px;
    }
}

.base-link__name {
    flex: 1 1 auto;
    letter-spacing: -0.3px;
    line-height: 22px;
    font-weight: 400;
    font-size: 15px;
    color: #161333;
    transition: color 200ms linear;
}

@media screen and (min-width: 768px) {
    .base-link__name {
        letter-spacing: -0.36px;
        line-height: 26px;
        font-size: 18px;
    }
}

@media screen and (min-width: 1280px) {
    .base-link__item:hover .base-link__name {
        color: var(--color-bright-blue);
    }
}

.base-link__box {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
}

@media screen and (min-width: 768px) {
    .base-link__box {
        width: 20px;
        height: 20px;
    }
}

.base-link__icon {
    flex: 0 0 auto;
    display: block;
    width: 8px;
    height: 8px;
    stroke: none;
    fill: #161333;
    margin-top: 6px;
    transition: fill 200ms linear;
}

@media screen and (min-width: 768px) {
    .base-link__icon {
        width: 11px;
        height: 11px;
    }
}

@media screen and (min-width: 1280px) {
    .base-link__item:hover .base-link__icon {
        fill: var(--color-bright-blue);
    }
}

/* Блок файла (base-file) */
.base-file {
    flex: 0 0 auto;
    background: var(--color-blue-light, #E8F6FF);
    padding: 24px 16px;
}

@media screen and (min-width: 768px) {
    .base-file {
        padding: 32px;
        cursor: pointer;
    }
}

.base-file__head {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.base-file__text {
    flex: 0 0 auto;
    letter-spacing: -0.3px;
    line-height: 22px;
    font-weight: 400;
    font-size: 15px;
    color: #161333;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .base-file__text {
        letter-spacing: -0.36px;
        line-height: 26px;
        font-size: 18px;
    }
}

.base-file__year {
    flex: 0 0 auto;
    letter-spacing: -0.3px;
    line-height: 20px;
    font-weight: 400;
    font-size: 15px;
    color: rgba(22, 19, 51, 0.4);
    margin: 0;
}

@media screen and (min-width: 768px) {
    .base-file__year {
        letter-spacing: -0.36px;
        line-height: 26px;
        font-size: 18px;
    }
}

.base-file__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

@media screen and (min-width: 768px) {
    .base-file__box {
        margin-top: 32px;
    }
}

.base-file__info {
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.22px;
    line-height: 16px;
    font-weight: 500;
    font-size: 11px;
    color: #161333;
}

@media screen and (min-width: 768px) {
    .base-file__info {
        gap: 10px;
        letter-spacing: 0.3px;
        line-height: 22px;
        font-weight: 500;
        font-size: 15px;
    }
}

.base-file__size {
    flex: 0 0 auto;
    display: flex;
    gap: 4px;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .base-file__size {
        gap: 8px;
    }
}

.base-file__size span {
    flex: 0 0 auto;
}

.base-file__date {
    flex: 0 0 auto;
    position: relative;
    padding-left: 9px;
    margin: 0;
}

@media screen and (min-width: 768px) {
    .base-file__date {
        padding-left: 11px;
    }
}

.base-file__date::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    display: block;
    width: 1.5px;
    height: 12px;
    background-color: var(--color-dark-blue);
}

@media screen and (max-width: 1279px) {
    .base-file__date::before {
        width: 1px;
    }
}

@media screen and (min-width: 1280px) {
    .base-file__date::before {
        height: 18px;
    }
}

.base-file__link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.22px;
    line-height: 16px;
    font-weight: 500;
    font-size: 11px;
    color: #3D61F3;
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .base-file__link {
        gap: 8px;
        letter-spacing: 0.3px;
        line-height: 22px;
        font-weight: 520;
        font-size: 15px;
        padding: 0 2px;
    }
}

@media screen and (min-width: 1280px) {
    .base-file__link {
        position: relative;
        background-image: linear-gradient(to right, var(--color-blue-sky), var(--color-blue-sky));
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: 0% 100%;
        transition: background-size 0s;
    }
    .base-file:hover .base-file__link {
        background-size: 100% 100%;
        transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
}

.base-file__icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    stroke: none;
    fill: #3D61F3;
}

@media screen and (min-width: 1280px) {
    .base-file__icon {
        width: 20px;
        height: 20px;
    }
}


/* End */


/* Start:/local/components/sections/checks.related/templates/.default/style.css?1764715560778*/
.check-related__title {
    margin-bottom: 40px;
    font-family: 'Golos Text', sans-serif;
    font-size: 34px;
    font-weight: 470;
    line-height: 40px;
    letter-spacing: -0.68px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    color: #161333;
}

.check-related__list {
    display: grid;
    gap: 80px;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    list-style: none;
}

@media screen and (max-width: 1024px) {
    .check-related__list {
        gap: 64px;
    }
}

@media screen and (max-width: 540px) {
    .check-related__title {
        margin-bottom: 24px;
        font-size: 22px;
        line-height: 26px;
        letter-spacing: -0.44px;
    }

    .check-related__list {
        gap: 48px;
    }
}


/* End */
/* /local/components/sections/checks.detail/templates/.default/style.css?176471556079698 */
/* /local/css/base-components.css?17647813935745 */
/* /local/components/sections/checks.related/templates/.default/style.css?1764715560778 */
