@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter_18pt-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter_18pt-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter_18pt-SemiBold.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter_18pt-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}

:root {
    --accent:       #0066cc;
    --accent-dark:  #0052a3;
    --accent-light: #e8f0fb;
    --text:         #0a0a0a;
    --text-2:       #444;
    --bg:           #ffffff;
    --border:       #e8e8e8;
    --surface:      #f7f8fa;
    --tag-bg:       #e8f0fb;
    --tag-text:     #0052a3;
    --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --r:            6px;
    --r-lg:         10px;
    --sidebar-w:    280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:visited { color: var(--accent); }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 58px;
    gap: 20px;
}
.header-logo a {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.header-logo a span { color: var(--accent); }
.header-logo a:hover { text-decoration: none; color: var(--text); }

.header-search { justify-self: center; width: 100%; max-width: 480px; }
.header-search form { display: flex; }
.header-search input {
    font-family: var(--font);
    font-size: 14px;
    padding: 9px 16px;
    border: 1.5px solid var(--border);
    border-right: none;
    border-radius: var(--r) 0 0 var(--r);
    outline: none;
    flex: 1;
    color: var(--text);
    background: var(--surface);
    transition: border-color .15s;
}
.header-search input:focus { border-color: var(--accent); background: var(--bg); }
.header-search button {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 20px;
    background: var(--accent);
    color: #fff;
    border: 1.5px solid var(--accent);
    border-radius: 0 var(--r) var(--r) 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.header-search button:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ============================================================
   HERO — полная ширина
   ============================================================ */
.hero-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px 0;
}
.hero {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #0a0a2e;
    height: 420px;
}
.hero a { display: block; height: 100%; }
.hero img {
    width: 100%; height: 100%; object-fit: cover; opacity: .82;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}
.hero-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px 40px;
    max-width: 860px;
}
.hero-cat {
    display: inline-block;
    background: var(--accent); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 3px; margin-bottom: 12px;
}
.hero-title {
    font-size: 28px; font-weight: 700; color: #fff; line-height: 1.3;
}
.hero-title a { color: #fff; }
.hero-title a:hover { text-decoration: underline; }
.hero-time { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 10px; }

/* ============================================================
   BREAKING ROW — 4 карточки
   ============================================================ */
.breaking-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 24px 0;
}
.breaking {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}
.br-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-right: 1px solid var(--border);
    padding-right: 12px;
}
.br-card:last-child { border-right: none; padding-right: 0; }
.br-thumb {
    width: 72px; height: 52px;
    border-radius: var(--r); overflow: hidden;
    flex-shrink: 0; background: var(--surface);
}
.br-thumb img { width: 100%; height: 100%; object-fit: cover; }
.br-body { flex: 1; min-width: 0; }
.br-cat {
    font-size: 9px; font-weight: 700; color: var(--tag-text);
    text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px;
}
.br-title {
    font-size: 12px; font-weight: 600; color: var(--text);
    line-height: 1.4; display: block;
}
.br-title:hover { color: var(--accent); text-decoration: none; }
.br-time { font-size: 10px; color: var(--text-2); margin-top: 3px; }

/* ============================================================
   MAIN LAYOUT — колонки + сайдбар
   ============================================================ */
.main-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr var(--sidebar-w);
    gap: 0;
    align-items: start;
}

.content-area { padding-right: 28px; border-right: 1px solid var(--border); }

/* Сетка категорий */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* Одна колонка категории */
.cat-col {
    padding: 20px 24px 20px 0;
    border-right: 1px solid var(--border);
}
.cat-col:last-child { border-right: none; padding-right: 0; }
.cat-col:nth-child(2) { padding-left: 24px; }
.cat-col:nth-child(3) { padding-left: 24px; }

/* Заголовок категории — MS NOW стиль */
.cat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 0;
}
.cat-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}
.cat-name a { color: var(--text); }
.cat-name a:hover { color: var(--accent); text-decoration: none; }
.cat-more {
    font-size: 11px; color: var(--accent); font-weight: 600;
    white-space: nowrap; margin-left: 12px; flex-shrink: 0;
}
.cat-more:hover { text-decoration: underline; }

/* Статья в колонке — тумба слева + текст справа (MS NOW стиль) */
.col-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.col-item:last-child { border-bottom: none; }
.col-thumb {
    width: 80px; height: 56px;
    border-radius: var(--r); overflow: hidden;
    flex-shrink: 0; background: var(--surface);
}
.col-thumb img { width: 100%; height: 100%; object-fit: cover; }
.col-thumb-empty { width: 80px; height: 56px; border-radius: var(--r); background: var(--surface); flex-shrink: 0; }
.col-body { flex: 1; min-width: 0; }
.col-title {
    font-size: 13px; font-weight: 600; color: var(--text);
    line-height: 1.4; display: block; margin-bottom: 4px;
}
.col-title:hover { color: var(--accent); text-decoration: none; }
.col-source { font-size: 11px; color: var(--text-2); }

