

/* Start:/local/components/account.chamber/news.detail/templates/old_news/style.css?176487813866660*/
/* 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;
    --color-gray-light: #f7f8fa;
    --color-violet-tooltip: rgba(171, 171, 245, 0.33);
}

/* Предзагрузка шрифтов */
@font-face {
    font-family: 'GolosText';
    src: url('/local/dist/assets/fonts/GolosText-Variable.woff2') format('woff2');
    font-display: swap;
    font-weight: 100 900;
}

@font-face {
    font-family: 'TrolaLatCyr';
    src: url('/local/dist/assets/fonts/TrolaLatCyr-Regular.woff2') format('woff2');
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: 'TrolaLatCyr';
    src: url('/local/dist/assets/fonts/TrolaLatCyr-Light.woff2') format('woff2');
    font-display: swap;
    font-weight: 300;
}

/* Основной контейнер */
.news-detail {
    position: relative;
    padding: 16px 0 120px;
    background: var(--color-white);
    overflow: hidden;
}

.news-detail__container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 32px;
}

.news-detail__layout {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-top: 100px;
}

.news-detail__layout-content {
    max-width: 630px;
    flex-grow: 1;
}

.news-detail__layout-aside {
    display: grid;
    gap: 24px;
    align-items: flex-start;
    width: 307px;
    flex-shrink: 0;
}

.news-detail__aside-block {
    padding-top: 24px;
    border-top: 1.5px solid rgba(22, 19, 51, 0.16);
}

/* Кнопка назад */
.news-detail__back-link {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: max-content;
    gap: 8px;
    margin-bottom: 18px;
    padding: 12px 18px 12px 14px;
    border-radius: 6px;
    background: var(--color-light-gray);
    text-decoration: none;
    transition: background-color 200ms linear;
}

.news-detail__back-link::before {
    content: '';
    flex: 0 0 auto;
    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='%23161333' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 200ms linear;
}

.news-detail__back-link span {
    flex: 1 1 auto;
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-dark-blue);
    transition: color 200ms linear;
}

@media (hover: hover) {
    .news-detail__back-link:hover {
        background: var(--color-bright-blue);
    }

    .news-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='%23ccefff' stroke-width='1.5'/%3E%3C/svg%3E");
    }

    .news-detail__back-link:hover span {
        color: var(--color-blue-sky);
    }
}

/* Заголовок новости */
.news-detail__head {
    max-width: 1278px;
    margin: 0 auto;
    width: 100%;
}

.news-detail__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 40px;
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-dark-blue);
}

.news-detail__category {
    color: var(--color-bright-blue);
}

.news-detail__date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-detail__views {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-detail__views::before {
    content: '';
    display: inline-block;
    height: 18px;
    width: 1.5px;
    background: var(--color-dark-blue);
}

.news-detail__date::before {
    content: '';
    display: inline-block;
    height: 18px;
    width: 1.5px;
    background: var(--color-dark-blue);
}

.news-detail__title {
    margin-bottom: 40px;
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 50px;
    text-align: center;
    letter-spacing: -0.44px;
    color: var(--color-dark-blue);
}

.news-detail__authors {
    display: grid;
    gap: 8px;
    justify-items: center;
    margin: 0 0 64px;
    padding: 0;
    list-style: none;
}

.news-detail__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-detail__author-name {
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-dark-blue);
}

.news-detail__author-position {
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-dark-blue-40);
}

/* Лид - вводный текст */
.news-detail__lead {
    max-width: 890px;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.44px;
    text-align: center;
    color: var(--color-dark-blue);
}

.news-detail__lead a {
    position: relative;
    color: var(--color-bright-blue);
    text-decoration: underline;
    text-underline-offset: 4px;
    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;
}

@media (hover: hover) {
    .news-detail__lead a:hover {
        background-size: 100% 100%;
        transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    }
}

/* Изображение */
.news-detail__image {
    display: block;
    max-width: 100%;
    margin: 100px 0 0;
}

.news-detail__image img {
    display: block;
    width: 100%;
    height: auto;
}

.news-detail__image-caption {
    padding: 16px 32px 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.36px;
    text-align: left;
    color: var(--color-dark-blue-40);
}

/* Контент - основной текст */
.news-detail__content {
    padding-top: 100px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.32px;
    color: var(--color-dark-blue);
}

.news-detail__content p {
    margin-bottom: 20px;
}

.news-detail__content h2 {
    margin: 40px 0 20px;
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
}

