/* NewsRusia theme styles */

:root {
    --nr-bg: #f3f6f9;
    --nr-surface: #ffffff;
    --nr-surface-soft: #f8fafc;
    --nr-text: #111827;
    --nr-muted: #667085;
    --nr-line: #dbe4ee;
    --nr-blue: #164f8f;
    --nr-blue-dark: #102f55;
    --nr-red: #c43d2b;
    --nr-red-dark: #a93022;
    --nr-green: #11715f;
    --nr-shadow: 0 18px 42px rgba(15, 23, 42, .1);
    --nr-radius: 8px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    margin-top: 0 !important;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: clip;
    background: var(--nr-bg);
    color: var(--nr-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    text-rendering: optimizeLegibility;
}

body.body {
    display: flex;
    flex-direction: column;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

input:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[contenteditable="true"]:focus {
    outline: 3px solid rgba(22, 79, 143, .22);
    outline-offset: 2px;
}

ul[class],
ol[class] {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.content {
    flex: 1 0 auto;
    background: var(--nr-bg);
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    background: var(--nr-blue-dark);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .12);
}

.header__content {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.header__logo {
    flex: 0 0 auto;
}

.logo {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.logo img {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: var(--nr-radius);
    object-fit: cover;
}

.logo-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header form {
    position: relative;
    display: flex;
    flex: 1 1 320px;
    max-width: 360px;
    align-items: center;
}

.header form input {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--nr-radius);
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    padding: 0 12px 0 42px;
    font-size: 14px;
}

.header form input::placeholder {
    color: rgba(255, 255, 255, .72);
}

.header form button[type="submit"] {
    position: absolute;
    left: 8px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 6px;
    background: transparent;
    color: #ffffff;
}

.close-burger {
    display: none;
}

.icon-search {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.header__menu {
    flex: 0 1 auto;
}

.nav {
    min-width: 0;
}

.menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu__link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border-radius: var(--nr-radius);
    color: rgba(255, 255, 255, .88);
    padding: 0 12px;
    font-size: 14px;
    font-weight: 800;
    transition: background .2s ease, color .2s ease;
}

.menu__link:hover,
.menu__link[aria-current="page"] {
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
}

.search_m,
.header__m-menu {
    display: none;
}

.open-menu {
    position: relative;
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: var(--nr-radius);
    background: var(--nr-red);
}

.open-menu span,
.open-menu span::before,
.open-menu span::after {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    transition: transform .2s ease, opacity .2s ease;
}

.open-menu span {
    position: relative;
}

.open-menu span::before,
.open-menu span::after {
    position: absolute;
    content: "";
    left: 0;
}

.open-menu span::before {
    top: -6px;
}

.open-menu span::after {
    top: 6px;
}

.open-menu.active span {
    background: transparent;
}

.open-menu.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.open-menu.active span::after {
    top: 0;
    transform: rotate(-45deg);
}

.close_btn {
    display: none;
}

.nr-category-nav {
    position: sticky;
    top: 77px;
    z-index: 50;
    border-bottom: 1px solid var(--nr-line);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
}

.nr-category-nav__inner {
    position: relative;
    display: grid;
    min-height: 48px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.nr-category-nav__label {
    color: var(--nr-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nr-category-nav__rail {
    display: flex;
    min-width: 0;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.nr-category-nav__rail::-webkit-scrollbar {
    display: none;
}

.nr-category-nav a,
.nr-category-nav__all summary {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border-radius: 999px;
    color: #263241;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.nr-category-nav__rail a {
    padding: 0 12px;
    background: #f4f7fb;
}

.nr-category-nav a:hover {
    color: var(--nr-blue);
}

.nr-category-nav__all {
    position: relative;
}

.nr-category-nav__all summary {
    padding: 0 14px;
    background: var(--nr-blue);
    color: #ffffff;
    cursor: pointer;
    list-style: none;
}

.nr-category-nav__all summary::-webkit-details-marker {
    display: none;
}

.nr-category-nav__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(680px, calc(100vw - 28px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid var(--nr-line);
    border-radius: var(--nr-radius);
    background: #ffffff;
    box-shadow: var(--nr-shadow);
    padding: 14px;
}

.nr-category-nav__panel a {
    justify-content: flex-start;
    background: var(--nr-surface-soft);
    padding: 0 12px;
}

.breadcrumb {
    padding: 18px 0;
}

.breadcrumb .wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--nr-muted);
    font-size: 13px;
}

.breadcrumb a {
    color: var(--nr-blue);
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 6px;
    color: #a7b2c0;
}

.index {
    padding: 28px 0 64px;
}

.nr-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, .8fr);
    gap: 22px;
}

.nr-feature {
    position: relative;
    display: block;
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--nr-radius);
    background: #111827;
    box-shadow: var(--nr-shadow);
}

.nr-feature img,
.nr-side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nr-feature__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 22, 39, .05), rgba(9, 22, 39, .82));
}

