/* =========================================================
   NOVO-NSK.RU вЂ” РЎС‚СЂР°РЅРёС†Р° РЅРѕРІРѕСЃС‚Рё "РљРІР°СЂС‚РёСЂС‹ Р•РІСЂРѕС„РѕСЂРјР°С‚Р°"
   ========================================================= */

@font-face {
  font-family: 'Euclid Circular A';
  src: local('Euclid Circular A Light');
  font-weight: 300;
}
@font-face {
  font-family: 'Euclid Circular A';
  src: local('Euclid Circular A Regular');
  font-weight: 400;
}
@font-face {
  font-family: 'Euclid Circular A';
  src: local('Euclid Circular A Medium');
  font-weight: 500;
}

:root {
  --color-black: #000000;
  --color-text: #1a1a1a;
  --color-gray-900: #2C3036;
  --color-gray-600: #666666;
  --color-gray-400: #999999;
  --color-gray-200: #E2E8EF;
  --color-gray-100: #F7F8FA;
  --color-gray-bg: #F0F3F7;
  --color-blue: #0077FF;
  --color-blue-light: #F2F8FF;
  --color-cyan: #30B6F0;
  --color-telegram: #27A6E6;
  --color-youtube: #EC2F36;
  --color-white: #ffffff;

  --container-width: 1252px;
  --container-padding: 24px;

  --font-base: 'Euclid Circular A', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}
.na-wrap {
  --color-black: #000000;
  --color-text: #1a1a1a;
  --color-gray-900: #2C3036;
  --color-gray-600: #666666;
  --color-gray-400: #999999;
  --color-gray-200: #E2E8EF;
  --color-gray-100: #F7F8FA;
  --color-gray-bg: #F0F3F7;
  --color-blue: #0077FF;
  --color-blue-light: #F2F8FF;
  --color-cyan: #30B6F0;
  --color-telegram: #27A6E6;
  --color-youtube: #EC2F36;
  --color-white: #ffffff;

  --container-width: 1252px;
  --container-padding: 24px;

  --font-base: 'Euclid Circular A', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.na-wrap * { box-sizing: border-box; }
.na-wrap html,
.na-wrap body { margin: 0; padding: 0; }

.na-wrap body {
  font-family: var(--font-base);
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.5;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

.na-wrap a {
  color: inherit;
  text-decoration: none;
}

.na-wrap img { max-width: 100%; display: block; }

.na-wrap ul,
.na-wrap ol { margin: 0; padding: 0; }

.na-wrap .container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* =========================================================
   HEADER
   ========================================================= */

.na-wrap .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.na-wrap .header__top {
  background: transparent;
  padding: 16px var(--container-padding) 0;
}

.na-wrap main {
  padding-top: 96px;
}
.na-wrap .header__top-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
  max-width: calc(var(--container-width) - 2 * var(--container-padding));
  margin: 0 auto;
  background: rgba(240, 243, 247, 0.1);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border-radius: 5px;
  padding: 0 24px;
}

.na-wrap .logo {
  flex-shrink: 0;
  display: flex;
}

.na-wrap .logo__img { height: 24px; width: auto; flex-shrink: 0; }
.na-wrap .logo__img--mobile { display: none; }

.na-wrap .main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex: 1;
  margin-left: 76px;
}

.na-wrap .main-nav__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-gray-900);
  text-transform: capitalize;
  white-space: nowrap;
  transition: opacity .15s ease;
}
.na-wrap .main-nav__link:hover { opacity: .65; }

.na-wrap .header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.na-wrap .header__phone-icon { display: none; }
.na-wrap .header__right-social { display: none; }

.na-wrap .header__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.na-wrap .header__phone {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-gray-900);
  white-space: nowrap;
}

.na-wrap .icon-btn {
  background: transparent;
  border: none;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* =========================================================
   BREADCRUMBS
   ========================================================= */

.na-wrap .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0 16px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
  color: var(--color-gray-600);
}

