 :root {
 --bg: #ffffff;
 --text: #111111;
 --muted: #666666;
 --line: #e5e5e5;
 --light: #f5f5f5;
 --red: #b40000;
 --dark: #111111;
 --max: 1200px;
 --radius: 14px;
 --font: Arial, Helvetica, sans-serif;
 }

 * {
 box-sizing: border-box;
 }

 html {
 scroll-behavior: smooth;
 }

 body {
 margin: 0;
 font-family: var(--font);
 color: var(--text);
 background: var(--bg);
 line-height: 1.42;
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
 }

 body.menu-open,
 body.search-open {
 overflow: hidden;
 }

 img {
 display: block;
 max-width: 100%;
 height: auto;
 background: var(--light);
 }

 a {
 color: inherit;
 text-decoration: none;
 }

 a:hover {
 color: var(--red);
 }

 button,
 input {
 font: inherit;
 }

 button {
 -webkit-tap-highlight-color: transparent;
 }

 .container {
 width: min(100% - 28px, var(--max));
 margin: 0 auto;
 }

 /* TOPLINE */

 .topline {
 border-bottom: 1px solid var(--line);
 background: #fbfbfb;
 color: var(--muted);
 font-size: 13px;
 }

 .topline-inner {
 min-height: 32px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 18px;
 }

 .topline-left {
 display: flex;
 align-items: center;
 gap: 8px;
 white-space: nowrap;
 }

 .topline-links {
 display: flex;
 gap: 15px;
 white-space: nowrap;
 }

 .topline-links a {
 color: var(--muted);
 font-size: 13px;
 font-weight: 650;
 }

 .topline-links a:hover {
 color: #111;
 }

 /* HEADER */

 .header {
 position: sticky;
 top: 0;
 z-index: 100;
 background: rgba(255,255,255,.97);
 backdrop-filter: blur(14px);
 border-bottom: 1px solid var(--line);
 }

 .header-main {
 min-height: 66px;
 display: grid;
 grid-template-columns: auto auto;
 justify-content: space-between;
 align-items: center;
 gap: 24px;
 }

 .logo {
 display: flex;
 align-items: center;
 gap: 11px;
 width: fit-content;
 min-width: 0;
 }

 .logo-mark {
 width: 36px;
 height: 36px;
 border-radius: 11px;
 background: #111;
 color: #fff;
 display: grid;
 place-items: center;
 font-size: 17px;
 line-height: 1;
 font-weight: 900;
 letter-spacing: -0.055em;
 flex: 0 0 auto;
 }

 .logo-text {
 display: block;
 font-size: 29px;
 line-height: 1;
 font-weight: 900;
 letter-spacing: -0.055em;
 white-space: nowrap;
 }

 .header-actions {
 display: flex;
 align-items: center;
 gap: 8px;
 min-width: 0;
 }

 .desktop-search {
 position: relative;
 width: 240px;
 flex: 0 0 240px;
 }

 .desktop-search input {
 width: 100%;
 height: 38px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: #f7f7f7;
 padding: 0 40px 0 14px;
 outline: none;
 font-size: 14px;
 }

 .desktop-search input:focus {
 background: #fff;
 border-color: #111;
 }

 .desktop-search button {
 position: absolute;
 right: 5px;
 top: 50%;
 transform: translateY(-50%);
 width: 29px;
 height: 29px;
 border: 0;
 border-radius: 50%;
 background: #111;
 color: #fff;
 cursor: pointer;
 font-size: 15px;
 font-weight: 900;
 }

 .telegram-head {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 38px;
 padding: 0 13px;
 border-radius: 999px;
 border: 1px solid var(--line);
 background: #fff;
 color: #111;
 font-size: 13px;
 font-weight: 850;
 white-space: nowrap;
 }

 .telegram-head:hover {
 background: #111;
 color: #fff;
 }

 .login-btn {
 display: inline-flex;
 align-items: center;
 gap: 7px;
 min-height: 38px;
 padding: 0 12px 0 9px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: #111;
 color: #fff;
 font-size: 13px;
 font-weight: 850;
 white-space: nowrap;
 }

 .login-btn:hover {
 background: var(--red);
 color: #fff;
 border-color: var(--red);
 }

 .login-icon {
 width: 24px;
 height: 24px;
 border-radius: 999px;
 background: rgba(255,255,255,.16);
 display: grid;
 place-items: center;
 font-size: 13px;
 line-height: 1;
 }

 .login-text {
 line-height: 1;
 }

 .menu-btn {
 display: none;
 width: 38px;
 height: 38px;
 border: 1px solid var(--line);
 background: #fff;
 border-radius: 999px;
 cursor: pointer;
 padding: 0;
 align-items: center;
 justify-content: center;
 flex-direction: column;
 gap: 4px;
 }

 .menu-btn span {
 width: 17px;
 height: 2px;
 background: #111;
 border-radius: 999px;
 display: block;
 }

 .mobile-search-btn {
 display: none;
 width: 38px;
 height: 38px;
 border: 1px solid var(--line);
 background: #fff;
 border-radius: 999px;
 cursor: pointer;
 font-size: 18px;
 font-weight: 900;
 line-height: 1;
 align-items: center;
 justify-content: center;
 }

 .header-subnav {
 border-top: 1px solid var(--line);
 background: #fff;
 }

 .header-subnav-inner {
 min-height: 40px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 18px;
 }

 .desktop-nav {
 display: flex;
 align-items: center;
 justify-content: flex-start;
 gap: 4px;
 min-width: 0;
 flex: 1 1 auto;
 overflow-x: auto;
 scrollbar-width: none;
 }

 .desktop-nav::-webkit-scrollbar {
 display: none;
 }

 .desktop-nav a {
 display: inline-flex;
 align-items: center;
 min-height: 30px;
 padding: 0 11px;
 border-radius: 999px;
 color: #111;
 font-size: 14px;
 font-weight: 760;
 white-space: nowrap;
 flex: 0 0 auto;
 }

 .desktop-nav a.active {
 background: #111;
 color: #fff;
 }

 .desktop-nav a:hover {
 background: #f1f1f1;
 color: #111;
 }

 .desktop-nav a.active:hover {
 background: #111;
 color: #fff;
 }

 .subnav-info {
 display: flex;
 align-items: center;
 gap: 7px;
 color: var(--muted);
 font-size: 12px;
 font-weight: 720;
 white-space: nowrap;
 margin-left: auto;
 flex: 0 0 auto;
 }

 /* MOBILE PANEL */

 .mobile-overlay {
 position: fixed;
 inset: 0;
 z-index: 190;
 background: rgba(0, 0, 0, 0.38);
 opacity: 0;
 visibility: hidden;
 transition: opacity .2s ease, visibility .2s ease;
 }

 .mobile-overlay.active {
 opacity: 1;
 visibility: visible;
 }

 .mobile-panel {
 position: fixed;
 top: 0;
 right: 0;
 z-index: 200;
 width: min(88vw, 380px);
 height: 100dvh;
 background: #fff;
 border-left: 1px solid var(--line);
 transform: translateX(100%);
 transition: transform .24s ease;
 padding: 16px;
 display: flex;
 flex-direction: column;
 gap: 18px;
 overflow-y: auto;
 }

 .mobile-panel.active {
 transform: translateX(0);
 }

 .mobile-panel-head {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 16px;
 }

 .mobile-logo {
 display: flex;
 align-items: center;
 gap: 9px;
 font-size: 22px;
 font-weight: 900;
 letter-spacing: -0.04em;
 }

 .mobile-panel-actions {
 display: flex;
 align-items: center;
 gap: 8px;
 }

 .mobile-login {
 width: 38px;
 height: 38px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: #111;
 color: #fff;
 display: grid;
 place-items: center;
 font-size: 16px;
 font-weight: 900;
 }

 .mobile-login:hover {
 background: var(--red);
 color: #fff;
 }

 .mobile-close {
 width: 38px;
 height: 38px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: #fff;
 cursor: pointer;
 font-size: 28px;
 line-height: 1;
 }

 .mobile-login-wide {
 display: flex;
 align-items: center;
 gap: 10px;
 min-height: 46px;
 padding: 0 13px;
 border: 1px solid var(--line);
 border-radius: 14px;
 background: #111;
 color: #fff;
 }

 .mobile-login-wide:hover {
 color: #fff;
 background: var(--red);
 border-color: var(--red);
 }

 .mobile-login-wide span {
 width: 28px;
 height: 28px;
 border-radius: 999px;
 background: rgba(255,255,255,.16);
 display: grid;
 place-items: center;
 font-size: 14px;
 font-weight: 900;
 }

 .mobile-login-wide b {
 font-size: 15px;
 line-height: 1;
 }

 .mobile-search {
 display: grid;
 grid-template-columns: 1fr auto;
 gap: 8px;
 }

 .mobile-search input {
 width: 100%;
 border: 1px solid var(--line);
 border-radius: 999px;
 padding: 11px 14px;
 outline: none;
 background: #f6f6f6;
 font-size: 15px;
 }

 .mobile-search input:focus {
 background: #fff;
 border-color: #111;
 }

 .mobile-search button {
 border: 0;
 border-radius: 999px;
 background: #111;
 color: #fff;
 padding: 11px 15px;
 font-weight: 900;
 cursor: pointer;
 }

 .mobile-nav {
 display: grid;
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
 }

 .mobile-nav a {
 display: flex;
 align-items: center;
 min-height: 48px;
 border-bottom: 1px solid var(--line);
 font-size: 20px;
 font-weight: 850;
 letter-spacing: -0.035em;
 }

 .mobile-nav a:last-child {
 border-bottom: 0;
 }

 .mobile-extra {
 display: grid;
 gap: 9px;
 margin-top: auto;
 padding-top: 12px;
 }

 .mobile-extra a {
 color: var(--muted);
 font-size: 14px;
 }

 /* MOBILE SEARCH MODAL */

 .mobile-search-modal {
 position: fixed;
 inset: 0;
 z-index: 220;
 background: rgba(255,255,255,0.96);
 backdrop-filter: blur(12px);
 opacity: 0;
 visibility: hidden;
 transition: opacity .2s ease, visibility .2s ease;
 padding: 18px;
 }

 .mobile-search-modal.active {
 opacity: 1;
 visibility: visible;
 }

 .mobile-search-box {
 width: min(100%, 680px);
 margin: 72px auto 0;
 position: relative;
 }

 .mobile-search-close {
 position: absolute;
 top: -54px;
 right: 0;
 width: 42px;
 height: 42px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: #fff;
 cursor: pointer;
 font-size: 30px;
 line-height: 1;
 }

 .mobile-search-box form {
 display: grid;
 grid-template-columns: 1fr auto;
 gap: 10px;
 }

 .mobile-search-box input {
 width: 100%;
 border: 2px solid #111;
 border-radius: 999px;
 padding: 15px 18px;
 font-size: 20px;
 outline: none;
 }

 .mobile-search-box button {
 border: 0;
 border-radius: 999px;
 background: #111;
 color: #fff;
 padding: 15px 22px;
 font-weight: 900;
 cursor: pointer;
 }

 /* BREAKING */

 .breaking {
 border-bottom: 1px solid var(--line);
 background: #fff;
 }

 .breaking-inner {
 min-height: 38px;
 display: flex;
 align-items: center;
 gap: 12px;
 overflow: hidden;
 font-size: 14px;
 }

 .breaking-label {
 flex: 0 0 auto;
 padding: 4px 9px;
 border-radius: 999px;
 background: #111;
 color: #fff;
 font-size: 11px;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: .06em;
 }

 .breaking-list {
 display: flex;
 gap: 24px;
 overflow: hidden;
 white-space: nowrap;
 color: #333;
 }

 /* ARTICLE PAGE */

 .article-page {
 padding: 22px 0 54px;
 }

 .article-breadcrumbs {
 display: flex;
 flex-wrap: wrap;
 gap: 7px;
 margin-bottom: 18px;
 color: var(--muted);
 font-size: 13px;
 }

 .article-breadcrumbs a {
 color: var(--muted);
 font-weight: 750;
 }

 .article-breadcrumbs a:hover {
 color: var(--red);
 }

 .article-layout {
 display: grid;
 grid-template-columns: minmax(0, 790px) 330px;
 gap: 48px;
 align-items: start;
 }

 .article-main {
 min-width: 0;
 }

 .article-header {
 padding-bottom: 20px;
 border-bottom: 1px solid var(--line);
 }

 .article-meta-top {
 display: flex;
 align-items: center;
 flex-wrap: wrap;
 gap: 9px;
 margin-bottom: 14px;
 color: var(--muted);
 font-size: 13px;
 }

 .article-category {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 27px;
 padding: 5px 11px;
 border-radius: 999px;
 background: #111;
 color: #fff;
 font-size: 11px;
 font-weight: 900;
 line-height: 1;
 text-transform: uppercase;
 letter-spacing: .06em;
 }

 .article-category:hover {
 background: var(--red);
 color: #fff;
 }

 .article-title {
 max-width: 880px;
 margin: 0;
 font-size: clamp(42px, 5vw, 72px);
 line-height: .98;
 letter-spacing: -0.07em;
 font-weight: 780;
 text-wrap: balance;
 }

 .article-lead {
 max-width: 720px;
 margin: 18px 0 0;
 color: #333;
 font-size: 22px;
 line-height: 1.28;
 letter-spacing: -0.035em;
 }

 .article-author-row {
 margin-top: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 18px;
 flex-wrap: wrap;
 }

 .author-card {
 display: grid;
 grid-template-columns: 42px 1fr;
 gap: 10px;
 align-items: center;
 }

 .author-avatar {
 width: 42px;
 height: 42px;
 border-radius: 14px;
 background: #111;
 color: #fff;
 display: grid;
 place-items: center;
 font-size: 18px;
 font-weight: 900;
 }

 .author-card strong {
 display: block;
 font-size: 14px;
 line-height: 1.1;
 }

 .author-card span {
 display: block;
 margin-top: 3px;
 color: var(--muted);
 font-size: 12px;
 }

 .article-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 }

 .article-actions a,
 .article-actions button {
 min-height: 36px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: #fff;
 color: #111;
 padding: 0 13px;
 cursor: pointer;
 font-size: 13px;
 font-weight: 850;
 }

 .article-actions a:hover,
 .article-actions button:hover {
 background: #111;
 color: #fff;
 }

 .article-cover {
 margin: 24px 0 0;
 }

 .article-cover img {
 width: 100%;
 aspect-ratio: 16 / 9;
 object-fit: cover;
 border-radius: 22px;
 }

 .article-cover figcaption {
 margin-top: 8px;
 color: var(--muted);
 font-size: 12px;
 }

 .article-short {
 margin: 26px 0;
 border: 1px solid var(--line);
 border-radius: 20px;
 padding: 18px;
 background: #fafafa;
 }

 .article-short h2 {
 margin: 0 0 12px;
 font-size: 22px;
 line-height: 1;
 letter-spacing: -0.04em;
 }

 .article-short ul {
 margin: 0;
 padding-left: 20px;
 display: grid;
 gap: 9px;
 font-size: 16px;
 line-height: 1.35;
 }

 .article-content {
 margin-top: 26px;
 color: #181818;
 font-size: 19px;
 line-height: 1.66;
 }

 .article-content p {
 margin: 0 0 20px;
 }

 .article-content h2 {
 margin: 38px 0 14px;
 font-size: 34px;
 line-height: 1.05;
 letter-spacing: -0.055em;
 }

 .article-content h3 {
 margin: 30px 0 12px;
 font-size: 26px;
 line-height: 1.1;
 letter-spacing: -0.045em;
 }

 .article-content img {
 width: 100%;
 height: auto;
 margin: 28px 0 8px;
 border-radius: 18px;
 }

 .article-content blockquote {
 margin: 30px 0;
 padding-left: 20px;
 border-left: 4px solid #111;
 font-size: 28px;
 line-height: 1.15;
 letter-spacing: -0.05em;
 font-weight: 780;
 }

 .article-content a {
 color: var(--red);
 text-decoration: underline;
 text-underline-offset: 3px;
 }

 .article-telegram {
 margin-top: 30px;
 border: 1px solid var(--line);
 border-radius: 22px;
 background: #fafafa;
 padding: 18px;
 display: grid;
 grid-template-columns: 52px 1fr auto;
 gap: 14px;
 align-items: center;
 }

 .article-telegram-icon {
 width: 52px;
 height: 52px;
 border-radius: 18px;
 background: #111;
 color: #fff;
 display: grid;
 place-items: center;
 font-size: 20px;
 font-weight: 900;
 }

 .article-telegram h2 {
 margin: 0;
 font-size: 22px;
 line-height: 1;
 letter-spacing: -0.045em;
 }

 .article-telegram p {
 margin: 6px 0 0;
 color: var(--muted);
 font-size: 14px;
 line-height: 1.35;
 }

 .article-telegram a {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 40px;
 padding: 0 15px;
 border-radius: 999px;
 background: #111;
 color: #fff;
 font-size: 13px;
 font-weight: 900;
 white-space: nowrap;
 }

 .article-telegram a:hover {
 background: var(--red);
 color: #fff;
 }

 .article-tags {
 margin-top: 26px;
 padding-top: 18px;
 border-top: 1px solid var(--line);
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 }

 .article-tags a {
 display: inline-flex;
 align-items: center;
 min-height: 32px;
 padding: 0 11px;
 border: 1px solid var(--line);
 border-radius: 999px;
 color: var(--muted);
 font-size: 13px;
 font-weight: 800;
 }

 .article-tags a:hover {
 background: #111;
 color: #fff;
 }

 /* SIDEBAR */

 .article-sidebar {
 position: sticky;
 top: 122px;
 display: grid;
 gap: 16px;
 }

 .article-side-card {
 border: 1px solid var(--line);
 border-radius: 20px;
 background: #fff;
 padding: 16px;
 }

 .article-side-card h2 {
 margin: 0 0 12px;
 font-size: 20px;
 line-height: 1;
 letter-spacing: -0.045em;
 }

 .article-side-dark {
 background: #111;
 color: #fff;
 border-color: #111;
 }

 .article-side-dark span {
 display: block;
 margin-bottom: 8px;
 color: #d1d5db;
 font-size: 10px;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: .1em;
 }

 .article-side-dark h2 {
 margin: 0;
 font-size: 25px;
 line-height: 1;
 }

 .article-side-dark p {
 margin: 10px 0 0;
 color: #d1d5db;
 font-size: 13px;
 line-height: 1.35;
 }

 .article-side-dark a {
 margin-top: 14px;
 display: inline-flex;
 width: 100%;
 justify-content: center;
 border-radius: 999px;
 background: #fff;
 color: #111;
 padding: 10px 12px;
 font-size: 13px;
 font-weight: 900;
 }

 .article-popular {
 counter-reset: popular;
 display: grid;
 }

 .article-popular article {
 counter-increment: popular;
 display: grid;
 grid-template-columns: 30px 1fr;
 gap: 10px;
 padding: 11px 0;
 border-bottom: 1px solid var(--line);
 }

 .article-popular article:first-child {
 padding-top: 0;
 }

 .article-popular article:last-child {
 padding-bottom: 0;
 border-bottom: 0;
 }

 .article-popular article::before {
 content: counter(popular);
 width: 28px;
 height: 28px;
 border-radius: 999px;
 background: #f1f1f1;
 display: grid;
 place-items: center;
 font-size: 13px;
 font-weight: 900;
 }

 .article-popular h3 {
 margin: 0;
 font-size: 15px;
 line-height: 1.18;
 letter-spacing: -0.025em;
 }

 .article-side-news {
 display: grid;
 }

 .article-side-news article {
 padding: 11px 0;
 border-bottom: 1px solid var(--line);
 }

 .article-side-news article:first-child {
 padding-top: 0;
 }

 .article-side-news article:last-child {
 padding-bottom: 0;
 border-bottom: 0;
 }

 .article-side-news span {
 display: block;
 margin-bottom: 4px;
 color: var(--red);
 font-size: 10px;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: .08em;
 }

 .article-side-news h3 {
 margin: 0;
 font-size: 15px;
 line-height: 1.18;
 letter-spacing: -0.025em;
 }

 /* RELATED */

 .related-articles {
 margin-top: 46px;
 }

 .section-head {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 14px;
 border-bottom: 2px solid #111;
 padding-bottom: 7px;
 margin-bottom: 13px;
 }

 .section-title {
 margin: 0;
 font-size: 22px;
 line-height: 1;
 letter-spacing: -0.03em;
 }

 .section-link {
 color: var(--muted);
 font-size: 13px;
 font-weight: 800;
 }

 .related-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 18px;
 }

 .related-card {
 display: grid;
 gap: 8px;
 }

 .related-card img {
 width: 100%;
 aspect-ratio: 16 / 9;
 object-fit: cover;
 border-radius: 14px;
 }

 .related-card span {
 color: var(--red);
 font-size: 11px;
 font-weight: 900;
 text-transform: uppercase;
 letter-spacing: .07em;
 }

 .related-card h3 {
 margin: 0;
 font-size: 18px;
 line-height: 1.15;
 letter-spacing: -0.035em;
 }

 /* FOOTER */

 .footer {
 border-top: 1px solid var(--line);
 background: #fafafa;
 padding: 30px 0;
 }

 .footer-grid {
 display: grid;
 grid-template-columns: 1.5fr repeat(4, 1fr);
 gap: 24px;
 }

 .footer p {
 color: var(--muted);
 font-size: 14px;
 margin: 10px 0 0;
 max-width: 320px;
 }

 .footer h3 {
 margin: 0 0 9px;
 font-size: 14px;
 }

 .footer a {
 display: block;
 color: var(--muted);
 font-size: 14px;
 margin: 6px 0;
 }

 .footer a:hover {
 color: var(--red);
 }

 .copyright {
 margin-top: 22px;
 padding-top: 14px;
 border-top: 1px solid var(--line);
 color: var(--muted);
 font-size: 13px;
 }

 /* RESPONSIVE */

 @media (max-width: 1120px) {
 .desktop-search {
 width: 200px;
 flex-basis: 200px;
 }

 .telegram-head {
 display: none;
 }
 }

 @media (max-width: 1040px) {
 .header-main {
 min-height: 62px;
 grid-template-columns: auto auto;
 justify-content: space-between;
 gap: 14px;
 }

 .desktop-nav,
 .desktop-search,
 .telegram-head,
 .login-btn,
 .header-subnav {
 display: none;
 }

 .menu-btn,
 .mobile-search-btn {
 display: inline-flex;
 }

 .logo-mark {
 width: 34px;
 height: 34px;
 border-radius: 10px;
 font-size: 16px;
 }

 .logo-text {
 font-size: 27px;
 }

 .article-layout {
 grid-template-columns: 1fr;
 gap: 28px;
 }

 .article-sidebar {
 position: static;
 grid-template-columns: repeat(2, 1fr);
 }

 .article-telegram {
 grid-template-columns: 52px 1fr;
 }

 .article-telegram a {
 grid-column: 1 / -1;
 }

 .related-grid {
 grid-template-columns: repeat(2, 1fr);
 }

 .footer-grid {
 grid-template-columns: 1fr 1fr;
 }
 }

 @media (max-width: 720px) {
 .container {
 width: min(100% - 18px, var(--max));
 }

 .topline-inner {
 justify-content: center;
 }

 .topline-left {
 font-size: 12px;
 }

 .topline-links {
 display: none;
 }

 .header-main {
 min-height: 58px;
 }

 .logo-text {
 font-size: 24px;
 }

 .logo-mark {
 width: 31px;
 height: 31px;
 }

 .mobile-panel {
 width: min(92vw, 360px);
 padding: 14px;
 }

 .mobile-nav a {
 min-height: 46px;
 font-size: 19px;
 }

 .mobile-search-box {
 margin-top: 64px;
 }

 .mobile-search-box form {
 grid-template-columns: 1fr;
 }

 .mobile-search-box input {
 font-size: 18px;
 padding: 14px 16px;
 }

 .mobile-search-box button {
 padding: 13px 18px;
 }

 .article-page {
 padding-top: 16px;
 }

 .article-breadcrumbs {
 margin-bottom: 13px;
 font-size: 12px;
 }

 .article-title {
 font-size: 34px;
 line-height: 1.06;
 letter-spacing: -0.055em;
 }

 .article-lead {
 font-size: 18px;
 line-height: 1.32;
 }

 .article-author-row {
 align-items: flex-start;
 }

 .article-actions {
 width: 100%;
 }

 .article-actions a,
 .article-actions button {
 flex: 1;
 display: inline-flex;
 justify-content: center;
 align-items: center;
 }

 .article-cover img {
 border-radius: 16px;
 }

 .article-content {
 font-size: 17px;
 line-height: 1.6;
 }

 .article-content h2 {
 font-size: 28px;
 }

 .article-content blockquote {
 font-size: 23px;
 }

 .article-telegram {
 grid-template-columns: 1fr;
 }

 .article-sidebar {
 grid-template-columns: 1fr;
 }

 .related-grid {
 grid-template-columns: 1fr;
 }

 .footer-grid {
 grid-template-columns: 1fr;
 }
 }
 
 /* ARTICLE TOP FIX — clean meta/author/actions */