.news-detail__content h3 {
    margin: 30px 0 16px;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
}

.news-detail__content a {
    color: var(--color-bright-blue);
    text-decoration: underline;
}

@media (hover: hover) {
    .news-detail__content a:hover {
        text-decoration: none;
    }
}

.news-detail__content img {
    max-width: 100%;
    height: auto;
}

.news-detail__related {
    margin-top: 120px;
}

/* Видео */
.news-detail__video {
    max-width: 900px;
    margin: 48px 0;
    margin-left: auto;
    margin-right: auto;
}

.news-detail__video iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Файлы */
.news-detail__files {
    max-width: 900px;
    margin: 48px 0;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
    background: var(--color-gray-light);
    border-radius: 8px;
}

.news-detail__files h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-dark-blue);
}

.news-detail__files ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-detail__files li {
    margin-bottom: 12px;
}

.news-detail__files a {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--color-bright-blue);
    text-decoration: underline;
}

@media (hover: hover) {
    .news-detail__files a:hover {
        text-decoration: none;
    }
}

/* Похожие новости */
.news-detail__similar {
    max-width: 900px;
    margin: 64px 0 0;
    margin-left: auto;
    margin-right: auto;
}

.news-detail__similar h2 {
    margin: 0 0 32px;
    font-family: "Trola", serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: -0.9px;
    color: var(--color-dark-blue);
}

.news-detail__similar-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-dark-blue-10);
}

.news-detail__similar-item:last-child {
    border-bottom: none;
}

.news-detail__similar-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.news-detail__similar-item h3 a {
    color: var(--color-dark-blue);
    text-decoration: none;
    transition: color 0.2s;
}

@media (hover: hover) {
    .news-detail__similar-item h3 a:hover {
        color: var(--color-bright-blue);
    }
}

.news-detail__similar-meta {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--color-dark-blue);
    opacity: 0.5;
}

.news-detail__layout-aside .news-detail__similar {
    max-width: none;
    margin: 0;
}

.news-detail__layout-aside .news-detail__similar h2 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.44px;
}

.news-detail__similar-list {
    display: grid;
    gap: 8px;
}

.news-detail__mobile-similar {
    display: none;
}

/* Карточка новости в сайдбаре */
.aside-news-card {
    display: grid;
    gap: 16px;
    align-items: flex-start;
    padding: 24px 16px;
    background: #F3F2F5;
    text-decoration: none;
    transition: box-shadow 0.25s ease;
}

.aside-news-card:hover {
    box-shadow: 0 14px 32px rgba(22, 19, 51, 0.12);
}

.aside-news-card__title {
    font-family: "Trola", serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: var(--color-dark-blue);
    transition: color 0.2s ease;
}

.aside-news-card__meta {
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: rgba(22, 19, 51, 0.4);
}

.aside-news-card:hover .aside-news-card__title,
.aside-news-card:focus-visible .aside-news-card__title {
    color: var(--color-bright-blue);
}

/* Сайдбар - авторы */
.news-detail__aside-title {
    margin-bottom: 16px;
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: rgba(22, 19, 51, 0.4);
}

.news-detail__aside-authors {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-detail__aside-authors-title {
    margin: 0;
    font-family: "Trola", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.44px;
    color: var(--color-dark-blue);
}

.news-detail__aside-authors-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-detail__aside-author {
    margin: 0;
}

.aside-author-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

.aside-author-card__photo {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background: #D9EFFA;
}

.aside-author-card__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.aside-author-card__name {
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-dark-blue);
    transition: color 0.2s ease;
}

.aside-author-card__position {
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: rgba(22, 19, 51, 0.4);
}

.aside-author-card:hover .aside-author-card__name,
.aside-author-card:focus-visible .aside-author-card__name {
    color: var(--color-bright-blue);
}

/* Блок с изображением */
.news-base-image {
    margin: 64px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-base-image__image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.news-base-image__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-base-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;
}

/* Зеленая подсказка */
.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);
}

.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;
}

/* Блок с большим текстом */
.news-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%);
}