.na-wrap .breadcrumbs__item { color: var(--color-gray-600); }
.na-wrap .breadcrumbs__item:hover { color: var(--color-black); }
.na-wrap .breadcrumbs__item--current {
  color: var(--color-gray-400);
  pointer-events: none;
}

.na-wrap .breadcrumbs__dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--color-gray-400);
  flex-shrink: 0;
}

/* =========================================================
   PAGE LAYOUT (article + sidebar)
   ========================================================= */

.na-wrap .page-layout {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding-top: 4px;
}

/* =========================================================
   ARTICLE
   ========================================================= */

.na-wrap .article {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 881px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.na-wrap .article__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.na-wrap .article__title {
  margin: 0;
  font-weight: 500;
  font-size: 26px;
  line-height: 34px;
  color: var(--color-black);
}

.na-wrap .article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-gray-600);
}

.na-wrap .article__source a {
  text-decoration: none;
  word-break: break-all;
}

.na-wrap .article__source-link {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 400;
}
.na-wrap .article__source-link:hover { text-decoration: underline; }

.na-wrap .article__source-link--short { display: none; }

.na-wrap .article p {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-black);
}

.na-wrap .article__lead {
  margin: 0;
}

.na-wrap .article__figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
}

.na-wrap .article__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.na-wrap .article__h2 {
  margin: 4px 0 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-black);
}

.na-wrap .article__h3 {
  margin: 4px 0 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-black);
}

.na-wrap .article__inline-link {
  color: var(--color-blue);
}

.na-wrap .article__list {
  margin: 0;
  padding-left: 24px;
  list-style: disc;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}

.na-wrap .article__list--numbered {
  list-style: decimal;
}

.na-wrap .article__list li {
  margin-bottom: 6px;
}
.na-wrap .article__list li:last-child {
  margin-bottom: 0;
}

/* Quote */
.na-wrap .article__quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--color-blue);
  background: var(--color-blue-light);
  padding: 16px 24px;
}

.na-wrap .article__quote p {
  margin: 0 0 12px;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}

.na-wrap .article__quote footer {
  display: flex;
  flex-direction: column;
}

.na-wrap .article__quote-author {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-black);
}

.na-wrap .article__quote-role {
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-gray-600);
}

/* Table */
.na-wrap .article__table-wrap {
  overflow-x: auto;
  width: 100%;
}

.na-wrap .article__table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
}

.na-wrap .article__table th,
.na-wrap .article__table td {
  border: 1px solid var(--color-gray-200);
  padding: 8px 12px;
  text-align: left;
  font-size: 16px;
  line-height: 26px;
  white-space: nowrap;
}

.na-wrap .article__table th {
  background: var(--color-gray-100);
  font-weight: 400;
}

.na-wrap .article__table td {
  background: var(--color-white);
  font-weight: 300;
}

.na-wrap .article__credits {
  font-size: 14px;
  line-height: 26px;
  color: var(--color-gray-600);
}

.na-wrap .article__credits a {
  text-decoration: underline;
  color: var(--color-gray-600);
}

.na-wrap .article__sign {
  height: 24px;
  width: auto;
}

.na-wrap .article__share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.na-wrap .share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.na-wrap .share-icon--more {
  background: var(--color-gray-100);
}

.na-wrap .share-icon svg,
.na-wrap .share-icon img { display: block; width: 100%; height: 100%; }

/* =========================================================
   SIDEBAR
   ========================================================= */

.na-wrap .sidebar {
  width: 298px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.na-wrap .sidebar__title {
  margin: 0 0 10px;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}

.na-wrap .channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.na-wrap .channel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 11px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid transparent;
  background: transparent;
  transition: background-color .15s ease;
}

.na-wrap .channel-btn--telegram {
  color: var(--color-telegram);
  border-color: rgba(39, 166, 230, 0.5);
}
.na-wrap .channel-btn--dzen {
  color: var(--color-gray-900);
  border-color: rgba(44, 48, 54, 0.5);
}
.na-wrap .channel-btn--vk {
  color: var(--color-blue);
  border-color: rgba(0, 119, 255, 0.5);
}
.na-wrap .channel-btn--youtube {
  color: var(--color-youtube);
  border-color: rgba(236, 47, 54, 0.5);
}