.article-header {
 padding: 0 0 24px;
 border-bottom: 1px solid var(--line);
}

.article-meta-top {
 margin: 0 0 18px;
 display: flex;
 align-items: center;
 flex-wrap: wrap;
 gap: 8px;
 color: var(--muted);
 font-size: 13px;
}

/* ??????? ?????? ?????, ???? ??? ????????? ??-?? ?????? ????????? */
.article-meta-top::before {
 display: none !important;
 content: none !important;
}

.article-category {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 28px;
 padding: 0 11px;
 border-radius: 999px;
 background: #111;
 color: #fff;
 font-size: 11px;
 font-weight: 900;
 line-height: 1;
 text-transform: uppercase;
 letter-spacing: .06em;
}

.article-category:empty {
 display: none;
}

.article-category:hover {
 background: var(--red);
 color: #fff;
}

.article-title {
 margin: 0;
 max-width: 900px;
 font-size: clamp(40px, 5vw, 72px);
 line-height: .98;
 letter-spacing: -0.07em;
 font-weight: 780;
 text-wrap: balance;
}

.article-lead {
 max-width: 740px;
 margin: 18px 0 0;
 color: #333;
 font-size: 22px;
 line-height: 1.28;
 letter-spacing: -0.035em;
}

/* author + buttons in one clean row */