.nr-kicker {
    display: inline-flex;
    width: max-content;
    min-height: 28px;
    align-items: center;
    border-radius: 999px;
    background: var(--nr-red);
    color: #ffffff;
    padding: 0 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.nr-feature > .nr-kicker {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
}

.nr-feature__content {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    z-index: 2;
    color: #ffffff;
}

.nr-meta,
.card-date,
.nr-section__head span,
.nr-list small,
.nr-article-meta {
    color: var(--nr-muted);
    font-size: 13px;
    line-height: 1.4;
}

.nr-feature__content .nr-meta {
    color: rgba(255, 255, 255, .78);
}

.nr-feature h1 {
    max-width: 760px;
    margin: 10px 0;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.02;
}

.nr-feature__excerpt {
    display: block;
    max-width: 650px;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.5;
}

.nr-hero__side {
    display: grid;
    gap: 14px;
}

.nr-side-card {
    display: grid;
    min-height: 128px;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 14px;
    border: 1px solid var(--nr-line);
    border-radius: var(--nr-radius);
    background: var(--nr-surface);
    padding: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.nr-side-card:hover,
.nr-list a:hover,
.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--nr-shadow);
}

.nr-side-card img {
    border-radius: 6px;
}

.nr-side-card span,
.nr-list span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.nr-side-card b {
    color: var(--nr-red);
    font-size: 11px;
    text-transform: uppercase;
}

.nr-side-card strong,
.nr-list strong {
    color: var(--nr-text);
    font-size: 16px;
    line-height: 1.25;
}

.nr-topic-strip {
    display: flex;
    gap: 10px;
    margin: 26px 0 34px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.nr-topic-strip a {
    flex: 0 0 auto;
    border: 1px solid var(--nr-line);
    border-radius: 999px;
    background: var(--nr-surface);
    color: var(--nr-blue);
    padding: 10px 14px;
    font-weight: 900;
}

.nr-section {
    margin-top: 34px;
}

.nr-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--nr-line);
    margin-bottom: 18px;
    padding-bottom: 14px;
}

.block-title,
.final-news-block .block-title,
.related_articles h2 {
    margin: 0;
    color: var(--nr-text);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
}

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

.card {
    position: relative;
    display: flex;
    min-height: 100%;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--nr-line);
    border-radius: var(--nr-radius);
    background: var(--nr-surface);
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

.card-image {
    position: relative;
    height: 210px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 999px;
    background: rgba(17, 24, 39, .78);
    color: #ffffff;
    padding: 6px 9px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.card-title {
    margin: 0;
    color: var(--nr-text);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.card-text {
    margin: 0;
    color: #526071;
    font-size: 14px;
    line-height: 1.55;
}

.cards-wrapper + .center,
.news-block > .center,
.center.category_bnt,
.category_bnt {
    margin: 28px 0 20px;
    padding: 0;
}

.load-more-btn,
.bnt_refhesh {
    display: inline-flex;
    min-width: 176px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: var(--nr-radius);
    background: var(--nr-red);
    color: #ffffff;
    padding: 10px 20px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
}

.bnt_main_play {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--nr-radius);
    background: var(--nr-red);
    color: #fff;
    cursor: pointer;
    padding: 10px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transition: background .18s ease, box-shadow .18s ease;
}

.bnt_main_play:hover {
    background: var(--nr-red-dark);
}

.bnt_main_play:focus-visible {
    outline: 3px solid rgba(217, 45, 32, .2);
    outline-offset: 3px;
}

.load-more-btn:hover,
.bnt_refhesh:hover {
    background: var(--nr-red-dark);
}

.load-more-btn.is-loading::before {
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: nr-spin .8s linear infinite;
}

@keyframes nr-spin {
    to {
        transform: rotate(360deg);
    }
}

.nr-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .6fr);
    gap: 22px;
    margin-top: 48px;
}

.nr-list {
    display: grid;
    gap: 12px;
}

.nr-list a {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    border: 1px solid var(--nr-line);
    border-radius: var(--nr-radius);
    background: var(--nr-surface);
    padding: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.nr-list img {
    width: 112px;
    height: 78px;
    border-radius: 6px;
    object-fit: cover;
}

.nr-column--accent {
    border-radius: var(--nr-radius);
    background: var(--nr-blue-dark);
    color: #ffffff;
    padding: 24px;
}

.nr-column--accent h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 28px;
}

.nr-column--accent p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.65;
}

.nr-inline-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-top: 18px;
}

.nr-inline-search input,
.nr-inline-search button {
    height: 44px;
    border-radius: var(--nr-radius);
}

