/* =========================================================
   MarketFreeze — Elite Financial News Theme
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  --ink:      #0D0D0D;
  --ink2:     #3A3A3A;
  --muted:    #787878;
  --rule:     #E2E2E2;
  --surface:  #F7F6F3;
  --paper:    #FDFCFA;
  --accent:   #C8392B;
  --accent2:  #1A3A5C;
  --up:       #1A7A40;
  --down:     #9B1C1C;
  --up-bg:    #E8F7EE;
  --down-bg:  #FEE8E8;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --mono:     'DM Mono', 'Courier New', monospace;
  --max-w:    1200px;
}

html { font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TICKER ─────────────────────────────────────────────── */
#mf-ticker {
  background: var(--accent2);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
  position: relative;
  z-index: 100;
}
#mf-ticker .ticker-track {
  display: inline-block;
  animation: ticker-scroll 35s linear infinite;
}
#mf-ticker .ticker-track:hover { animation-play-state: paused; }
#mf-ticker .t-item { margin: 0 32px; display: inline; }
#mf-ticker .t-item .sym { opacity: 0.65; margin-right: 6px; }
#mf-ticker .t-item .up  { color: #7FE4A0; }
#mf-ticker .t-item .dn  { color: #F4848A; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SITE HEADER ─────────────────────────────────────────── */
#site-header {
  border-bottom: 3px solid var(--ink);
  padding: 0 40px;
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 90;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0 12px;
  gap: 16px;
}
.header-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.site-branding { text-align: center; }
.site-branding .logo {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--ink);
  display: block;
}
.site-branding .logo span { color: var(--accent); }
.site-branding .tagline {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.btn-subscribe {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-subscribe:hover { background: #a32d22; }

/* ── PRIMARY NAV ─────────────────────────────────────────── */
#site-nav {
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 0;
}
#site-nav a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 20px;
  color: var(--ink2);
  border-right: 1px solid var(--rule);
  transition: background 0.12s, color 0.12s;
  display: block;
}
#site-nav a:hover { background: var(--ink); color: #fff; }
#site-nav a.current-menu-item,
#site-nav a.active { background: var(--accent); color: #fff; }

/* ── BREAKING BAR ────────────────────────────────────────── */
#breaking-bar {
  background: var(--accent);
  color: #fff;
  padding: 9px 40px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}
#breaking-bar .label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
#breaking-bar .text {
  font-size: 12px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── PAGE WRAP ───────────────────────────────────────────── */
.mf-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 40px;
}

/* ── HOMEPAGE GRID ───────────────────────────────────────── */
.home-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}

/* ── HERO STORY ──────────────────────────────────────────── */
.hero-story {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 36px;
  margin-bottom: 36px;
}
.cat-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.hero-story h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.hero-story h2 a { transition: color 0.15s; }
.hero-story h2 a:hover { color: var(--accent); }
.hero-dek {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
}
.byline {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.byline .author { color: var(--accent2); font-weight: 500; }
.byline .sep { margin: 0 8px; }

/* Hero featured image */
.hero-thumb {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 22px;
  display: block;
}
.hero-thumb-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(140deg, var(--accent2) 0%, var(--ink) 100%);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.hero-thumb-placeholder svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-thumb-placeholder .img-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 1;
}

/* ── SECONDARY STORIES GRID ──────────────────────────────── */
.secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.story-card {
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}
.story-card.accent { border-top-color: var(--accent); }
.story-card .cat-tag { margin-bottom: 8px; }
.story-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 700;
}
.story-card h3 a:hover { color: var(--accent); }
.story-card p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 10px;
}
.story-card .byline { font-size: 10px; }
.story-card .thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 12px;
}

/* ── OPINION BOX ─────────────────────────────────────────── */
.opinion-box {
  background: var(--accent2);
  color: #fff;
  padding: 24px 26px;
  margin-top: 36px;
}
.opinion-box .q-mark {
  font-family: var(--serif);
  font-size: 48px;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 6px;
}
.opinion-box p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
}
.opinion-box .attr {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar {
  border-left: 1px solid var(--rule);
  padding-left: 40px;
  position: sticky;
  top: 100px;
}
.widget-block { margin-bottom: 36px; }
.widget-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 9px;
  margin-bottom: 16px;
  font-weight: 500;
}