.article-author-row {
 margin-top: 22px;
 display: grid;
 grid-template-columns: 1fr auto;
 align-items: center;
 gap: 18px;
}

.author-card {
 display: grid;
 grid-template-columns: 44px 1fr;
 gap: 11px;
 align-items: center;
 min-width: 0;
}

.author-avatar {
 width: 44px;
 height: 44px;
 border-radius: 14px;
 background: #111;
 color: #fff;
 display: grid;
 place-items: center;
 font-size: 18px;
 font-weight: 900;
}

.author-card strong {
 display: block;
 font-size: 14px;
 line-height: 1.1;
 font-weight: 900;
}

.author-card span {
 display: block;
 margin-top: 3px;
 color: var(--muted);
 font-size: 12px;
}

.article-actions {
 display: flex;
 align-items: center;
 justify-content: flex-end;
 gap: 8px;
}

.article-actions a,
.article-actions button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 38px;
 padding: 0 15px;
 border: 1px solid var(--line);
 border-radius: 999px;
 background: #fff;
 color: #111;
 cursor: pointer;
 font-size: 13px;
 font-weight: 900;
 white-space: nowrap;
}

.article-actions a:hover,
.article-actions button:hover {
 background: #111;
 color: #fff;
}

/* breadcrumbs cleaner */