/* Первая статья — только тайтл крупнее, без тумбы если нет */
.col-item-top .col-title { font-size: 14px; }

/* ============================================================
   STICKY SIDEBAR
   ============================================================ */
.sidebar {
    padding: 20px 0 20px 28px;
    position: sticky;
    top: 70px;
    align-self: start;
}
.sb-widget { margin-bottom: 20px; }
.sb-widget-title {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .07em; color: var(--text-2);
    padding-bottom: 8px; border-bottom: 1px solid var(--border);
    margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.sb-weather { }
.sb-weather-city { font-size: 12px; color: var(--text-2); margin-bottom: 4px; }
.sb-weather-main { display: flex; align-items: flex-end; gap: 10px; margin-bottom: 6px; }
.sb-weather-temp { font-size: 38px; font-weight: 700; color: var(--text); line-height: 1; }
.sb-weather-desc { font-size: 12px; color: var(--text-2); margin-bottom: 10px; }
.sb-weather-days { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.sb-weather-day {
    text-align: center; background: var(--surface);
    border-radius: var(--r); padding: 6px 2px;
}
.sb-weather-day-name { font-size: 9px; color: var(--text-2); font-weight: 700; text-transform: uppercase; }
.sb-weather-day-temp { font-size: 13px; font-weight: 700; color: var(--text); margin-top: 2px; }

.sb-rates { }
.sb-rate-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0; border-bottom: 1px solid var(--border);
}
.sb-rate-row:last-child { border-bottom: none; }
.sb-rate-cur { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); }
.sb-rate-flag { font-size: 16px; }
.sb-rate-right { display: flex; align-items: center; gap: 5px; }
.sb-rate-val { font-size: 13px; font-weight: 700; color: var(--text); }
.sb-rate-chg { font-size: 10px; font-weight: 600; padding: 2px 5px; border-radius: 3px; }
.up { background: #e8f5e9; color: #2e7d32; }
.dn { background: #fce8e6; color: #c62828; }
.nc { background: var(--surface); color: var(--text-2); }

.sb-ad {
    background: var(--surface); border: 1px dashed var(--border);
    border-radius: var(--r-lg); height: 120px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--text-2);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { padding: 12px 0 8px; font-size: 13px; }
.breadcrumb ol { display: flex; align-items: center; gap: 4px; list-style: none; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; color: var(--text-2); }
.breadcrumb .sep { margin: 0 2px; color: var(--border); }
.breadcrumb a { color: var(--accent); }

/* ============================================================
   CATEGORY & SEARCH PAGE
   ============================================================ */
.page-wrap {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr var(--sidebar-w);
    gap: 0;
}
.page-main { padding-right: 28px; border-right: 1px solid var(--border); }
.page-title { font-size: 26px; font-weight: 800; color: var(--text); margin: 20px 0 4px; letter-spacing: -.5px; }
.page-desc { font-size: 14px; color: var(--text-2); margin-bottom: 16px; }
.section-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 10px; margin: 20px 0 4px;
    border-bottom: 2px solid var(--text);
}
.section-head h2 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.section-head a { font-size: 12px; color: var(--accent); }

/* NEWS LIST */
.news-list { display: flex; flex-direction: column; }
.news-item {
    display: flex; gap: 14px; padding: 14px 0;
    border-bottom: 1px solid var(--border); align-items: flex-start;
}
.news-item:last-child { border-bottom: none; }
.news-thumb { flex-shrink: 0; width: 130px; height: 88px; border-radius: var(--r); overflow: hidden; background: var(--surface); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-thumb-empty { width: 130px; height: 88px; border-radius: var(--r); background: var(--surface); flex-shrink: 0; }
.news-body { flex: 1; min-width: 0; }
.news-tag {
    display: inline-block; font-size: 10px; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase;
    color: var(--tag-text); background: var(--tag-bg);
    padding: 2px 8px; border-radius: 3px; margin-bottom: 6px;
    text-decoration: none;
}
.news-tag:hover { text-decoration: none; }
.news-title { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.45; display: block; margin-bottom: 5px; }
.news-title:hover { color: var(--accent); text-decoration: none; }
.news-meta { font-size: 12px; color: var(--text-2); }

/* PAGINATION */
.pagination { display: flex; align-items: center; gap: 6px; margin: 28px 0; flex-wrap: wrap; }
.pagination a, .pagination .page-current {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px; padding: 0 8px;
    font-size: 14px; font-weight: 500; border-radius: var(--r);
    border: 1.5px solid var(--border); color: var(--text); transition: all .15s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); text-decoration: none; }
.pagination .page-current { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagination .page-dots { color: var(--text-2); padding: 0 4px; }
.pagination .page-prev, .pagination .page-next { padding: 0 14px; }

/* ============================================================
   ARTICLE
   ============================================================ */
.article-page-wrap {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr var(--sidebar-w);
    gap: 0;
}
.article-main { padding-right: 28px; border-right: 1px solid var(--border); }

.article-layout { display: grid; grid-template-columns: 44px 1fr; gap: 20px; }
.article-share-sticky {
    position: sticky; top: 80px; align-self: start;
    display: flex; flex-direction: column; gap: 10px; padding-top: 4px;
}
.share-icon {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none; font-family: var(--font);
    transition: opacity .15s; text-decoration: none; flex-shrink: 0;
}
.share-icon:hover { opacity: .82; text-decoration: none; }
.share-icon svg { width: 18px; height: 18px; fill: #fff; display: block; }
.share-icon.fb { background: #1877f2; }
.share-icon.tg { background: #229ed9; }
.share-icon.wa { background: #25d366; }
.share-icon.cp { background: var(--text); }

.article-body-wrap { min-width: 0; }
.article-cat-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--tag-text); background: var(--tag-bg);
    padding: 4px 12px; border-radius: 3px; margin-bottom: 14px;
    text-decoration: none;
}
.article-cat-tag:hover { text-decoration: none; }
.article-title { font-size: 28px; font-weight: 700; line-height: 1.3; color: var(--text); margin-bottom: 16px; letter-spacing: -.3px; }
.article-meta {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px;
}
.article-author { display: flex; align-items: center; gap: 8px; }
.article-author-photo { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.article-author-initials {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--accent-light); display: flex; align-items: center;
    justify-content: center; font-size: 12px; font-weight: 700; color: var(--accent); flex-shrink: 0;
}
.article-author-name { font-size: 13px; font-weight: 600; color: var(--text); }
.article-author-name:hover { color: var(--accent); }
.article-date { font-size: 13px; color: var(--text-2); }
.article-read-time { font-size: 12px; color: var(--text-2); display: flex; align-items: center; gap: 4px; }
.article-thumb { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--r-lg); margin-bottom: 24px; }
.article-content { font-size: 17px; line-height: 1.8; color: var(--text); max-width: 720px; }
.article-content p { margin-bottom: 16px; }
.article-content a { color: var(--accent); text-decoration: underline; }

.read-more-box {
    margin: 24px 0; padding: 20px 24px;
    background: var(--accent-light); border-left: 4px solid var(--accent);
    border-radius: 0 var(--r) var(--r) 0;
}
.read-more-box p { font-size: 14px; color: var(--text-2); margin-bottom: 12px; }
.read-more-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; background: var(--accent); color: #fff !important;
    font-size: 14px; font-weight: 600; border-radius: var(--r);
    transition: background .15s; text-decoration: none;
}
.read-more-btn:hover { background: var(--accent-dark); text-decoration: none; }
.article-source { font-size: 13px; color: var(--text-2); margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.article-source a { color: var(--accent); }

.related { margin-top: 32px; }
.related-title { font-size: 14px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .05em; border-bottom: 2px solid var(--text); padding-bottom: 10px; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card { display: flex; flex-direction: column; gap: 8px; }
.related-card-img { border-radius: var(--r); overflow: hidden; aspect-ratio: 16/9; background: var(--surface); }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card-title { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.4; display: block; }
.related-card-title:hover { color: var(--accent); text-decoration: none; }
.related-card-time { font-size: 11px; color: var(--text-2); }

/* AUTHOR */
.author-header {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px; background: var(--surface);
    border: 1px solid var(--border); border-radius: var(--r-lg); margin-bottom: 28px;
}
.author-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-initials { width: 80px; height: 80px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.author-name { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.author-bio { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 6px; }
.author-count { font-size: 13px; color: var(--text-2); }

/* SEARCH */
.search-header { margin: 20px 0 24px; }
.search-header h1 { font-size: 22px; font-weight: 700; }
.search-header h1 span { color: var(--accent); }
.search-count { font-size: 14px; color: var(--text-2); margin-top: 4px; }

/* 404 */
.error-404 { text-align: center; padding: 80px 20px; }
.error-404 .err-code { font-size: 100px; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 16px; }
.error-404 h1 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.error-404 p { color: var(--text-2); margin-bottom: 24px; }
.error-404 a { display: inline-block; padding: 12px 28px; background: var(--accent); color: #fff !important; border-radius: var(--r); font-weight: 600; }
.error-404 a:hover { background: var(--accent-dark); text-decoration: none; }

/* FOOTER */
footer { background: var(--bg); border-top: 1px solid var(--border); margin-top: 40px; }
.footer-top { max-width: 1400px; margin: 0 auto; padding: 32px 24px 24px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; border-bottom: 1px solid var(--border); }
.footer-logo { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; display: block; text-decoration: none; }
.footer-logo span { color: var(--accent); }
.footer-logo:hover { text-decoration: none; }
.footer-tagline { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); margin-bottom: 12px; }
.footer-links-list { display: flex; flex-direction: column; gap: 8px; }
.footer-links-list a { font-size: 13px; color: var(--text-2); transition: color .15s; }
.footer-links-list a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 12px; color: var(--text-2); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-2); }
.footer-bottom-links a:hover { color: var(--accent); text-decoration: none; }

.no-results { text-align: center; padding: 48px 20px; color: var(--text-2); font-size: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    :root { --sidebar-w: 240px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-col:nth-child(3) { grid-column: 1 / 3; border-right: none; padding-right: 0; padding-left: 0; border-top: 1px solid var(--border); }
    .breaking { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .main-wrap { grid-template-columns: 1fr; }
    .content-area { padding-right: 0; border-right: none; }
    .sidebar { position: static; padding: 20px 0 0; }
    .page-wrap { grid-template-columns: 1fr; }
    .page-main { padding-right: 0; border-right: none; }
    .article-page-wrap { grid-template-columns: 1fr; }
    .article-main { padding-right: 0; border-right: none; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top > div:first-child { grid-column: 1 / 3; }
}

@media (max-width: 640px) {
    .container { padding: 0 14px; }
    .header-inner { padding: 0 14px; gap: 12px; }
    .hero-wrap, .breaking-wrap, .main-wrap, .page-wrap, .article-page-wrap { padding: 0 14px; }
    .footer-top, .footer-bottom { padding-left: 14px; padding-right: 14px; }
    .header-logo a { font-size: 18px; }
    .header-search input { font-size: 13px; width: 140px; }
    .hero { height: 260px; border-radius: var(--r); }
    .hero-content { padding: 20px 18px; }
    .hero-title { font-size: 18px; }
    .breaking { grid-template-columns: 1fr 1fr; }
    .br-card { border-right: none; }
    .br-card:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 10px; }
    .cat-grid { grid-template-columns: 1fr; }
    .cat-col { border-right: none; padding: 16px 0; border-top: 1px solid var(--border); }
    .cat-col:first-child { border-top: none; padding-top: 16px; }
    .cat-col:nth-child(2), .cat-col:nth-child(3) { padding-left: 0; }
    .article-layout { grid-template-columns: 1fr; }
    .article-share-sticky { flex-direction: row; position: static; margin-bottom: 16px; }
    .article-title { font-size: 22px; }
    .article-content { font-size: 16px; }
    .related-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-top > div:first-child { grid-column: 1; }
    .news-thumb, .news-thumb-empty { width: 90px; height: 64px; }
    .cat-name { font-size: 15px; }
}

@media (max-width: 400px) {
    .breaking { grid-template-columns: 1fr; }
    .br-card { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 10px; }
    .br-card:last-child { border-bottom: none; }
}

/* Sidebar latest news */
.sb-latest { display: flex; flex-direction: column; gap: 0; }
.sb-latest-item {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 10px 0; border-bottom: 1px solid var(--border);
}
.sb-latest-item:last-child { border-bottom: none; }
.sb-latest-thumb {
    width: 60px; height: 44px; border-radius: var(--r);
    overflow: hidden; flex-shrink: 0; background: var(--surface);
}
.sb-latest-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sb-latest-body { flex: 1; min-width: 0; }
.sb-latest-title {
    font-size: 12px; font-weight: 600; color: var(--text);
    line-height: 1.4; display: block; margin-bottom: 3px;
}
.sb-latest-title:hover { color: var(--accent); text-decoration: none; }
.sb-latest-time { font-size: 10px; color: var(--text-2); }

.sb-lrahos-btn {
    display: block; text-align: center; margin-top: 10px;
    padding: 8px 12px; border: 1.5px solid var(--accent);
    border-radius: var(--r); font-size: 12px; font-weight: 600;
    color: var(--accent); transition: all .15s;
}
.sb-lrahos-btn:hover {
    background: var(--accent); color: #fff; text-decoration: none;
}