.nr-inline-search input {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 0 12px;
}

.nr-inline-search button {
    background: var(--nr-red);
    color: #ffffff;
    padding: 0 18px;
    font-weight: 900;
}

.nr-archive-head {
    margin: 10px 0 24px;
}

.nr-archive-head .nr-kicker {
    margin-bottom: 10px;
}

.h1 h1,
.nr-archive-head h1 {
    margin: 0;
    color: var(--nr-text);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.08;
}

.nr-archive-head p {
    max-width: 760px;
    color: var(--nr-muted);
    font-size: 17px;
    line-height: 1.6;
}

.nr-article-head {
    max-width: 900px;
    margin: 12px auto 24px;
}

.nr-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.nr-article-head h1 {
    margin: 0;
    color: var(--nr-text);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.02;
}

.nr-article-head p {
    max-width: 820px;
    margin: 16px 0 0;
    color: #475569;
    font-size: 20px;
    line-height: 1.55;
}

.all_content {
    max-width: 900px;
    margin: 0 auto;
}

.nr-article-cover {
    margin-bottom: 26px;
}

.nr-article-cover img,
.all_content img {
    width: 100%;
    border-radius: var(--nr-radius);
}

.all_content > *:first-child {
    margin-top: 0;
}

.all_content p,
.all_content li {
    color: #263241;
    font-size: 18px;
    line-height: 1.72;
}

.all_content p {
    margin: 0 0 18px;
}

