/* ===== THEME VARIABLES ===== */
:root {
  --accent: #2563b0;
  --accent-hover: #1d4f8f;
  --accent-glow: rgba(37, 99, 176, 0.12);
  --accent-light: #3b82d6;
  --green: #1a9a5a;
  --orange: #d48a2c;
  --tag-market: #2563b0;
  --tag-tech: #6d5cc4;
  --tag-politics: #b07825;
  --tag-opinion: #4a8f6a;
  --font-display-cn: 'Noto Serif SC', Georgia, serif;
  --font-display-en: 'Playfair Display', Georgia, serif;
  --font-body: 'Noto Sans SC', 'Source Sans 3', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

[data-theme="dark"] {
  --bg-primary: #0b0d10;
  --bg-secondary: #10131a;
  --bg-card: #141720;
  --bg-card-hover: #1a1e2a;
  --bg-hero-overlay: rgba(11, 13, 16, 0.72);
  --text-primary: #e4e6ea;
  --text-secondary: #8b8f9a;
  --text-muted: #505560;
  --border: #1c2030;
  --border-light: #252a38;
  --ticker-bg: #0e1118;
  --input-bg: #10131a;
  --code-bg: #161a24;
}

[data-theme="light"] {
  --bg-primary: #f7f7f8;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f2f5;
  --bg-hero-overlay: rgba(0, 0, 0, 0.48);
  --text-primary: #1a1a2e;
  --text-secondary: #5c5f6a;
  --text-muted: #9a9da6;
  --border: #e2e4e8;
  --border-light: #ecedf0;
  --ticker-bg: #f0f1f4;
  --input-bg: #f0f1f4;
  --code-bg: #f4f5f7;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border 0.3s;
}

.nav-left { display: flex; align-items: center; gap: 32px; }

.nav-brand { display: flex; align-items: center; gap: 10px; }

.nav-logo {
  width: 28px; height: 28px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display-cn);
  font-weight: 900; font-size: 15px;
  color: #fff; border-radius: 4px;
}

.nav-brand-text {
  font-family: var(--font-display-cn);
  font-weight: 900; font-size: 17px; letter-spacing: 2px;
}

.nav-brand-sub {
  font-family: var(--font-display-en);
  font-size: 10px; color: var(--text-muted);
  letter-spacing: 1.5px; margin-left: 1px;
}

.nav-channels { display: flex; gap: 0; }

.nav-channels ul {
  list-style: none; display: flex; gap: 24px;
  margin: 0; padding: 0;
}

.nav-channels li { list-style: none; }

.nav-channels a {
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s; letter-spacing: 0.5px;
}
.nav-channels a:hover, .nav-channels a.nav-current { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 16px; }

.nav-lang {
  font-size: 11px; color: var(--text-muted); cursor: pointer;
  padding: 4px 10px; border: 1px solid var(--border-light);
  border-radius: 3px; transition: all 0.2s;
  font-family: 'Source Sans 3', sans-serif; letter-spacing: 1px;
}
.nav-lang:hover { border-color: var(--accent); color: var(--accent); }

.theme-toggle {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid var(--border-light);
  border-radius: 3px; background: none;
  color: var(--text-secondary); font-size: 14px;
  transition: all 0.2s;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

.nav-subscribe {
  padding: 6px 16px; background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  border: none; border-radius: 3px; cursor: pointer;
  font-family: 'Source Sans 3', sans-serif; transition: background 0.2s;
}
.nav-subscribe:hover { background: var(--accent-hover); }

/* ===== HERO ===== */
.hero {
  margin-top: 56px; position: relative;
  height: 560px; overflow: hidden;
}
.hero a { display: block; height: 100%; }

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

.hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0f1923 0%, #1a2436 40%, #0d1520 100%);
}

.hero-gradient {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80%;
  background: linear-gradient(to top, var(--bg-primary) 0%, var(--bg-hero-overlay) 50%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px; z-index: 2;
}

.hero-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Source Sans 3', sans-serif;
  border-radius: 2px; margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display-cn);
  font-size: 38px; font-weight: 900;
  line-height: 1.35; color: #fff;
  max-width: 720px; margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-excerpt {
  font-size: 16px; color: rgba(255,255,255,0.75);
  max-width: 600px; line-height: 1.8; margin-bottom: 16px;
}

.hero-meta {
  font-size: 12px; color: rgba(255,255,255,0.5);
  font-family: 'Source Sans 3', sans-serif;
  display: flex; gap: 12px; align-items: center;
}

/* ===== TICKER (TradingView) ===== */
.ticker-tv {
  background: var(--ticker-bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.3s, border 0.3s;
  height: 46px;
}

.ticker-tv .tradingview-widget-container {
  height: 46px;
  overflow: hidden;
}

.ticker-tv .tradingview-widget-copyright {
  display: none !important;
}

/* ===== SECTIONS ===== */
.section { padding: 56px 0; }

.section-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
}