/* Блок с цитатой */
.news-special-blockquote {
    width: min(1018px, 100vw);
    margin: 80px 0;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.news-special-blockquote__text {
    margin: 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;
}

.news-special-blockquote__author {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: rgba(22, 19, 51, 0.4);
}

/* Список дат */
.news-dates-list {
    width: 100%;
    margin: 64px 0;
    padding: 0;
}

.news-dates-list__title {
    margin: 0 0 24px;
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(22, 19, 51, 0.16);
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.56px;
    color: #161333;
}

.news-dates-list__events {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-dates-list__event {
    display: grid;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(22, 19, 51, 0.16);
}

.news-dates-list__event:last-child {
    border-bottom: none;
}

.news-dates-list__time {
    flex: 0 0 auto;
    min-width: 100px;
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.3px;
    color: #161333;
}

.news-dates-list__content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-dates-list__title-link {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: #3D61F3;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease;
}

.news-dates-list__title-link:hover,
.news-dates-list__title-link:focus-visible {
    outline: none;
    color: #2D4DD3;
}

.news-dates-list__title-text {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: #161333;
}

.news-dates-list__speaker {
    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);
}

/* Статистика */
.news-statistics {
    width: 100%;
    margin: 64px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-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;
}

.news-statistics__value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.news-statistics__value-wrapper--vertical {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.news-statistics__value {
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 72px;
    line-height: 80px;
    letter-spacing: -1.44px;
    color: #161333;
}

.news-statistics__value-prefix {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.44px;
    color: #161333;
}

.news-statistics__value-unit {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.44px;
    color: #161333;
}

.news-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);
}

/* Список статистики */
.news-statistics-list {
    width: 100%;
    margin: 64px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-statistics-list__items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.news-statistics-list__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-statistics-list__value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.news-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;
}

.news-statistics-list__value-prefix {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: #161333;
    text-transform: uppercase;
}

.news-statistics-list__value-unit {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: #161333;
    text-transform: uppercase;
}

.news-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;
}

.news-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);
}

/* Мобильная форма */
.news-detail__mobile-form {
    display: none;
    width: 100%;
    margin: 64px 0;
    padding: 0;
}

/* Ссылка на интервью */
.news-interview-link {
    width: 100%;
    margin: 80px 0 0;
    padding: 0;
    text-align: center;
}

.news-interview-link__text {
    margin: 0;
    padding: 0;
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #161333;
}

.news-interview-link__link {
    color: #161333;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease;
}

.news-interview-link__link:hover,
.news-interview-link__link:focus-visible {
    outline: none;
    color: #3D61F3;
}

/* Блок с цитатой (базовая) */
.news-base-quote {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 64px 0;
    padding-left: 32px;
    border-left: 1.5px solid #3D61F3;
}

.news-base-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);
}

.news-base-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);
}

.news-base-quote--author {
    gap: 32px;
    margin: 64px 0;
    padding: 40px 0;
    border-bottom: 1.5px solid rgba(22, 19, 51, 0.16);
    border-left: none;
    padding-left: 0;
}

.news-base-quote__author-head {
    display: flex;
    align-items: center;
    gap: 24px;
}

.news-base-quote__author-photo {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #D9EFFA;
}

.news-base-quote__author-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-base-quote__author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.news-base-quote__author-name {
    margin: 0;
    font-size: 22px;
    font-weight: 520;
    line-height: 30px;
    letter-spacing: -0.44px;
    color: var(--color-dark-blue);
}

.news-base-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);
}

/* Блок с текстом */
.news-text-block {
    margin: 40px 0;
    padding: 0;
    background: none;
}

.news-text-block:first-of-type {
    margin-top: 0;
}

.news-text-block:last-of-type {
    margin-bottom: 0;
}

.news-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;
}

.news-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;
}

.news-text-block p {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: var(--color-dark-blue);
}

.news-text-block > p:not(:first-child) {
    margin-top: 12px;
}

.news-text-block ul,
.news-text-block ol {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: var(--color-dark-blue);
}

.news-text-block > ul:not(:first-child),
.news-text-block > ol:not(:first-child) {
    margin-top: 16px;
}

.news-text-block > ul:not(:last-child),
.news-text-block > ol:not(:last-child) {
    margin-bottom: 16px;
}

.news-text-block strong {
    font-weight: 600;
}

.news-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);
}

.news-text-block a:hover,
.news-text-block a:focus-visible {
    outline: none;
    background-size: 100% 100%;
}

.news-text-block ol {
    counter-reset: ol;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    list-style: none;
}

.news-text-block ol li {
    counter-increment: ol;
    flex: 0 0 auto;
    position: relative;
    padding-left: 25px;
    margin: 0;
}

.news-text-block ol li::before {
    content: counter(ol) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: #3D61F3;
}

.news-text-block ol li ul {
    margin-top: 8px;
}