.na-wrap .channel-btn:hover { background-color: rgba(0,0,0,0.04); }

.na-wrap .sidebar__ad {
  background: none;
  border-radius: 4px;
  width: 100%;
}

/* =========================================================
   RELATED ("РўР°РєР¶Рµ РІ СЂСѓР±СЂРёРєРµ")
   ========================================================= */

.na-wrap .related {
  padding: 60px 0 30px;
}

.na-wrap .related__title {
  margin: 0 0 30px;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
}

.na-wrap .related__title-link {
  color: var(--color-blue);
}

.na-wrap .related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.na-wrap .related-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.na-wrap .related-card__image {
  width: 100%;
  aspect-ratio: 404 / 278;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-gray-100);
}

.na-wrap .related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.na-wrap .related-card__tag {
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-blue);
}

.na-wrap .related-card__title {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.na-wrap .related-card__date {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-gray-600);
}

.na-wrap .related__more {
  display: block;
  width: 180px;
  height: 48px;
  margin: 30px auto 0;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(0, 119, 255, 0.5);
  border-radius: 5.5px;
  color: var(--color-blue);
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 15px;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.na-wrap .related__more:hover {
  background: rgba(0, 119, 255, 0.05);
}

.na-wrap .pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 363px;
  margin: 30px auto 0;
}

.na-wrap .pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--color-blue);
  font-family: var(--font-base);
  font-size: 14px;
  cursor: pointer;
}

.na-wrap .pagination__item--active {
  background: transparent;
  color: var(--color-black);
  font-weight: 500;
}

.na-wrap .pagination__item--next {
  width: 44px;
  height: 42px;
  background: transparent;
  border-radius: 6px;
}

.na-wrap .pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 42px;
  color: var(--color-gray-600);
}

.na-wrap .pagination__item--next svg path { stroke: var(--color-blue); }

/* =========================================================
   CTA
   ========================================================= */

.na-wrap .cta {
  background: var(--color-gray-bg);
  padding: 40px var(--container-padding);
}

.na-wrap .cta__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.na-wrap .cta__title {
  margin: 0;
  font-weight: 500;
  font-size: 26px;
  line-height: 34px;
  color: var(--color-black);
}

.na-wrap .cta__form { align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.na-wrap .cta__form-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.na-wrap .cta__input {
  width: 280px;
  height: 44px;
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  background: var(--color-white);
  padding: 0 16px;
  font-family: var(--font-base);
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-black);
  box-sizing: border-box;
}
.na-wrap .cta__input::placeholder { color: var(--color-gray-600); }

.na-wrap .cta__submit {
  width: 168px;
  height: 44px;
  background: var(--color-cyan);
  color: var(--color-white);
  border: none;
  border-radius: 6px;
  padding: 0 24px;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
  transition: background-color .15s ease;
  box-sizing: border-box;
}
.na-wrap .cta__submit:hover { background-color: #28a3da; }

.na-wrap .cta__agreement {
  margin: 0;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-gray-600);
}

/* =========================================================
   FOOTER
   ========================================================= */

.na-wrap .footer {
  background: var(--color-white);
}

.na-wrap .footer__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 40px 0;
}

.na-wrap .footer__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.na-wrap .footer__heading {
  margin: 0 0 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-black);
}

.na-wrap .footer__link {
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-gray-600);
}
.na-wrap .footer__link:hover { color: var(--color-black); }

.na-wrap .footer__bottom {
  background: rgba(240, 243, 247, 0.5);
}

.na-wrap .footer__bottom-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 13px 0;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-gray-600);
}