.article-breadcrumbs {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: 7px;
 margin: 20px 0 18px;
 color: var(--muted);
 font-size: 13px;
}

.article-breadcrumbs a {
 color: var(--muted);
 font-weight: 750;
}

.article-breadcrumbs a:hover {
 color: var(--red);
}

/* mobile */

@media (max-width: 720px) {
 .article-breadcrumbs {
 margin: 16px 0 14px;
 font-size: 12px;
 }

 .article-meta-top {
 margin-bottom: 14px;
 font-size: 12px;
 }

 .article-title {
 font-size: 34px;
 line-height: 1.06;
 letter-spacing: -0.055em;
 }

 .article-lead {
 font-size: 18px;
 line-height: 1.32;
 }

 .article-author-row {
 grid-template-columns: 1fr;
 gap: 14px;
 }

 .article-actions {
 justify-content: stretch;
 width: 100%;
 }

 .article-actions a,
 .article-actions button {
 flex: 1;
 }
}
 /* ARTICLE TAGS — CMS SAFE */

.article-tags {
 margin-top: 28px;
 padding-top: 20px;
 border-top: 1px solid var(--line);
 display: block;
 font-size: 0;
 line-height: 0;
}

.article-tags a {
 display: inline-flex;
 align-items: center;
 justify-content: center;

 min-height: 34px;
 margin: 0 8px 10px 0;
 padding: 0 12px;

 border: 1px solid var(--line);
 border-radius: 999px;
 background: #fff;

 color: #555;
 font-size: 13px;
 font-weight: 850;
 line-height: 1;
 white-space: nowrap;
 text-decoration: none;
}

.article-tags a:hover {
 background: #111;
 border-color: #111;
 color: #fff;
}

/* ??????? ????????? ???????/???????, ???? CMS ??????? ?? ??????? */
.article-tags br {
 display: none;
}