.section-title {
  font-family: var(--font-display-cn);
  font-size: 20px; font-weight: 900; white-space: nowrap;
}

.section-title-en {
  font-family: var(--font-display-en);
  font-size: 12px; font-style: italic;
  color: var(--text-muted); white-space: nowrap;
}

.section-line { flex: 1; height: 1px; background: var(--border); }

.section-more {
  white-space: nowrap; font-size: 12px; color: var(--accent);
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 1px; font-weight: 600; transition: opacity 0.2s;
}
.section-more:hover { opacity: 0.7; }

/* ===== EDITOR'S PICKS ===== */
.picks-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.pick-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; padding: 24px; cursor: pointer;
  transition: all 0.25s; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.pick-card:hover {
  background: var(--bg-card-hover); border-color: var(--accent);
  transform: translateY(-2px);
}
.pick-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  opacity: 0; transition: opacity 0.25s;
}
.pick-card:hover::before { opacity: 1; }

.pick-num {
  font-family: var(--font-display-en);
  font-size: 36px; font-weight: 900;
  color: var(--border); line-height: 1; margin-bottom: 12px;
}

.pick-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Source Sans 3', sans-serif; margin-bottom: 10px;
}

.pick-title {
  font-family: var(--font-display-cn);
  font-size: 16px; font-weight: 700;
  line-height: 1.55; margin-bottom: 10px; flex-grow: 1;
}

.pick-meta {
  font-size: 11px; color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
}

/* ===== ARTICLE LIST ===== */
.articles-layout {
  display: grid; grid-template-columns: 2fr 1fr; gap: 32px;
}

.article-list { display: flex; flex-direction: column; }

.article-row {
  display: flex; gap: 24px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity 0.2s;
}
.article-row:first-child { padding-top: 0; }
.article-row:hover { opacity: 0.85; }

.article-row-img {
  width: 200px; height: 130px;
  background: var(--bg-card); border-radius: 4px;
  overflow: hidden; flex-shrink: 0;
}
.article-row-img img { width: 100%; height: 100%; object-fit: cover; }

.article-row-content { flex: 1; display: flex; flex-direction: column; }

.article-row-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  font-family: 'Source Sans 3', sans-serif; margin-bottom: 6px;
}

.article-row-title {
  font-family: var(--font-display-cn);
  font-size: 18px; font-weight: 700; line-height: 1.5; margin-bottom: 6px;
}

.article-row-excerpt {
  font-size: 13.5px; color: var(--text-secondary);
  line-height: 1.7; flex-grow: 1;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.article-row-meta {
  font-size: 11px; color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif; margin-top: 8px;
}

/* ===== SIDEBAR ===== */
.sidebar-title {
  font-family: var(--font-display-cn);
  font-size: 15px; font-weight: 900; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 2px solid var(--accent);
}

.sidebar-item {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: opacity 0.2s;
}
.sidebar-item:hover { opacity: 0.7; }

.sidebar-item-num {
  font-family: var(--font-display-en);
  font-size: 18px; font-weight: 700;
  color: var(--accent); margin-right: 10px;
}

.sidebar-item-title { font-size: 14px; font-weight: 600; line-height: 1.5; }

.sidebar-item-meta {
  font-size: 11px; color: var(--text-muted);
  margin-top: 4px; font-family: 'Source Sans 3', sans-serif;
}

/* ===== SPECIAL REPORTS ===== */
.specials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.special-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden; cursor: pointer;
  transition: all 0.25s;
}
.special-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.special-img {
  height: 180px; background: var(--bg-secondary);
  position: relative; overflow: hidden;
}
.special-img img { width: 100%; height: 100%; object-fit: cover; }

.special-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.special-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 10px; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'Source Sans 3', sans-serif; border-radius: 2px;
}

.special-body { padding: 20px 24px 24px; }

.special-title {
  font-family: var(--font-display-cn);
  font-size: 17px; font-weight: 700; line-height: 1.5; margin-bottom: 8px;
}

.special-desc {
  font-size: 13px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 12px;
}

.special-count {
  font-size: 11px; color: var(--accent);
  font-weight: 600; font-family: 'Source Sans 3', sans-serif;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
}

.newsletter-text h2 {
  font-family: var(--font-display-cn);
  font-size: 22px; font-weight: 900; margin-bottom: 6px;
}

.newsletter-text p {
  color: var(--text-secondary); font-size: 14px; line-height: 1.7;
}

.newsletter-form { display: flex; flex-shrink: 0; }