.na-wrap .footer__bottom-inner a:hover { color: var(--color-black); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ---------- РџРѕСЃС‚РµРїРµРЅРЅРѕРµ РёСЃС‡РµР·РЅРѕРІРµРЅРёРµ РїСѓРЅРєС‚РѕРІ РЅР°РІРёРіР°С†РёРё РјРµР¶РґСѓ 1064 Рё 768px ---------- */
/* Р›РѕРіРѕС‚РёРї РЅРµ РјРµРЅСЏРµС‚ СЂР°Р·РјРµСЂ; РїСѓРЅРєС‚С‹ РїСЂРѕРїР°РґР°СЋС‚ СЃРїСЂР°РІР° РЅР°Р»РµРІРѕ:
   РџСЂРѕРґР°С‚СЊ в†’ Р—Р°РіРѕСЂРѕРґРєР° в†’ Р’С‚РѕСЂРёС‡РєР° в†’ РќРѕРІРѕСЃС‚СЂРѕР№РєРё в†’ РџРѕРґР±РѕСЂ */

/* ---------- 1024px Рё РЅРёР¶Рµ: РѕРґРЅРѕРєРѕР»РѕРЅРѕС‡РЅР°СЏ СЂР°СЃРєР»Р°РґРєР° ---------- */
/* ---------- 1064px: РЅР°РІРёРіР°С†РёСЏ СѓС…РѕРґРёС‚ РІ Р±СѓСЂРіРµСЂ, sidebar (РќР°С€Рё РєР°РЅР°Р»С‹) СѓС…РѕРґРёС‚ РІРЅРёР· РїРµСЂРµРґ "РўР°РєР¶Рµ РІ СЂСѓР±СЂРёРєРµ" ---------- */
@media (max-width: 1064px) {
  :root {
    --container-padding: 30px;
  }
.na-wrap {
    --container-padding: 30px;
  }

  /* РЎС‚Р°С‚СЊСЏ СЃС‚Р°РЅРѕРІРёС‚СЃСЏ РїРѕР»РЅРѕС€РёСЂРёРЅРЅРѕР№, sidebar СѓС…РѕРґРёС‚ РїРѕРґ РЅРµС‘ вЂ”
     РёРјРµРЅРЅРѕ sidebar (Р±Р»РѕРє "РќР°С€Рё РєР°РЅР°Р»С‹") РїРµСЂРµРµР·Р¶Р°РµС‚ РІРЅРёР·,
     РїРµСЂРµРґ СЃРµРєС†РёРµР№ "РўР°РєР¶Рµ РІ СЂСѓР±СЂРёРєРµ" */
  .na-wrap .page-layout {
    flex-direction: column;
    gap: 40px;
  }

  .na-wrap .article { max-width: 100%; }

  .na-wrap .sidebar {
    width: 100%;
    flex-direction: column;
  }

  .na-wrap .sidebar__ad { display: none; }

  .na-wrap .cta__inner { align-items: center; text-align: center; }
}

@media (max-width: 1010px) {
  .na-wrap .main-nav__link--sell { display: none; }
}

@media (max-width: 950px) {
  .na-wrap .main-nav__link--country { display: none; }
}

@media (max-width: 890px) {
  .na-wrap .main-nav__link--secondary { display: none; }
}

@media (max-width: 830px) {
  .na-wrap .main-nav__link--newbuild { display: none; }
}

/* ---------- 768px: РїРѕСЃР»РµРґРЅРёР№ РїСѓРЅРєС‚ РјРµРЅСЋ (РџРѕРґР±РѕСЂ) СЃРєСЂС‹РІР°РµС‚СЃСЏ, РЅР°РІРёРіР°С†РёСЏ РїРѕР»РЅРѕСЃС‚СЊСЋ СѓС…РѕРґРёС‚ РІ Р±СѓСЂРіРµСЂ ---------- */
@media (max-width: 768px) {
  :root {
    --container-padding: 22px;
  }
.na-wrap {
    --container-padding: 22px;
  }

  .na-wrap .main-nav { margin-left: 0; }
  .na-wrap .main-nav__link--podbor { display: none; }

  .na-wrap .article__title { font-size: 24px; line-height: 32px; }
  .na-wrap .article__h2 { font-size: 22px; line-height: 30px; }
  .na-wrap .article__h3 { font-size: 18px; line-height: 26px; }

  .na-wrap .article__quote { border-left-width: 4px; }

  .na-wrap .related__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .na-wrap .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- 680px: С‚РµР»РµС„РѕРЅ-С‚РµРєСЃС‚ СЃРєСЂС‹РІР°РµС‚СЃСЏ, РїРѕСЏРІР»СЏСЋС‚СЃСЏ РёРєРѕРЅРєР°-С‚СЂСѓР±РєР° Рё VK/MAX РїРµСЂРµРґ СЃРµСЂРґРµС‡РєРѕРј ---------- */
@media (max-width: 680px) {
  .na-wrap .header__phone { display: none; }

  .na-wrap .cta__form-row { flex-wrap: wrap; }
  .na-wrap .cta__input { width: 100%; max-width: 280px; }
  .na-wrap .cta__submit { width: 100%; max-width: 280px; }
}

@media (max-width: 600px) {
  .na-wrap .header__phone-icon { display: flex; }
  .na-wrap .header__right-social { display: flex; }
}

/* ---------- 320px: РјРѕР±РёР»СЊРЅС‹Р№ ---------- */
@media (max-width: 480px) {
  :root {
    --container-padding: 15px;
  }
.na-wrap {
    --container-padding: 15px;
  }

  .na-wrap .logo__img--desktop { display: none; }
  .na-wrap .logo__img--mobile { display: block; }

  .na-wrap .article__source-link--full,
.na-wrap .article__source { display: none; }
  .na-wrap .article__source-link--short { display: inline; }

  .na-wrap .header__top {
    padding: 0;
  }

  .na-wrap .header__top-inner {
    gap: 12px;
    padding: 0 var(--container-padding);
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: var(--color-gray-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* РҐР»РµР±РЅС‹Рµ РєСЂРѕС€РєРё РїРµСЂРµС…РѕРґСЏС‚ РЅР° РЅРµСЃРєРѕР»СЊРєРѕ СЃС‚СЂРѕРє */
  .na-wrap .breadcrumbs {
    gap: 8px 12px;
    padding: 16px 0 12px;
  }

  .na-wrap .breadcrumbs__item--current {
    flex-basis: 100%;
    margin-top: 2px;
  }

  .na-wrap .breadcrumbs__item--current ~ .breadcrumbs__dot,
.na-wrap .breadcrumbs__dot:has(+ .breadcrumbs__item--current) {
    display: none;
  }

  .na-wrap .article { gap: 16px; }

  .na-wrap .article__title { font-size: 20px; line-height: 26px; }
  .na-wrap .article__h2 { font-size: 18px; line-height: 26px; }
  .na-wrap .article__h3 { font-size: 16px; line-height: 24px; }

  .na-wrap .article__quote { border-left-width: 2px; padding: 14px 16px; }

  .na-wrap .article__table th,
.na-wrap .article__table td { font-size: 14px; padding: 6px 10px; }

  /* РљРЅРѕРїРєРё РєР°РЅР°Р»РѕРІ: 2 РєРѕР»РѕРЅРєРё РїРѕ 4 СЂСЏРґР° вЂ” С‚РѕС‡РЅРѕ РєР°Рє РІ РјР°РєРµС‚Рµ 320 */
  .na-wrap .channels {
    grid-template-columns: repeat(2, 1fr);
  }

  .na-wrap .sidebar__title { font-size: 14px; }

  .na-wrap .related { padding: 40px 0; }
  .na-wrap .related__title { font-size: 20px; line-height: 28px; margin-bottom: 20px; }
  .na-wrap .related__grid { grid-template-columns: 1fr; gap: 24px; }

  /* РќР° РјРѕР±РёР»СЊРЅРѕРј (320) РїРѕРєР°Р·Р°РЅС‹ С‚РѕР»СЊРєРѕ 2 РєР°СЂС‚РѕС‡РєРё, РґР°Р»СЊС€Рµ вЂ”
     РєРЅРѕРїРєР° "РџРѕРєР°Р·Р°С‚СЊ РµС‰С‘" Рё РїРѕСЃС‚СЂР°РЅРёС‡РЅР°СЏ РЅР°РІРёРіР°С†РёСЏ */
  .na-wrap .related-card--extra { display: none; }
  .na-wrap .pagination { flex-wrap: wrap; }

  /* CTA: РїРѕР»Рµ Рё РєРЅРѕРїРєР° РґСЂСѓРі РїРѕРґ РґСЂСѓРіРѕРј, РєР°Рє РІ РјР°РєРµС‚Рµ 320 */
  .na-wrap .cta { padding: 32px var(--container-padding); }
  .na-wrap .cta__title { font-size: 22px; line-height: 28px; }
  .na-wrap .cta__form-row { flex-direction: column; align-items: stretch; }
  .na-wrap .cta__input { width: 100%; }
  .na-wrap .cta__submit { width: 100%; text-align: center; }

  .na-wrap .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }

  .na-wrap .footer__bottom-inner { padding: 13px var(--container-padding); }
}

/* === GENERIC-TAG selectors for raw HTML ($f_Text) inside .article__body === */
.na-wrap .article__body p {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-black);
}
.na-wrap .article__body h2 {
  margin: 4px 0 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-black);
}
.na-wrap .article__body h3 {
  margin: 4px 0 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-black);
}
.na-wrap .article__body ul {
  margin: 0;
  padding-left: 24px;
  list-style: disc;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}