/* Market snapshot rows */
.market-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}
.market-row .sym { font-family: var(--mono); color: var(--ink); }
.market-row .val { font-family: var(--mono); }
.chg {
  font-family: var(--mono);
  font-size: 11px;
  padding: 2px 8px;
  font-weight: 500;
}
.chg.up   { color: var(--up);   background: var(--up-bg); }
.chg.down { color: var(--down); background: var(--down-bg); }

/* FII/DII bars */
.fii-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  margin-top: 8px;
  display: block;
}
.fii-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.fii-bar-wrap {
  flex: 1;
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.fii-bar { height: 100%; border-radius: 2px; }
.fii-bar.buy  { background: var(--up); }
.fii-bar.sell { background: var(--down); }
.fii-val {
  font-family: var(--mono);
  font-size: 11px;
  min-width: 52px;
  text-align: right;
  font-weight: 500;
}
.fii-val.pos { color: var(--up); }
.fii-val.neg { color: var(--down); }
.fii-net-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--ink);
  padding: 8px 0 10px;
  margin-bottom: 8px;
}
.fii-net-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.fii-net-val {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
}
.fii-net-val.pos { color: var(--up); }
.fii-net-val.neg { color: var(--down); }

/* Trending */
.trending-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.trending-num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--rule);
  line-height: 1;
  min-width: 30px;
  flex-shrink: 0;
}
.trending-text h4 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 3px;
}
.trending-text h4 a:hover { color: var(--accent); }
.trending-text span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

/* Newsletter CTA */
.newsletter-box {
  border: 2px solid var(--ink);
  padding: 20px;
}
.newsletter-box .nl-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.newsletter-box p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 14px;
}
.nl-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 13px;
  margin-bottom: 8px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  display: block;
}
.nl-input:focus { border-color: var(--ink); }

/* ── SINGLE POST ─────────────────────────────────────────── */
.single-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}
.article-header { margin-bottom: 28px; }
.article-header .cat-tag { margin-bottom: 12px; }
.article-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.article-dek {
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
}
.article-featured-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-bottom: 28px;
}
.article-content { font-size: 16px; line-height: 1.8; color: var(--ink2); }
.article-content p { margin-bottom: 1.4em; }
.article-content h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 2em 0 0.7em;
  border-top: 2px solid var(--ink);
  padding-top: 0.7em;
}
.article-content h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin: 1.8em 0 0.6em;
}
.article-content strong { color: var(--ink); font-weight: 500; }
.article-content ul, .article-content ol { margin: 0 0 1.4em 1.5em; }
.article-content li { margin-bottom: 0.5em; }
.article-content a { color: var(--accent2); border-bottom: 1px solid var(--rule); }
.article-content a:hover { border-color: var(--accent2); }

/* FII/DII data box inside articles */
.data-box {
  background: var(--surface);
  border-left: 4px solid var(--accent2);
  padding: 18px 22px;
  margin: 28px 0;
  font-family: var(--mono);
  font-size: 13px;
}
.data-box .db-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.data-box .db-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}
.data-box .db-row:last-child { border-bottom: none; }

/* Article tags */
.article-tags { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--rule); display: flex; gap: 8px; flex-wrap: wrap; }
.tag-pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border: 1px solid var(--rule);
  color: var(--muted);
  transition: all 0.15s;
}
.tag-pill:hover { border-color: var(--ink); color: var(--ink); }