.newsletter-input {
  width: 280px; padding: 12px 18px;
  background: var(--input-bg); border: 1px solid var(--border-light);
  border-right: none; border-radius: 4px 0 0 4px;
  color: var(--text-primary); font-size: 14px;
  font-family: 'Source Sans 3', sans-serif;
  outline: none; transition: border-color 0.2s, background 0.3s;
}
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-input::placeholder { color: var(--text-muted); }

.newsletter-btn {
  padding: 12px 24px; background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0 4px 4px 0; color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.newsletter-btn:hover { background: var(--accent-hover); }

/* ===== POST PAGE ===== */
.post-header {
  max-width: 720px; margin: 100px auto 0; padding: 0 24px;
}

.post-tag {
  display: inline-block; padding: 3px 10px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'Source Sans 3', sans-serif;
  border-radius: 2px; margin-bottom: 16px;
}

.post-title {
  font-family: var(--font-display-cn);
  font-size: 32px; font-weight: 900;
  line-height: 1.3; margin-bottom: 12px;
  color: var(--text-primary) !important;
  letter-spacing: -0.3px;
}

.post-excerpt {
  font-size: 18px; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 20px;
}

.post-meta {
  font-size: 13px; color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.post-feature-image {
  max-width: 720px; margin: 0 auto 28px;
  padding: 0 24px;
}
.post-feature-image img { width: 100%; display: block; border-radius: 3px; }

.post-content {
  max-width: 720px; margin: 0 auto; padding: 0 24px;
  font-size: 17px; line-height: 1.75; color: var(--text-primary);
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4,
.post-content h5, .post-content h6 {
  color: var(--text-primary) !important;
}

.post-content h1 {
  font-family: var(--font-display-cn); font-size: 26px; font-weight: 900;
  margin: 40px 0 14px; line-height: 1.3;
  padding-top: 20px; border-top: 2px solid var(--border);
}

.post-content h2 {
  font-family: var(--font-display-cn); font-size: 22px; font-weight: 900;
  margin: 36px 0 12px; line-height: 1.35;
  padding-top: 16px; border-top: 1px solid var(--border);
}

.post-content h3 {
  font-family: var(--font-display-cn); font-size: 19px; font-weight: 700;
  margin: 28px 0 10px; line-height: 1.4;
}

.post-content h4 {
  font-family: var(--font-body); font-size: 17px; font-weight: 700;
  margin: 24px 0 8px; line-height: 1.5;
}

.post-content p { margin-bottom: 18px; color: var(--text-primary); }

.post-content strong { font-weight: 700; color: var(--text-primary); }

.post-content blockquote {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 20px;
  margin: 28px 0; color: var(--text-secondary); font-size: 16px; line-height: 1.9;
}
.post-content blockquote p { margin-bottom: 8px; color: var(--text-secondary); }

.post-content ul, .post-content ol { margin: 16px 0 24px 24px; }
.post-content li { margin-bottom: 8px; line-height: 1.8; }

.post-content pre {
  background: var(--code-bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 20px; overflow-x: auto;
  font-family: var(--font-mono); font-size: 14px; line-height: 1.6; margin: 24px 0;
}

.post-content code {
  background: var(--code-bg); padding: 2px 6px; border-radius: 3px;
  font-family: var(--font-mono); font-size: 0.88em;
}
.post-content pre code { background: none; padding: 0; font-size: 14px; }

.post-content img { border-radius: 6px; margin: 28px 0; display: block; }
.post-content figure { margin: 28px 0; }
.post-content figcaption { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 8px; }

.post-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.post-content a:hover { text-decoration-thickness: 2px; }

.post-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

.post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.post-content th, .post-content td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.post-content th { background: var(--bg-card); font-weight: 700; font-size: 14px; }

.post-content .kg-width-wide { max-width: 1000px; margin-left: calc(50% - 500px); margin-right: calc(50% - 500px); }
.post-content .kg-width-full { max-width: none; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.post-content .kg-width-wide img, .post-content .kg-width-full img { width: 100%; }
.post-content .kg-image-card img, .post-content .kg-gallery-image img { border-radius: 6px; }

.post-content .kg-bookmark-card { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; margin: 24px 0; }
.post-content .kg-bookmark-container { display: flex; text-decoration: none; color: var(--text-primary); }
.post-content .kg-bookmark-content { padding: 16px; flex: 1; }
.post-content .kg-bookmark-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.post-content .kg-bookmark-description { font-size: 13px; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-content .kg-bookmark-thumbnail { width: 160px; flex-shrink: 0; }
.post-content .kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; margin: 0; }

/* ===== SHARE BUTTONS ===== */
.post-share {
  max-width: 720px; margin: 36px auto; padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px;
}

.post-share-label {
  font-size: 12px; color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 1px; text-transform: uppercase;
  font-weight: 600;
}

.post-share a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 4px;
  border: 1px solid var(--border-light); color: var(--text-secondary);
  font-size: 14px; transition: all 0.2s;
}
.post-share a:hover { border-color: var(--accent); color: var(--accent); }

/* ===== COMMENTS ===== */
.post-comments {
  max-width: 720px; margin: 0 auto; padding: 0 40px 64px;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 48px;
}

.footer-brand-cn {
  font-family: var(--font-display-cn);
  font-size: 18px; font-weight: 900; letter-spacing: 2px;
}

.footer-brand-en {
  font-family: var(--font-display-en);
  font-size: 11px; font-style: italic;
  color: var(--text-muted); display: block; margin-top: 2px;
}

.footer-desc {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.7; margin-top: 12px; max-width: 260px;
}

.footer-cols { display: flex; gap: 56px; }

.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-secondary);
  font-family: 'Source Sans 3', sans-serif; margin-bottom: 14px;
}

.footer-col a {
  display: block; font-size: 13px; color: var(--text-muted);
  margin-bottom: 9px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-muted);
  font-family: 'Source Sans 3', sans-serif;
  text-align: center; letter-spacing: 0.5px;
}

/* ===== TAG COLORS ===== */
.tag-market { color: var(--tag-market) !important; }
.tag-tech { color: var(--tag-tech) !important; }
.tag-politics { color: var(--tag-politics) !important; }
.tag-opinion { color: var(--tag-opinion) !important; }

/* ===== TAG PAGE ===== */
.tag-header {
  margin-top: 56px; padding: 64px 0 0; text-align: center;
}

.tag-header h1 {
  font-family: var(--font-display-cn);
  font-size: 32px; font-weight: 900; margin-bottom: 8px;
}

.tag-header p {
  font-size: 15px; color: var(--text-secondary);
  max-width: 480px; margin: 0 auto;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid var(--border-light);
  border-radius: 3px; background: none;
  color: var(--text-secondary); font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .picks-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-layout { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar { display: none; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 16px; }
  .mobile-menu-toggle { display: flex; }
  
  .nav-channels {
    display: none;
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    z-index: 999;
  }
  .nav-channels.mobile-nav-open { display: block; }
  .nav-channels ul { flex-direction: column; gap: 0; }
  .nav-channels li { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-channels li:last-child { border-bottom: none; }
  .nav-channels a { font-size: 15px; }
  
  .nav-subscribe { display: none; }
  .nav-lang { display: none; }

  .hero { height: 380px; }
  .hero-content { padding: 20px; }
  .hero-title { font-size: 22px; line-height: 1.4; }
  .hero-excerpt { font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
  .hero-meta { font-size: 11px; gap: 8px; }
  .hero-tag { font-size: 10px; padding: 3px 8px; margin-bottom: 10px; }

  .container { padding: 0 16px; }
  .section { padding: 36px 0; }
  .section-header { margin-bottom: 20px; }
  .section-title { font-size: 18px; }

  .picks-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pick-card { padding: 16px; }
  .pick-num { font-size: 28px; margin-bottom: 8px; }
  .pick-title { font-size: 14px; }

  .article-row { gap: 16px; padding: 16px 0; }
  .article-row-img { width: 110px; height: 75px; }
  .article-row-title { font-size: 15px; }
  .article-row-excerpt { display: none; }
  .article-row-tag { font-size: 9px; margin-bottom: 4px; }

  .specials-grid { grid-template-columns: 1fr; gap: 16px; }
  .special-img { height: 140px; }

  .newsletter-inner { flex-direction: column; text-align: center; gap: 24px; }
  .newsletter-text h2 { font-size: 20px; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-input {
    width: 100%; border-right: 1px solid var(--border-light);
    border-radius: 4px; border-bottom: none;
  }
  .newsletter-btn { border-radius: 4px; padding: 14px; }

  .footer-grid { flex-direction: column; gap: 32px; }
  .footer-cols { flex-wrap: wrap; gap: 24px; }
  .footer-cols > div { min-width: 120px; }
  .footer-bottom { font-size: 10px; }

  .post-header { margin-top: 80px; padding: 0 16px; }
  .post-title { font-size: 24px; }
  .post-excerpt { font-size: 15px; }
  .post-content { padding: 0 16px; font-size: 16px; }
  .post-content h2 { font-size: 22px; }
  .post-share { padding: 20px 16px; }
  .post-comments { padding: 0 16px 40px; }
  .post-feature-image { margin: 0 0 32px; border-radius: 0; }

  .tag-header { padding: 48px 0 0; }
  .tag-header h1 { font-size: 24px; }

  .ticker { padding: 8px 0; }
  .ticker-item { font-size: 11px; }
}

@media (max-width: 420px) {
  .picks-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero { height: 320px; }
  .hero-title { font-size: 20px; }
  .article-row-img { width: 90px; height: 64px; }
  .article-row-title { font-size: 14px; }
  .nav-brand-sub { display: none; }
}