.na-wrap .article__body ol {
  margin: 0;
  padding-left: 24px;
  list-style: decimal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}
.na-wrap .article__body li {
  margin-bottom: 6px;
}
.na-wrap .article__body li:last-child {
  margin-bottom: 0;
}
.na-wrap .article__body a {
  color: var(--color-blue);
}
.na-wrap .article__body strong,
.na-wrap .article__body b {
  font-weight: 600;
}
.na-wrap .article__body blockquote {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--color-blue);
  background: var(--color-blue-light);
  padding: 16px 24px;
}
.na-wrap .article__body blockquote p {
  margin: 0 0 12px;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
}
.na-wrap .article__body blockquote p:last-child {
  margin-bottom: 0;
}
.na-wrap .article__body table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
}
.na-wrap .article__body th,
.na-wrap .article__body td {
  border: 1px solid var(--color-gray-200);
  padding: 8px 12px;
  text-align: left;
  font-size: 16px;
  line-height: 26px;
  white-space: nowrap;
}
.na-wrap .article__body th {
  background: var(--color-gray-100);
  font-weight: 400;
}
.na-wrap .article__body td {
  background: var(--color-white);
  font-weight: 300;
}
.na-wrap .article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .na-wrap .article__body h2 { font-size: 22px; line-height: 30px; }
  .na-wrap .article__body h3 { font-size: 18px; line-height: 26px; }
}