/* ── ARCHIVE / CATEGORY ───────────────────────────────────── */
.archive-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 40px;
}
.archive-header {
  border-bottom: 3px solid var(--ink);
  padding-bottom: 16px;
  margin-bottom: 36px;
}
.archive-header h1 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
}
.archive-header p { color: var(--muted); font-size: 14px; margin-top: 6px; }
.post-list { display: flex; flex-direction: column; gap: 0; }
.post-list-item {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.post-list-item:first-child { border-top: 1px solid var(--rule); }
.pli-meta .cat-tag { margin-bottom: 8px; }
.pli-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.pli-title a:hover { color: var(--accent); }
.pli-excerpt { font-size: 14px; color: var(--ink2); font-weight: 300; line-height: 1.6; margin-bottom: 10px; }
.pli-thumb {
  width: 160px;
  height: 100px;
  object-fit: cover;
  display: block;
}
.pli-thumb-placeholder {
  width: 160px;
  height: 100px;
  background: linear-gradient(140deg, var(--accent2), var(--ink));
  display: block;
  flex-shrink: 0;
}

/* ── SITE FOOTER ─────────────────────────────────────────── */
#site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 36px 40px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 11px; letter-spacing: 0.06em; margin-top: 6px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }

/* ── PAGINATION ──────────────────────────────────────────── */
ul.page-numbers, .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 24px 0;
  justify-content: center;
  align-items: center;
}
.pagination .page-numbers {
  font-family: var(--mono);
  font-size: 12px;
  padding: 7px 14px;
  border: 1px solid var(--rule);
  color: var(--ink);
  transition: all 0.12s;
}
.pagination .page-numbers.current,
ul.page-numbers .page-numbers:hover, .pagination .page-numbers:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .home-grid, .single-wrap { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { border-left: none; border-top: 2px solid var(--ink); padding-left: 0; padding-top: 32px; position: static; }
  .secondary-grid { grid-template-columns: 1fr; }
  .hero-story h2 { font-size: 28px; }
  .article-title { font-size: 28px; }
  #site-header { padding: 0 20px; }
  .mf-wrap, .single-wrap, .archive-wrap { padding: 24px 20px; }
  #site-nav { overflow-x: auto; }
  .post-list-item { grid-template-columns: 1fr; }
  .pli-thumb, .pli-thumb-placeholder { width: 100%; height: 160px; }
}

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink);
}
.legal-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 12px;
}
.legal-page h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 10px;
  color: var(--ink);
}
.legal-page h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--muted);
}
.legal-page p { margin-bottom: 14px; }
.legal-page ul { margin: 10px 0 16px 20px; padding: 0; }
.legal-page ul li { margin-bottom: 6px; }
.legal-page a { color: var(--accent2); text-decoration: underline; }
.legal-page a:hover { opacity: 0.8; }
.legal-lead {
  font-size: 1.05rem;
  color: var(--muted);
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 28px;
}
.legal-updated {
  margin-top: 48px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 13px;
}
.legal-table th {
  background: var(--accent);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
}
.legal-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: top;
}
.legal-table tr:nth-child(even) td { background: #f8f8f8; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-top: 24px;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-wrap h2 { margin-top: 0; }
.mf-contact-form .form-group { margin-bottom: 16px; }
.mf-contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--ink);
}
.mf-contact-form input[type="text"],
.mf-contact-form input[type="email"],
.mf-contact-form select,
.mf-contact-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.mf-contact-form input:focus,
.mf-contact-form select:focus,
.mf-contact-form textarea:focus { outline: none; border-color: var(--accent); }
.mf-contact-form .form-check { display: flex; align-items: flex-start; gap: 10px; }
.mf-contact-form .form-check input[type="checkbox"] { width: auto; margin-top: 3px; flex-shrink: 0; }
.mf-contact-form .form-check label { font-size: 12px; font-weight: 400; color: var(--muted); }
.btn-contact {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 11px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}
.btn-contact:hover { opacity: 0.88; }
.btn-contact:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 480px) {
  /* Ticker */
  #mf-ticker { font-size: 10px; }

  /* Header */
  .header-inner { grid-template-columns: 1fr auto; gap: 8px; padding: 12px 0; }
  .header-meta { display: none; }
  .site-branding .logo { font-size: 32px; }
  .site-branding .tagline { font-size: 9px; letter-spacing: 0.15em; }
  .btn-subscribe { padding: 6px 12px; font-size: 12px; }

  /* Nav */
  #site-nav { gap: 0; }
  #site-nav a { padding: 10px 10px; font-size: 11px; }

  /* Breaking bar */
  #breaking-bar { font-size: 11px; padding: 6px 12px; }

  /* Hero */
  .hero-story h2 { font-size: 22px; line-height: 1.3; }
  .hero-thumb { height: 200px; object-fit: cover; }

  /* Article */
  .article-title { font-size: 22px; }
  .article-body { font-size: 15px; line-height: 1.7; }
  .article-body h2 { font-size: 18px; }
  .article-body h3 { font-size: 16px; }

  /* Sidebar */
  .sidebar { padding-top: 24px; }
  .widget-title { font-size: 11px; }
  .market-row { font-size: 13px; padding: 6px 0; }

  /* Post list */
  .secondary-grid { grid-template-columns: 1fr; gap: 16px; }
  .post-list-item { gap: 12px; padding: 12px 0; }
  .pli-thumb, .pli-thumb-placeholder { height: 120px; }

  /* Pagination */
  ul.page-numbers, .pagination { gap: 4px; }
  .page-numbers { padding: 5px 10px; font-size: 11px; }

  /* Newsletter */
  .newsletter-box { padding: 20px 16px; }
  .nl-title { font-size: 16px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 8px; }
}