.all_content a {
    color: var(--nr-blue);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.all_content a:hover {
    color: var(--nr-red);
}

.all_content h2,
.all_content h3,
.all_content h4 {
    color: var(--nr-text);
    line-height: 1.18;
}

.all_content ul:not([class]),
.all_content ol:not([class]) {
    padding-left: 24px;
}

.table_wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.podel {
    max-width: 900px;
    margin: 26px auto;
}

.center_post {
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.share-popup {
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    place-items: center;
    border: 1px solid var(--nr-line);
    border-radius: var(--nr-radius);
    background: var(--nr-surface);
    color: var(--nr-text);
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.share-popup:hover {
    border-color: rgba(31, 91, 164, .35);
    background: rgba(31, 91, 164, .08);
    color: var(--nr-blue);
}

.share-popup:focus-visible {
    outline: 3px solid rgba(31, 91, 164, .2);
    outline-offset: 3px;
}

.page-social,
.soc-icon,
.soc-top {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.final-news-block,
.related_articles {
    max-width: 1100px;
    margin: 54px auto 0;
}

.final-news-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.final-news-card {
    overflow: hidden;
    border: 1px solid var(--nr-line);
    border-radius: var(--nr-radius);
    background: var(--nr-surface);
}

.final-news-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.final-news-content {
    padding: 14px;
}

.final-news-title {
    margin: 0;
    color: var(--nr-text);
    font-size: 16px;
    line-height: 1.3;
}

.final-news-date {
    display: block;
    margin-top: 8px;
    color: var(--nr-muted);
    font-size: 12px;
}

.footer {
    margin-top: 54px;
    background: var(--nr-blue-dark);
    color: rgba(255, 255, 255, .78);
    padding: 30px 0;
}

.footer .gap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px 34px;
}

.socical {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.footer .soc {
    display: flex;
}

.footer .share-popup {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .88);
}

.footer .share-popup:hover {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.footer .soc-icon {
    width: 18px;
    height: 18px;
}

.footer_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer .menu__link {
    color: rgba(255, 255, 255, .78);
}

.footer .bnt_main_play {
    margin: 0;
    background: #fff;
    color: var(--nr-blue-dark);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.footer .bnt_main_play:hover {
    background: rgba(255, 255, 255, .9);
}

.terms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.terms .item {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .8);
    padding: 8px 12px;
    font-size: 13px;
}

.footer_text,
.footer_text p {
    max-width: 920px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.55;
}

.footer_text {
    grid-column: 1 / -1;
}

.fix_flex {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.fix_flex.visible {
    opacity: 1;
    visibility: visible;
}

.black_top {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: var(--nr-radius);
    background: var(--nr-blue);
    color: #ffffff;
    cursor: pointer;
}

.notfound {
    padding-bottom: 80px;
}

.notfound-content {
    display: grid;
    min-height: 420px;
    place-items: center;
    gap: 24px;
    text-align: center;
}

.error_404 {
    width: min(420px, 80vw);
    height: auto;
}

.notfound-404 {
    color: var(--nr-red);
    font-size: clamp(34px, 8vw, 70px);
    font-weight: 900;
}

.notfound-title,
.page-title,
.content_none {
    color: var(--nr-muted);
    font-size: 18px;
    line-height: 1.6;
}

.entry-header,
.entry-content,
.page-header,
.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.entry-title,
.page-title {
    color: var(--nr-text);
}

.logo-text,
.menu__link,
.card-title,
.nr-side-card strong,
.nr-list strong,
.nr-article-head h1,
.h1 h1,
.all_content p,
.all_content li {
    overflow-wrap: anywhere;
    word-break: normal;
}

@media (max-width: 1240px) {
    .header {
        min-height: 0;
    }

    .header__content {
        display: grid;
        min-height: 38px;
        height: auto;
        grid-template-columns: minmax(0, 1fr) 35px 35px;
        grid-auto-rows: auto;
        align-items: center;
        gap: 10px;
    }

    .header__logo {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .search_m {
        display: grid;
        grid-column: 2;
        grid-row: 1;
        width: 35px;
        height: 35px;
        place-items: center;
        border-radius: var(--nr-radius);
        background: var(--nr-red);
        color: #ffffff;
    }

    .header__m-menu {
        display: block;
        grid-column: 3;
        grid-row: 1;
    }

    .header form#main-search {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .header form#main-search.active {
        display: flex;
        margin-top: 10px;
    }

    .header__menu {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: grid;
        place-items: center;
        background: var(--nr-blue-dark);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .header__menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header__menu .menu {
        flex-direction: column;
        gap: 12px;
    }

    .header__menu .menu__link {
        min-height: 44px;
        font-size: 20px;
    }

    .close_btn {
        position: absolute;
        top: 22px;
        right: 22px;
        display: grid;
        width: 36px;
        height: 36px;
        place-items: center;
        border-radius: var(--nr-radius);
        background: var(--nr-red);
        cursor: pointer;
    }

    .close_btn span {
        position: absolute;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #ffffff;
    }

    .close_btn span:first-child {
        transform: rotate(45deg);
    }

    .close_btn span:last-child {
        transform: rotate(-45deg);
    }

    .nr-category-nav {
        top: 62px;
    }
}

@media (max-width: 980px) {
    .nr-hero,
    .nr-split {
        grid-template-columns: 1fr;
    }

    .nr-feature {
        min-height: 470px;
    }

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

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

@media (max-width: 680px) {
    .container,
    .breadcrumb .wrap {
        padding: 0 14px;
    }

    .header {
        padding: 10px 0;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .logo-text {
        max-width: calc(100vw - 160px);
        font-size: 18px;
        line-height: 1.1;
    }

    .nr-category-nav {
        top: 58px;
    }

    .nr-category-nav__inner {
        grid-template-columns: 1fr auto;
        gap: 10px;
        min-height: 46px;
    }

    .nr-category-nav__label {
        display: none;
    }

    .nr-category-nav__rail a,
    .nr-category-nav__all summary {
        min-height: 32px;
        font-size: 13px;
    }

    .nr-category-nav__panel {
        right: 0;
        max-height: 60vh;
        overflow-y: auto;
        grid-template-columns: 1fr;
    }

    .index {
        padding-top: 14px;
    }

    .nr-feature {
        min-height: 500px;
    }

    .nr-feature > .nr-kicker {
        top: 18px;
        left: 18px;
    }

    .nr-feature__content {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .nr-feature h1 {
        font-size: 31px;
        line-height: 1.08;
    }

    .nr-article-head h1 {
        font-size: 34px;
    }

    .nr-feature__excerpt {
        font-size: 16px;
        line-height: 1.42;
    }

    .nr-article-head p {
        font-size: 16px;
    }

    .nr-side-card,
    .nr-list a {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .nr-side-card {
        min-height: 128px;
    }

    .cards-wrapper,
    .content_film.cards-wrapper {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 220px;
    }

    .nr-section__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .block-title {
        font-size: 26px;
    }

    .cards-wrapper + .center,
    .news-block > .center,
    .center.category_bnt,
    .category_bnt {
        margin: 22px 0 18px;
    }

    .load-more-btn,
    .bnt_refhesh {
        width: 100%;
        max-width: 260px;
        min-height: 44px;
    }

    .nr-inline-search,
    .final-news-wrapper {
        grid-template-columns: 1fr;
    }

    .nr-article-head {
        margin-top: 18px;
    }

    .nr-article-meta {
        gap: 8px;
    }

    .all_content p,
    .all_content li {
        font-size: 17px;
        line-height: 1.65;
    }

    .center_post {
        justify-content: flex-start;
    }

    .podel .flex > span {
        flex: 0 0 100%;
    }

    .footer {
        padding: 28px 0;
    }

    .footer .gap {
        grid-template-columns: 1fr;
    }

    .footer_flex {
        align-items: stretch;
        flex-direction: column;
    }

    .footer .bnt_main_play {
        width: 100%;
    }
}