@media (max-width: 480px) {
  .na-wrap .article__body h2 { font-size: 18px; line-height: 26px; }
  .na-wrap .article__body h3 { font-size: 16px; line-height: 24px; }
  .na-wrap .article__body blockquote { border-left-width: 2px; padding: 14px 16px; }
  .na-wrap .article__body th,
.na-wrap .article__body td { font-size: 14px; padding: 6px 10px; }
}


/* =========================================================
   NEWS LIST (category pages)
   ========================================================= */
.na-list-wrap .content { float: none !important; width: 100% !important; }
.na-list-wrap .news-menu-box { margin-bottom: 24px; overflow: hidden; }
.na-list-wrap .news-menu-box ul { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.na-list-wrap .news-menu-box li { float: none; margin: 0; }
.na-list-wrap .news-menu-box .btn { display: inline-block; padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: 400; border: 1px solid #E2E8EF; background: transparent; color: #2C3036; text-decoration: none; }
.na-list-wrap .news-menu-box .btn:hover, .na-list-wrap .news-menu-box .btn.active { background: #0077FF; color: #fff; border-color: #0077FF; }
.na-list-wrap .news-inner-box { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 20px !important; float: none !important; width: 100% !important; }
.na-list-wrap .news-inner-box::after { content: none !important; }
.na-card { display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit; background: none; border: none; padding: 0; margin: 0; overflow: hidden; }
.na-card__image { width: 100%; aspect-ratio: 404/278; border-radius: 8px; overflow: hidden; background: #F7F8FA; display: block; }
.na-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.na-card__body { display: flex; flex-direction: column; gap: 8px; }
.na-card__title { margin: 0; font-weight: 500; font-size: 16px; line-height: 26px; color: #000; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.na-card:hover .na-card__title { color: #0077FF; }
.na-card__text { margin: 0; font-weight: 300; font-size: 14px; line-height: 22px; color: #666; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.na-card__date { font-weight: 300; font-size: 14px; line-height: 24px; color: #666; }
.na-card__date a { color: #0077FF; text-decoration: none; }
.na-list-wrap .pagenav-box { grid-column: 1 / -1; clear: both; }
@media(max-width:768px){ .na-list-wrap .news-inner-box { grid-template-columns: repeat(2,1fr) !important; } }
@media(max-width:480px){ .na-list-wrap .news-inner-box { grid-template-columns: 1fr !important; gap: 24px !important; } }

/* =========================================================
   LIST PAGE PAGINATION + MORE BUTTON
   ========================================================= */
.na-list-wrap .pagenav-box { display: none !important; }
.na-list-wrap .search-load-more { display: none !important; }

.na-list-wrap .na-pagination-wrap {
  grid-column: 1 / -1;
  clear: both;
  padding: 20px 0 40px;
}

.na-list-wrap .na-more-btn {
  display: block;
  width: 180px;
  height: 48px;
  margin: 0 auto 24px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(0, 119, 255, 0.5);
  border-radius: 5.5px;
  color: var(--color-blue);
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 15px;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.na-list-wrap .na-more-btn:hover {
  background: rgba(0, 119, 255, 0.05);
}

.na-list-wrap .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.na-list-wrap .pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 42px;
  padding: 0 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--color-blue);
  font-family: var(--font-base);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s;
}
.na-list-wrap .pagination__item:hover {
  background: rgba(0, 119, 255, 0.07);
}

.na-list-wrap .pagination__item--active {
  background: transparent;
  color: var(--color-black);
  font-weight: 600;
  pointer-events: none;
}
.na-list-wrap .pagination__item--active:hover {
  background: transparent;
}

.na-list-wrap .pagination__item--prev,
.na-list-wrap .pagination__item--next {
  min-width: 44px;
  height: 42px;
  background: transparent;
  border-radius: 6px;
}
.na-list-wrap .pagination__item--prev svg path,
.na-list-wrap .pagination__item--next svg path { stroke: var(--color-blue); }

.na-list-wrap .pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 42px;
  color: #999;
}
@media(max-width:480px){
  .na-list-wrap .pagination { gap: 2px; }
  .na-list-wrap .pagination__item { min-width: 36px; height: 36px; font-size: 13px; }
}
/* Related pagination (article page) */
.na-wrap .na-rel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  max-width: 500px;
  margin: 20px auto 0;
  flex-wrap: wrap;
}
.na-wrap .na-rel-pagination .pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 42px;
  padding: 0 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--color-blue);
  font-family: var(--font-base);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s;
}
.na-wrap .na-rel-pagination .pagination__item:hover {
  background: rgba(0, 119, 255, 0.07);
}
.na-wrap .na-rel-pagination .pagination__item--active {
  color: var(--color-black);
  font-weight: 600;
  pointer-events: none;
}
.na-wrap .na-rel-pagination .pagination__item--active:hover {
  background: transparent;
}
.na-wrap .na-rel-pagination .pagination__item--prev,
.na-wrap .na-rel-pagination .pagination__item--next {
  min-width: 44px;
  height: 42px;
}
.na-wrap .na-rel-pagination .pagination__item--prev svg path,
.na-wrap .na-rel-pagination .pagination__item--next svg path { stroke: var(--color-blue); }
.na-wrap .na-rel-pagination .pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 42px;
  color: #999;
}
@media(max-width:480px){
  .na-wrap .na-rel-pagination { gap: 2px; }
  .na-wrap .na-rel-pagination .pagination__item { min-width: 36px; height: 36px; font-size: 13px; }
}