.news-text-block ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 0;
    list-style: none;
}

.news-text-block ul li {
    flex: 0 0 auto;
    position: relative;
    padding-left: 12px;
    margin: 0;
}

.news-text-block ul li::before {
    content: " ";
    position: absolute;
    left: 0;
    top: 10px;
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #3D61F3;
}

/* Подсказка в тексте */
.news-text-block-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.news-text-block-tooltip-trigger {
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    color: var(--color-bright-blue);
    cursor: pointer;
}

.news-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;
}

.news-text-block-tooltip-trigger:focus-visible + .news-text-block-tooltip-content,
.news-text-block-tooltip-trigger:hover + .news-text-block-tooltip-content {
    opacity: 1;
    transform: translateY(0);
}

.news-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;
}

/* Сноски */
.news-text-block__footnotes {
    display: grid;
    gap: 12px;
    margin-top: 40px;
    padding-top: 8px;
    border-top: 1px solid rgba(22, 19, 51, 0.16);
}

.news-text-block__footnote {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 520px;
}

.news-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);
}

.news-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);
}

.news-text-block__footnote--highlight {
    background: rgba(135, 197, 35, 0.16);
    color: #4F7512;
}

/* Документы */
.news-documents {
    width: 100%;
    min-width: 0;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.news-documents__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.news-documents__item {
    list-style: none;
}

.news-documents__item-link {
    display: block;
    padding: 32px;
    background: #CCEFFF;
    text-decoration: none;
    color: inherit;
}

.news-documents__item-name {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: #161333;
}

.news-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);
}

.news-documents__item-options {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.news-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);
}

.news-documents__item-data {
    display: flex;
    gap: 4px;
    margin: 0;
}

.news-documents__item-date {
    position: relative;
    padding-left: 9px;
    margin: 0;
}

.news-documents__item-date::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 1px;
    height: calc(100% - 4px);
    background: var(--color-dark-blue);
}

.news-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;
}

.news-documents__item-link:hover .news-documents__item-download,
.news-documents__item-link:focus-visible .news-documents__item-download {
    background-size: 100% 100%;
    transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.news-documents__item-icon {
    width: 16px;
    height: 16px;
    fill: var(--color-bright-blue);
}

.news-documents__download-all-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-documents__download-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 22px;
    font-weight: 520;
    font-size: 15px;
    color: var(--color-bright-blue);
    text-decoration: none;
    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;
}

