:root {
    --red: #C8102E;
    --red-dark: #9B0A22;
    --black: #0D0D0D;
    --ink: #1A1A1A;
    --gray-dark: #333333;
    --gray-mid: #666666;
    --gray-light: #AAAAAA;
    --border: #E0E0E0;
    --bg: #F5F3EE;
    --paper: #FDFAF5;
    --gold: #B8960C;
  }

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

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
  }

  a { text-decoration: none; color: inherit; }
  a:hover { color: var(--red); }

  img { display: block; width: 100%; height: 100%; object-fit: cover; }

  /* ── TOP BAR ── */
  .topbar {
    background: #fff;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 0;
    overflow: hidden;
  }
  .topbar-inner {
    display: flex;
    align-items: stretch;
    height: 24px;
    width: 100%;
  }

  .topbar-pattern {
    flex: 1;
    min-width: 0;
    background-color: #fff;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeD0iMSIgeT0iMSIgd2lkdGg9IjE4IiBoZWlnaHQ9IjE4IiBmaWxsPSJub25lIiBzdHJva2U9IiM0NDQiIHN0cm9rZS13aWR0aD0iMSIvPgo8cmVjdCB4PSI0IiB5PSI0IiB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzQ0NCIgc3Ryb2tlLXdpZHRoPSIxIi8+CjxyZWN0IHg9IjciIHk9IjciIHdpZHRoPSI2IiBoZWlnaHQ9IjYiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzQ0NCIgc3Ryb2tlLXdpZHRoPSIxIi8+CjxsaW5lIHgxPSIxIiB5MT0iMTAiIHgyPSI3IiB5Mj0iMTAiIHN0cm9rZT0iIzQ0NCIgc3Ryb2tlLXdpZHRoPSIxIi8+CjxsaW5lIHgxPSIxMCIgeTE9IjEiIHgyPSIxMCIgeTI9IjciIHN0cm9rZT0iIzQ0NCIgc3Ryb2tlLXdpZHRoPSIxIi8+Cjwvc3ZnPg==");
    background-size: 20px 20px;
    background-repeat: repeat;
  }
  .topbar-center {
    flex-shrink: 0;
    padding: 0 16px;
    display: flex;
    align-items: center;
    background: #fff;
    white-space: nowrap;
    font-family: 'Noto Sans', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #111;
  }

  .topbar-date { display: none; }
  .topbar-marquee { display: none; }

  /* ── MASTHEAD ── */
  .masthead {
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 18px 0 12px;
  }
  .masthead-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
  }
  .masthead-awards {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .award-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #fff9e6, #fdf3c2);
    box-shadow: 0 2px 8px rgba(184,150,12,0.25);
  }
  .masthead-logo {
    text-align: center;
  }
  .logo-since {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gray-mid);
    text-transform: uppercase;
    margin-bottom: 2px;
    font-family: 'Noto Sans', sans-serif;
  }
  .logo-title {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
  }
  .logo-star {
    color: var(--red);
    font-size: 38px;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(200,16,46,0.4));
  }
  .logo-text {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 58px;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1;
  }
  .masthead-search {
    display: flex;
    justify-content: flex-end;
  }
  .search-box {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
  }
  .search-box input {
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 13px;
    width: 180px;
    font-family: 'Noto Sans', sans-serif;
    background: transparent;
    color: var(--ink);
  }
  .search-box button {
    background: var(--red);
    border: none;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
  }
  .search-box button:hover { background: var(--red-dark); }

  /* ── NAV ── */
  nav {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 0;
  }
  .nav-home {
    padding: 12px 14px;
    color: var(--ink);
    font-size: 18px;
    transition: color 0.2s;
    border-bottom: 3px solid transparent;
  }
  .nav-home:hover { color: var(--ink); }
  .nav-item {
    padding: 13px 16px;
    color: var(--ink);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
  }
  .nav-item::after { display: none; }
  .nav-item:hover { color: var(--ink); background: none; border-bottom-color: var(--ink); }
  .nav-item.active { color: var(--ink); border-bottom-color: var(--ink); font-weight: 800; }

  /* ── LAYOUT ── */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Section header */
  .section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0 18px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--red);
  }
  .section-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.2px;
  }
  .section-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(200,16,46,0.08);
    padding: 3px 8px;
    border-radius: 2px;
  }

  /* ── HERO GRID ── */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1.1fr;
    gap: 20px;
    padding: 24px 0 0;
  }

  /* Left column */
  .col-left { display: flex; flex-direction: column; gap: 18px; }

  .article-card {
    background: var(--paper);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.2s;
    cursor: pointer;
  }
  .article-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.12); }

  .article-card .thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #ddd;
  }
  .article-card .thumb img { transition: transform 0.4s; }
  .article-card:hover .thumb img { transform: scale(1.04); }

  .article-card .card-body { padding: 14px 16px 16px; }
  .cat-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 7px;
  }
  .card-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .card-title:hover { color: var(--red); }
  .card-meta {
    font-size: 11.5px;
    color: var(--gray-mid);
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .card-meta .dot { color: var(--border); }

  /* Center hero */
  .hero-main {
    background: var(--paper);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s;
  }
  .hero-main:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.15); }
  .hero-main .hero-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #bbb;
    position: relative;
  }
  .hero-main .hero-thumb img { transition: transform 0.5s; }
  .hero-main:hover .hero-thumb img { transform: scale(1.03); }
  .hero-label {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
  }
  .hero-body { padding: 20px 22px 22px; }
  .hero-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
  .hero-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .hero-excerpt {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 14.5px;
    color: var(--gray-dark);
    line-height: 1.65;
    margin-bottom: 12px;
  }
  .hero-meta { font-size: 12px; color: var(--gray-mid); }

  /* Right column */
  .col-right { display: flex; flex-direction: column; gap: 0; }

  .sidebar-header {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    padding-bottom: 10px;
    border-bottom: 3px solid var(--red);
    margin-bottom: 0;
  }

  .news-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
    background: var(--paper);
  }
  .news-item:hover { background: rgba(200,16,46,0.03); }
  .news-item .ni-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 58px;
    overflow: hidden;
    background: #ddd;
  }
  .news-item .ni-content { flex: 1; }
  .ni-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .ni-title:hover { color: var(--red); }
  .ni-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
  .ni-date { font-size: 11px; color: var(--gray-light); }

  /* ── SECOND ROW ── */
  .second-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 3px solid var(--border);
  }

  .sm-card {
    background: var(--paper);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
  }
  .sm-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
  .sm-card .sm-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #ccc;
  }
  .sm-card .sm-thumb img { transition: transform 0.4s; }
  .sm-card:hover .sm-thumb img { transform: scale(1.05); }
  .sm-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
  .sm-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 8px;
    flex: 1;
  }
  .sm-title:hover { color: var(--red); }
  .sm-excerpt { font-size: 13px; color: var(--gray-mid); line-height: 1.6; margin-bottom: 10px; }
  .sm-meta { font-size: 11px; color: var(--gray-light); }

  /* ── TICKER ── */
  .ticker-bar {
    background: var(--red);
    color: #fff;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    overflow: hidden;
    height: 38px;
    align-items: center;
  }
  .ticker-label {
    background: var(--black);
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .ticker-scroll {
    overflow: hidden;
    flex: 1;
    position: relative;
  }
  .ticker-inner {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    font-size: 13px;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .ticker-item::before { content: '◆'; font-size: 8px; opacity: 0.7; flex-shrink: 0; }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── CATEGORIES SECTION ── */
  .categories-grid {
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    gap: 30px;
    margin-top: 28px;
  }

  .cat-section-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    padding-bottom: 10px;
    border-bottom: 3px solid var(--red);
    margin-bottom: 16px;
  }

  .list-article {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
  }
  .list-article:last-child { border-bottom: none; }
  .list-article .la-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 68px;
    overflow: hidden;
    background: #ddd;
  }
  .la-content { flex: 1; }
  .la-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .la-title:hover { color: var(--red); }
  .la-excerpt { font-size: 12.5px; color: var(--gray-mid); line-height: 1.55; margin-bottom: 6px; }
  .la-meta { font-size: 11px; color: var(--gray-light); }

  /* Opinion box */
  .opinion-box {
    background: var(--paper);
    border: 1px solid var(--border);
    padding: 18px;
    margin-bottom: 16px;
  }
  .opinion-author {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
  }
  .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8d5b7, #c4a882);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #8B6914;
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-weight: 700;
  }
  .author-info .name {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
  }
  .author-info .role {
    font-size: 11.5px;
    color: var(--gray-mid);
  }
  .opinion-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.45;
    color: var(--ink);
    border-left: 3px solid var(--red);
    padding-left: 12px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    color: #aaa;
    margin-top: 48px;
    padding: 36px 0 0;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }
  .footer-brand .ft-logo {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  .ft-logo .star { color: var(--red); }
  .footer-brand p {
    font-size: 13px;
    line-height: 1.65;
    color: #888;
    max-width: 240px;
  }
  .footer-col h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a { font-size: 13px; color: #888; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--red); }
  .footer-bottom {
    margin-top: 28px;
    border-top: 1px solid #222;
    padding: 14px 20px;
    max-width: 1200px;
    margin: 28px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #555;
  }

  /* ── PHOTO PLACEHOLDER ── */
  .photo-ph {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, #d0cdc8, #b8b4ae);
    color: rgba(255,255,255,0.6);
  }

  /* Animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-grid { animation: fadeUp 0.5s ease both; }
  .second-row { animation: fadeUp 0.5s 0.15s ease both; }
  .categories-grid { animation: fadeUp 0.5s 0.25s ease both; }

  /* ── HAMBURGER MENU ── */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 14px 16px;
    background: none;
    border: none;
    flex-shrink: 0;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 200;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border-top: 2px solid var(--red);
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    padding: 13px 20px;
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .nav-mobile-menu a:hover { background: rgba(0,0,0,0.04); color: var(--ink); }

  /* ── TABLET: 768px–1024px ── */
  @media (max-width: 1024px) {
    .hero-grid {
      grid-template-columns: 1fr 1.6fr;
      grid-template-rows: auto auto;
    }
    .col-left {
      grid-column: 1;
      grid-row: 1;
    }
    .hero-main {
      grid-column: 2;
      grid-row: 1 / 3;
    }
    .col-right {
      grid-column: 1;
      grid-row: 2;
    }
    .second-row {
      grid-template-columns: repeat(2, 1fr);
    }
    .second-row .sm-card:last-child {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .second-row .sm-card:last-child .sm-thumb {
      aspect-ratio: auto;
      height: 100%;
    }
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .footer-brand { grid-column: 1 / -1; }
  }

  /* ── MOBILE: max 768px ── */
  @media (max-width: 768px) {
    /* Topbar */
    .topbar-center { font-size: 9px; letter-spacing: 0.10em; padding: 0 10px; }

    /* Masthead */
    .masthead { padding: 8px 0; }
    .masthead-inner {
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 10px;
      padding: 0 14px;
    }
    .masthead-awards { gap: 6px; }
    .masthead-awards img { width: 36px !important; height: 36px !important; }
    .masthead-logo img { height: 48px !important; }
    .masthead-search { justify-content: flex-end; }
    .search-box { border: none; background: transparent; }
    .search-box input { display: none; }
    .search-box button { 
      padding: 8px 12px; 
      font-size: 16px; 
      background: transparent; 
      color: var(--ink);
      border: 1px solid var(--border);
      border-radius: 4px;
    }

    /* Nav */
    nav { position: sticky; top: 0; }
    .nav-inner { justify-content: space-between; padding: 0 12px; position: relative; }
    .nav-item, .nav-home { display: none; }
    .hamburger { display: flex; }

    /* Container */
    .container { padding: 0 12px; }

    /* Hero grid → single column (reset tablet grid placement) */
    .hero-grid {
      display: flex;
      flex-direction: column;
      gap: 14px;
      padding: 16px 0 0;
    }
    .hero-main { order: 1; grid-column: auto; grid-row: auto; }
    .col-left  { order: 2; grid-column: auto; grid-row: auto; gap: 14px; display: flex; flex-direction: column; }
    .col-right { order: 3; grid-column: auto; grid-row: auto; margin-top: 4px; }

    /* Hero main */
    .hero-title { font-size: 20px; }
    .hero-body { padding: 14px 16px 16px; }
    .hero-excerpt {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-size: 13px;
      line-height: 1.55;
      margin: 8px 0 10px;
      color: var(--gray-mid);
    }

    /* Article cards - horizontal on mobile */
    .article-card {
      display: flex;
      flex-direction: row;
    }
    .article-card .thumb {
      width: 110px;
      flex-shrink: 0;
      aspect-ratio: auto;
      height: auto;
      min-height: 90px;
    }
    .article-card .card-body { padding: 10px 12px; }
    .card-title { font-size: 14px; }

    /* Sidebar news items */
    .sidebar-header { font-size: 15px; padding-top: 16px; border-top: 3px solid var(--red); }
    .news-item .ni-thumb { width: 70px; height: 52px; }
    .ni-title { font-size: 13px; }

    /* Second row → single column */
    .second-row {
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 20px;
      padding-top: 16px;
    }
    .second-row .sm-card:last-child {
      display: flex;
      flex-direction: column;
    }

    /* Ticker */
    .ticker-bar { margin: 16px 0 0; height: 34px; }
    .ticker-label { padding: 0 12px; font-size: 10px; }
    .ticker-item { font-size: 12px; }

    /* Categories */
    .categories-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 20px;
    }
    .list-article .la-thumb { width: 80px; height: 56px; }
    .la-title { font-size: 14px; }
    .la-excerpt { display: none; }

    /* Footer */
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .footer-brand {
      grid-column: 1 / -1;
    }
    .footer-brand p { max-width: 100%; }
    .footer-bottom {
      flex-direction: column;
      gap: 6px;
      text-align: center;
      padding: 14px 20px 20px;
    }
  }

  /* ── SMALL MOBILE: max 480px ── */
  @media (max-width: 480px) {
    .masthead-inner { gap: 6px; padding: 0 10px; }
    .masthead-logo img { height: 42px !important; }
    .masthead-awards img { width: 30px !important; height: 30px !important; }
    .hero-title { font-size: 18px; }
    .card-title { font-size: 13px; }
    .footer-inner { grid-template-columns: 1fr; }
    .search-box button { padding: 7px 10px; }
  }


  /* ── ARTICLE DETAIL PAGE ── */
  #articleOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg);
    overflow-y: auto;
    animation: slideIn 0.3s ease;
  }
  #articleOverlay.active { display: block; }
  @keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .detail-topbar {
    background: var(--black);
    padding: 6px 0;
    border-bottom: 2px solid var(--red);
  }
  .detail-topbar-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
    color: #aaa;
  }
  .detail-back-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }
  .detail-back-top:hover { color: var(--red); }
  .detail-back-top svg { width: 14px; height: 14px; }

  /* Detail header — sticky, self-contained */
  .detail-header {
    position: sticky;
    top: 0;
    z-index: 1001;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  }

  /* detail-topbar removed — reuses .topbar */

  .detail-masthead {
    background: #fff;
    padding: 12px 0;
    border-bottom: none;
  }
  .detail-masthead-inner {
    max-width: 1035px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .detail-logo {
    cursor: pointer;
    flex-shrink: 0;
    line-height: 0;
  }
  .detail-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    
  }
  .detail-nav-links {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .detail-nav-links a {
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ink);
    border-radius: 0;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  .detail-nav-links a:hover { color: var(--ink); border-bottom-color: var(--ink); }

  .detail-nav-bar {
    background: var(--border);
    height: 1px;
  }

  /* Article content area */
  .detail-wrap {
    max-width: 1035px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 36px;
    align-items: start;
  }

  .detail-main { padding-top: 36px; }

  /* Breadcrumb */
  .detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: var(--gray-mid);
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .detail-breadcrumb .bc-sep { color: var(--border); }
  .detail-breadcrumb .bc-cat {
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
  }

  /* Article header — sonin.mn / screenshot style */
  .detail-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .detail-lead {
    display: none;
  }
  .detail-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
  }
  .detail-author-avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .detail-author-avatar img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    mix-blend-mode: multiply;
  }
  .detail-author-info .author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .detail-author-info .author-date {
    font-size: 12px;
    color: var(--gray-mid);
  }
  .detail-share-btns {
    margin-left: auto;
    display: flex;
    gap: 8px;
  }
  .share-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .share-btn:hover { opacity: 0.85; }
  .share-btn.fb { background: #3b5998; color: #fff; }
  .share-btn.tw { background: #1DA1F2; color: #fff; }
  .share-btn.lk { background: #f0f0f0; color: var(--ink); border: 1px solid var(--border); }

  /* Hero image */
  .detail-hero-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #c8d6e0, #9ab0bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    margin-bottom: 12px;
    border-radius: 4px;
    overflow: hidden;
  }
  .detail-img-caption {
    font-size: 12px;
    color: var(--gray-light);
    margin-bottom: 28px;
    font-style: italic;
    text-align: center;
  }

  /* Body text */
  .detail-body {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 17px;
    line-height: 1.85;
    color: var(--ink);
    text-align: justify;
    hyphens: auto;
  }
  .detail-body p { margin-bottom: 22px; }
  .detail-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 14px;
    color: var(--ink);
  }
  .detail-body blockquote {
    border-left: 4px solid var(--red);
    margin: 28px 0;
    padding: 16px 20px;
    background: rgba(200,16,46,0.04);
    font-style: italic;
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 1.65;
  }

  /* Tags */
  .detail-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .detail-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    background: rgba(200,16,46,0.08);
    color: var(--red);
    border-radius: 20px;
    letter-spacing: 0.04em;
  }

  /* Sidebar */
  .detail-sidebar { padding-top: 36px; }
  .sidebar-widget {
    background: var(--paper);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    overflow: hidden;
  }
  .widget-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--red);
    padding: 10px 16px;
    letter-spacing: 0.04em;
  }
  .widget-item {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    cursor: pointer !important;
    transition: background 0.15s, transform 0.15s;
    user-select: none;
  }
  .widget-item, .widget-item * { cursor: pointer !important; }
  .widget-item:last-child { border-bottom: none; }
  .widget-item:hover { background: rgba(200,16,46,0.05); }
  .widget-item:hover .widget-item-title { color: var(--red); }
  .widget-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 50px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
  }
  .widget-item-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
  }
  .widget-item-date { font-size: 11px; color: var(--gray-light); margin-top: 4px; }

  /* Back button floating */
  .detail-back-fab {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(200,16,46,0.4);
    gap: 8px;
    align-items: center;
    transition: background 0.2s, transform 0.2s;
  }
  .detail-back-fab:hover { background: var(--red-dark); transform: scale(1.05); }
  #articleOverlay.active ~ .detail-back-fab,
  .detail-back-fab.visible { display: flex; }

  /* Responsive detail */
  @media (max-width: 768px) {
    .detail-wrap {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 0 14px 40px;
    }
    .detail-title { font-size: 22px; }
    .detail-lead { font-size: 15px; }
    .detail-body { font-size: 16px; line-height: 1.8; }
    .detail-share-btns { margin-left: 0; width: 100%; }
    .detail-sidebar { padding-top: 0; }
    .detail-nav-links { display: none !important; }
    .detail-hero-img { font-size: 50px; }
    .detail-masthead-inner { padding: 0 14px; }
    .detail-topbar-inner { padding: 0 14px; }
    .detail-logo img { height: 40px; }
  }
  @media (max-width: 480px) {
    .detail-title { font-size: 19px; }
    .detail-body { font-size: 15px; }
  }


  /* Logo wordmark */
  .masthead-logo { text-align: center; line-height: 1; }
  .logo-wordmark {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .logo-wordmark-mn {
    font-family: 'Noto Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gray-mid);
    text-transform: uppercase;
    align-self: center;
  }
  .logo-wordmark-year {
    font-family: 'Noto Sans', sans-serif;
    font-size: 10px;
    color: var(--gray-light);
    letter-spacing: 0.05em;
    align-self: center;
  }
  .logo-wordmark-unen {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1;
  }

  /* ── СЭТГЭГДЭЛ ХЭСЭГ ── */
  .comment-section {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 2px solid var(--border);
  }
  .comment-section-title {
    font-family: 'Merriweather', 'Noto Serif', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .comment-count-badge {
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    font-family: 'Noto Sans', sans-serif;
  }

  /* Write comment box */
  .comment-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 28px;
  }
  .comment-form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  .comment-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e0d0, #c8b89a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #7a6040;
    font-weight: 700;
    flex-shrink: 0;
  }

  .comment-textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    color: var(--ink);
    resize: vertical;
    min-height: 90px;
    outline: none;
    line-height: 1.6;
    transition: border-color 0.2s;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
  .comment-textarea:focus { border-color: var(--ink); }
  .comment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .comment-rules {
    font-size: 11.5px;
    color: var(--gray-light);
    font-family: 'Noto Sans', sans-serif;
  }
  .comment-submit-btn {
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 9px 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Noto Sans', sans-serif;
    transition: background 0.2s;
  }
  .comment-submit-btn:hover { background: var(--red); }

  /* Comment list */
  .comment-list { display: flex; flex-direction: column; gap: 0; }

  .comment-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    animation: fadeUp 0.3s ease;
  }
  .comment-item:last-child { border-bottom: none; }
  .comment-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  .ci-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Noto Sans', sans-serif;
  }
  .ci-meta { flex: 1; }
  .ci-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    font-family: 'Noto Sans', sans-serif;
  }
  .ci-date {
    font-size: 11px;
    color: var(--gray-light);
    font-family: 'Noto Sans', sans-serif;
  }
  .ci-actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .ci-like, .ci-reply-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: var(--gray-mid);
    font-family: 'Noto Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 3px;
    transition: background 0.15s, color 0.15s;
  }
  .ci-like:hover { color: var(--red); background: rgba(200,16,46,0.06); }
  .ci-reply-btn:hover { color: var(--ink); background: rgba(0,0,0,0.05); }
  .ci-like.liked { color: var(--red); }
  .comment-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--gray-dark);
    font-family: 'Noto Sans', sans-serif;
    text-align: justify;
    padding-left: 0;
  }

  /* Reply form */
  .reply-form {
    display: none;
    margin: 10px 0 0 0;
    gap: 8px;
    flex-direction: column;
  }
  .reply-form.open { display: flex; }
  .reply-textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 13px;
    font-family: 'Noto Sans', sans-serif;
    resize: none;
    min-height: 70px;
    outline: none;
    box-sizing: border-box;
  }
  .reply-textarea:focus { border-color: var(--ink); }
  .reply-submit {
    align-self: flex-end;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 7px 18px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Noto Sans', sans-serif;
    letter-spacing: 0.06em;
    transition: background 0.2s;
  }
  .reply-submit:hover { background: var(--red); }

  /* Replies */
  .replies-list {
    margin: 8px 0 0 0;
    border-left: 2px solid var(--border);
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .reply-item { }
  .reply-item .ci-name { font-size: 12.5px; }
  .reply-item .comment-text { padding-left: 0; font-size: 13.5px; }

  @media (max-width: 768px) {
    .comment-text { padding-left: 0; margin-top: 6px; }
    .reply-form { margin-left: 0; }
    .replies-list { margin-left: 0; }
    .comment-form-footer { flex-direction: column; gap: 10px; align-items: flex-start; }
    .comment-submit-btn { width: 100%; text-align: center; }
    .detail-share-btns { margin-left: 0; }
  }