.news-documents__download-all:hover,
.news-documents__download-all:focus-visible {
    outline: none;
    background-size: 100% 100%;
    transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.news-documents__download-all-icon {
    width: 20px;
    height: 20px;
    fill: var(--color-bright-blue);
}

/* Видео */
.news-video {
    width: min(1018px, 100vw);
    margin: 64px 0;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-video__media {
    position: relative;
    overflow: hidden;
}

.news-video__media::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.news-video__frame {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.news-video__caption {
    width: 760px;
    height: 52px;
    margin: 16px 0 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: rgba(22, 19, 51, 0.4);
    text-align: left;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Широкое изображение */
.news-wide-image {
    width: 100vw;
    position: relative;
    left: calc(50% - 50vw);
    margin: 120px 0 0;
}

.news-wide-image__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.news-wide-image__caption {
    width: 100%;
    margin: 16px auto 0;
    padding: 0 32px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: rgba(22, 19, 51, 0.4);
    text-align: left;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Делиться */
.news-detail__share {
    max-width: 630px;
    margin: 100px auto 0;
}

.news-detail__share-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.news-detail__share-item {
    position: relative;
    display: flex;
    align-items: center;
}

.news-detail__share-item:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background: var(--color-bright-blue);
    margin-left: 16px;
}

.news-detail__share-link {
    display: inline-flex;
    align-items: center;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0 2px;
    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: none;
    position: relative;
    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 0s;
}

.news-detail__share-link:hover,
.news-detail__share-link:focus-visible,
.news-detail__share-link--copied {
    background-size: 100% 100%;
    transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
    outline: none;
}

.news-detail__share-link--copy {
    font: inherit;
}

.news-detail__layout-aside .news-detail__share {
    max-width: none;
    margin: 0;
}

.news-detail__layout-aside .news-detail__share-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.news-detail__layout-aside .news-detail__share-item {
    width: 100%;
    margin: 0;
}

.news-detail__layout-aside .news-detail__share-item:not(:last-child)::after {
    display: none;
}

.news-detail__layout-aside .news-detail__share-link {
    display: block;
    padding: 0;
    background: none;
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 25%;
    color: var(--color-dark-blue);
    transition: color 0.2s ease;
}

.news-detail__layout-aside .news-detail__share-link:hover,
.news-detail__layout-aside .news-detail__share-link:focus-visible,
.news-detail__layout-aside .news-detail__share-link--copied {
    color: var(--color-bright-blue);
    background-size: 0 0;
    outline: none;
}

/* Подписка */
.news-detail__subscribe.news-detail__aside-block {
    border-top: none;
}

.news-detail__subscribe {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 24px 16px 16px;
    background: #E8F6FF;
    overflow: hidden;
}

.news-detail__subscribe-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    width: 100%;
}

.news-detail__subscribe-title {
    margin: 0;
    font-family: "Trola", serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: var(--color-dark-blue);
}

.news-detail__subscribe-form {
    display: grid;
    gap: 16px;
    transition: opacity 200ms ease;
}

.news-detail__subscribe-field {
    display: grid;
    gap: 12px;
}

.news-detail__subscribe-input {
    padding: 0 0 9px;
    border: none;
    border-bottom: 1.5px solid rgba(22, 19, 51, 0.4);
    background: transparent;
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-dark-blue);
    flex: none;
    order: 0;
    flex-grow: 0;
    outline: none;
    transition: border-color 200ms ease, color 200ms ease;
}

.news-detail__subscribe-input::placeholder {
    color: rgba(22, 19, 51, 0.4);
}

.news-detail__subscribe-input:focus,
.news-detail__subscribe-input:focus-visible {
    border-bottom-color: var(--color-dark-blue);
}

.news-detail__subscribe-error {
    display: none;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: var(--color-red);
}

.news-detail__subscribe-error--visible {
    display: block;
}

.news-detail__subscribe-button {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 28px;
    border: none;
    border-radius: 8px;
    background: #CCEFFF;
    font-style: normal;
    font-weight: 520;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-dark-blue);
    cursor: pointer;
    transition: background-color 200ms ease, color 200ms ease;
}

.news-detail__subscribe-button:hover,
.news-detail__subscribe-button:focus-visible {
    background: #B1E3FF;
    outline: none;
}

.news-detail__subscribe-success {
    position: absolute;
    inset: 0;
    padding: 24px 16px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: #E8F6FF;
    font-family: "Trola", serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: var(--color-dark-blue);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.news-detail__subscribe--success .news-detail__subscribe-form {
    opacity: 0;
    pointer-events: none;
}

.news-detail__subscribe--success .news-detail__subscribe-success {
    opacity: 1;
    pointer-events: auto;
}

/* Персоны */
.news-detail__persons {
    max-width: 630px;
    margin: 100px auto 0;
}

.news-detail__persons-title {
    margin: 0 0 16px;
    padding-bottom: 16px;
    font-style: normal;
    font-weight: 470;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.56px;
    color: #161333;
    border-bottom: 1.5px solid rgba(22, 19, 51, 0.16);
}

.news-detail__persons-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.news-detail__person-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.news-detail__person-image {
    flex: 0 0 auto;
    display: block;
    width: 187px;
    height: 187px;
    object-position: center;
    object-fit: cover;
    background: #D9EFFA;
    overflow: hidden;
}

.news-detail__person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail__person-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.news-detail__person-name {
    margin: 0;
    font-style: normal;
    font-weight: 470;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -0.44px;
}

.news-detail__person-name a {
    color: inherit;
    text-decoration: none;
}

.news-detail__person-position {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
}

.news-detail__person-description {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    color: var(--color-dark-blue);
}

.news-detail__person-link {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-top: 4px;
    font-size: 15px;
    font-weight: 520;
    line-height: 22px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--color-bright-blue);
    text-decoration: none;
    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;
}

.news-detail__person-link::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4L11 8L7 12' stroke='%233D61F3' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.news-detail__person-link:hover {
    background-size: 100% 100%;
    transition: background-size 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Фиолетовая подсказка */
.violet-tooltip {
    position: relative;
    display: inline;
    background: var(--color-violet-tooltip);
    cursor: pointer;
}

.violet-tooltip__inner {
    position: relative;
    display: grid;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    margin-top: -16px;
    width: 307px;
    padding: 24px 16px;
    gap: 16px;
    background: var(--color-light-gray);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    text-align: left;
}

.violet-tooltip__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.violet-tooltip__img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.violet-tooltip__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.violet-tooltip__author-name {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: var(--color-dark-blue);
}

.violet-tooltip__author-position {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.26px;
    text-transform: uppercase;
    color: var(--color-dark-blue-40);
}

.violet-tooltip__text {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.14px;
    color: var(--color-dark-blue);
}

.violet-tooltip--right-aligned .violet-tooltip__inner {
    left: auto;
    right: 0;
    transform: translate(0, -100%);
}

@media (hover: hover) {
    .violet-tooltip:hover .violet-tooltip__inner {
        opacity: 1;
        visibility: visible;
    }
}

/* Медиа-запросы - min-width: 768px */
@media screen and (min-width: 768px) {
    .news-text-block ul li::before {
        top: 11px;
        width: 6px;
        height: 6px;
    }
}

/* Медиа-запросы - min-width: 1280px */
@media screen and (min-width: 1280px) {
    .news-text-block ol {
        gap: 13px;
    }

    .news-text-block ol li {
        padding-left: 27px;
    }

    .news-text-block ol li ul {
        margin-top: 12px;
    }

    .news-text-block ul {
        gap: 16px;
    }

    .news-text-block ul li {
        padding-left: 14px;
    }
}

/* Медиа-запросы - max-width: 1024px */
@media screen and (max-width: 1024px) {
    .news-detail__container {
        padding: 0 24px;
    }

    .news-detail__back-link {
        margin-bottom: 32px;
    }

    .news-detail__back-link span {
        font-style: normal;
    }

    .news-detail__lead {
        max-width: 875px;
    }

    .news-detail__image {
        margin-top: 80px;
    }

    .news-detail__content {
        padding-top: 80px;
    }

    .news-detail__related {
        margin-top: 100px;
    }

    .news-detail__image-caption {
        padding: 16px 24px 0;
        font-style: normal;
    }

    .violet-tooltip__inner {
        left: 0;
        transform: translate(0, -100%);
    }

    .news-detail__persons {
        margin-top: 80px;
    }

    .news-wide-image {
        margin-top: 96px;
    }

    .news-wide-image__caption {
        padding: 0 24px;
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

/* Медиа-запросы - max-width: 1023px */
@media screen and (max-width: 1023px) {
    .news-detail__mobile-similar {
        display: block;
        margin: 64px 0;
    }

    .news-detail__similar {
        max-width: 630px;
        margin: 64px auto 0;
    }

    .news-base-image {
        margin: 64px 0;
    }

    .news-base-image__caption {
        width: 100%;
        max-width: 100%;
    }

    .green-tooltip-popup {
        right: 16px;
        max-width: calc(100vw - 32px);
    }

    .news-special-text {
        width: 100%;
        margin: 64px 0;
        left: auto;
        transform: none;
        font-size: 28px;
        line-height: 36px;
    }

    .news-special-blockquote {
        width: 100%;
        margin: 64px 0;
        left: auto;
        transform: none;
        gap: 20px;
    }

    .news-special-blockquote__text {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.28px;
    }

    .news-base-quote--author {
        gap: 24px;
    }

    .news-base-quote__author-head {
        gap: 16px;
    }

    .news-base-quote__author-photo {
        width: 48px;
        height: 48px;
    }

    .news-base-quote__author-name {
        font-size: 20px;
        line-height: 28px;
    }

    .news-base-quote {
        margin: 48px 0;
        padding: 32px;
        gap: 20px;
    }

    .news-base-quote__text {
        font-size: 26px;
        line-height: 36px;
    }

    .news-video {
        width: 100%;
        margin: 64px 0;
        left: auto;
        transform: none;
    }

    .news-video__caption {
        width: 100%;
        height: auto;
    }

    .news-text-block {
        margin: 32px 0;
        gap: 20px;
    }

    .news-text-block h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .news-text-block h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .news-text-block p,
    .news-text-block ul,
    .news-text-block ol {
        font-size: 17px;
        line-height: 24px;
    }

    .news-detail__subscribe {
        padding: 24px 16px 16px;
    }

    .news-detail__subscribe-success {
        padding: 24px 16px 16px;
    }

    .news-detail__layout-aside .news-detail__share {
        max-width: 630px;
        margin: 64px auto 0;
    }

    .news-detail__layout-aside .news-detail__share-list {
        justify-content: center;
    }

    .news-detail__person-image {
        width: 178px;
        height: 178px;
    }
}

/* Медиа-запросы - max-width: 768px */
@media screen and (max-width: 768px) {
    .news-dates-list {
        margin: 48px 0;
    }

    .news-dates-list__title {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: -0.48px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .news-dates-list__event {
        flex-direction: column;
        gap: 12px;
        padding: 20px 0;
    }

    .news-dates-list__time {
        min-width: auto;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.28px;
    }

    .news-dates-list__title-link,
    .news-dates-list__title-text {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.32px;
    }

    .news-dates-list__speaker {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.28px;
    }

    .news-statistics {
        margin: 48px 0;
        gap: 20px;
    }

    .news-statistics__title {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.4px;
        padding-bottom: 12px;
    }

    .news-statistics__value-wrapper {
        gap: 6px;
    }

    .news-statistics__value {
        font-size: 56px;
        line-height: 64px;
        letter-spacing: -1.12px;
    }

    .news-statistics__value-prefix,
    .news-statistics__value-unit {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.4px;
    }

    .news-statistics__description {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.28px;
    }

    .news-statistics-list {
        margin: 48px 0;
        gap: 32px;
    }

    .news-statistics-list__items {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .news-statistics-list__item {
        gap: 12px;
    }

    .news-statistics-list__value {
        font-size: 48px;
        line-height: 56px;
        letter-spacing: -0.96px;
    }

    .news-statistics-list__value-prefix,
    .news-statistics-list__value-unit {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.32px;
    }

    .news-statistics-list__label {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.28px;
    }

    .news-statistics-list__description {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: -0.28px;
    }

    .news-detail__mobile-form {
        display: block;
    }

    .news-interview-link {
        margin: 64px 0 0;
    }

    .news-interview-link__text {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.28px;
    }

    .news-detail__share-list {
        gap: 24px;
    }

    .news-detail {
        overflow: hidden;
    }

    .news-detail__back-link {
        margin-bottom: 40px;
    }

    .news-detail__meta {
        justify-content: flex-start;
        margin-bottom: 24px;
    }

    .news-detail__title {
        margin-bottom: 24px;
        text-align: left;
    }

    .news-detail__authors {
        justify-items: flex-start;
        margin-bottom: 0;
    }

    .news-detail__lead {
        margin: 64px 0 0;
        text-align: left;
    }

    .news-detail__video iframe {
        height: 300px;
    }
}

/* Медиа-запросы - max-width: 767px */
@media screen and (max-width: 767px) {
    .news-detail__persons {
        margin-top: 64px;
    }

    .news-detail__persons-title {
        padding-bottom: 24px;
        font-size: 18px;
        line-height: 22px;
        letter-spacing: -0.46px;
    }

    .news-detail__person-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .news-detail__person-image {
        width: 140px;
        height: 140px;
    }

    .news-detail__person-content {
        align-items: center;
    }

    .news-detail__person-name {
        font-size: 24px;
        line-height: 30px;
    }

    .news-detail__person-description {
        font-size: 15px;
        line-height: 22px;
    }
}

/* Медиа-запросы - max-width: 540px */
@media screen and (max-width: 540px) {
    .news-base-image {
        margin: 40px 0;
    }

    .news-base-image__caption {
        font-size: 15px;
        line-height: 22px;
        letter-spacing: -0.3px;
    }

    .news-special-text {
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.22px;
    }

    .news-special-blockquote {
        gap: 16px;
    }

    .news-special-blockquote__text {
        font-size: 22px;
        line-height: 28px;
        letter-spacing: -0.22px;
    }

    .news-special-blockquote__author {
        font-size: 15px;
        line-height: 22px;
        letter-spacing: -0.3px;
    }

    .news-statistics {
        gap: 16px;
    }

    .news-statistics__title {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: -0.36px;
    }

    .news-statistics__value-wrapper {
        gap: 4px;
    }

    .news-statistics__value {
        font-size: 48px;
        line-height: 56px;
        letter-spacing: -0.96px;
    }

    .news-statistics__value-prefix,
    .news-statistics__value-unit {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: -0.36px;
    }

    .news-statistics-list {
        gap: 24px;
    }

    .news-statistics-list__items {
        gap: 24px;
    }

    .news-statistics-list__item {
        gap: 10px;
    }

    .news-statistics-list__value {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: -0.8px;
    }

    .news-interview-link {
        margin: 48px 0 0;
    }

    .news-base-quote--author {
        gap: 20px;
    }

    .news-base-quote__author-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-base-quote__author-photo {
        width: 48px;
        height: 48px;
    }

    .news-base-quote__author-name {
        font-size: 18px;
        line-height: 24px;
    }

    .news-base-quote {
        margin: 32px 0;
        padding: 24px;
    }

    .news-base-quote__text {
        font-size: 20px;
        line-height: 30px;
    }

    .news-base-quote__text::before {
        left: -20px;
        font-size: 60px;
    }

    .news-base-quote__author {
        font-size: 14px;
        line-height: 20px;
    }

    .news-video {
        margin: 64px 0;
    }

    .news-wide-image {
        margin-top: 64px;
    }

    .news-wide-image__caption {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        height: auto;
        font-size: 13px;
        line-height: 18px;
        letter-spacing: -0.24px;
    }

    .news-text-block {
        margin: 28px 0;
        gap: 18px;
    }

    .news-text-block:first-of-type {
        margin-top: 0;
    }

    .news-text-block:last-of-type {
        margin-bottom: 0;
    }

    .news-text-block h2 {
        font-size: 24px;
        line-height: 30px;
    }

    .news-text-block h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .news-text-block p,
    .news-text-block ul,
    .news-text-block ol {
        font-size: 16px;
        line-height: 24px;
    }

    .news-detail__share {
        margin-top: 64px;
    }

    .news-detail__share-list {
        flex-direction: column;
        gap: 16px;
    }

    .news-detail__share-item:not(:last-child)::after {
        display: none;
    }

    .news-detail__share-link {
        font-size: 13px;
        letter-spacing: 0.26px;
    }

    .news-detail__subscribe {
        padding: 24px 16px 16px;
    }

    .news-detail__subscribe-content {
        gap: 24px;
    }

    .news-detail__subscribe-title {
        font-size: 18px;
        line-height: 22px;
    }

    .news-detail__subscribe-input {
        font-size: 16px;
        line-height: 22px;
    }

    .news-detail__subscribe-button {
        width: 100%;
        padding: 16px 24px;
        border-radius: 12px;
    }

    .news-detail__subscribe-success {
        padding: 24px 16px 16px;
        font-size: 18px;
        line-height: 22px;
    }

    .news-detail__person-name {
        margin-top: 8px;
        font-style: normal;
        font-weight: 520;
        font-size: 15px;
        line-height: 22px;
        letter-spacing: -0.3px;
    }

    .news-detail__person-position {
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 22px;
        letter-spacing: -0.3px;
    }

    .news-detail__container {
        padding: 0 16px;
    }

    .news-detail__back-link {
        padding: 10px 16px 10px 12px;
        gap: 8px;
        margin-bottom: 32px;
    }

    .news-detail__back-link::before {
        width: 16px;
        height: 16px;
    }

    .news-detail__back-link span {
        font-weight: 500;
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 0.22px;
    }

    .news-detail__meta {
        gap: 8px;
        margin-bottom: 16px;
    }

    .news-detail__meta,
    .news-detail__date,
    .news-detail__views {
        font-weight: 500;
        font-size: 11px;
        line-height: 16px;
        letter-spacing: 0.22px;
    }

    .news-detail__date,
    .news-detail__views {
        gap: 8px;
    }

    .news-detail__title {
        margin-bottom: 24px;
        font-size: 26px;
        line-height: 30px;
        letter-spacing: -0.52px;
    }

    .news-detail__authors {
        display: none;
    }

    .news-detail__lead {
        margin: 0;
        font-size: 15px;
        line-height: 22px;
        letter-spacing: -0.3px;
    }

    .news-detail__image {
        margin: 48px 0 40px;
    }

    .news-detail__image-caption {
        padding: 8px 16px 0;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: -0.24px;
    }

    .news-detail__related {
        margin-top: 80px;
    }

    .violet-tooltip--centered .violet-tooltip__inner {
        right: auto;
        transform: translateY(-100%);
        margin-top: 4px;
        padding: 32px 16px 24px;
    }

    .violet-tooltip--centered .violet-tooltip__inner::before {
        content: '';
        position: absolute;
        top: 12px;
        right: 12px;
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3L8 8M13 13L8 8M8 8L13 3M8 8L3 13' stroke='%23161333' stroke-opacity='0.16'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
}
/* Базовые стили для блоков */
.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);
}

.news-detail__head .ui-btn-container {
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}
/* End */
/* /local/components/account.chamber/news.detail/templates/old_news/style.css?176487813866660 */
