/* ============================================================
   PB39.NET — Main Stylesheet
   Rajdhani (body/headlines) + Share Tech Mono (labels/meta)
   Day/Night via html[data-theme] attribute
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
html[data-theme="light"] {
  --bg:       #f4f1ec;
  --surface:  #ffffff;
  --rim:      #e8e4dc;
  --border:   #ccc8bf;
  --text:     #0e0d0b;
  --sub:      #5a564f;
  --red:      #e03228;
  --green:    #1a7a3c;
  --day:      #e8a800;
  --ngt:      #4a7fc1;
}
html[data-theme="dark"] {
  --bg:       #0e0c09;
  --surface:  #161310;
  --rim:      #1e1b16;
  --border:   #2c2820;
  --text:     #eae5db;
  --sub:      #8a857c;
  --red:      #e03228;
  --green:    #2dba5c;
  --day:      #e8a800;
  --ngt:      #4a7fc1;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100vh; }
body {
  font-family: 'Rajdhani', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.35s ease, color 0.35s ease;
  font-size: 16px;
  line-height: 1.5;
}
a    { color: inherit; text-decoration: none; }
img  { display: block; max-width: 100%; }
button { cursor: pointer; }

/* ── MASTHEAD ────────────────────────────────────────────────── */
.masthead {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 18px 0 0;
  transition: background-color 0.35s, border-color 0.35s;
}
.mh-inner   { padding: 0 28px; }
.mh-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
}
.mh-left  { display: flex; align-items: center; }
.mh-right { display: flex; justify-content: flex-end; align-items: flex-end; flex-direction: column; gap: 2px; }

/* Live clock */
.live-clock { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: .04em; color: var(--text); line-height: 1; transition: color 0.35s; }
.live-tz    { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--sub); text-align: right; }

/* Theme toggle */
.theme-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface); color: var(--sub);
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s, background .35s;
}
.theme-btn:hover { border-color: var(--red); color: var(--red); }

/* ── LOGO ────────────────────────────────────────────────────── */
.logo { display: flex; flex-direction: column; align-items: center; cursor: pointer; }
.logo-circles { display: flex; align-items: center; justify-content: center; margin-bottom: 3px; }
.lc-red { width: 36px; height: 36px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.lc-blk { width: 36px; height: 36px; border-radius: 50%; border: 5px solid var(--text); margin-left: -13px; background: transparent; flex-shrink: 0; transition: border-color 0.35s; }
.logo-wordmark { display: flex; flex-direction: column; align-items: center; }
.l-word { font-family: 'Rajdhani', sans-serif; font-size: clamp(22px, 3.5vw, 36px); letter-spacing: .14em; text-transform: uppercase; line-height: 1; color: var(--text); white-space: nowrap; transition: color 0.35s; }
.l-word .thin { font-weight: 300; }
.l-word .bold { font-weight: 700; }
.l-news-sub { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: clamp(10px, 1.4vw, 15px); letter-spacing: .45em; text-transform: uppercase; color: var(--red); margin-top: 1px; text-align: center; }

/* ── DATE STRIP ──────────────────────────────────────────────── */
.mh-date-strip {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  transition: border-color 0.35s;
}
.date-day  { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--red); animation: pulse 4s ease-in-out infinite; }
.date-sep  { width: 1px; height: 12px; background: var(--border); }
.date-full { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--sub); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── MARKETS BAR ─────────────────────────────────────────────── */
.markets-bar {
  display: flex; align-items: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
  width: 100%;
  transition: background 0.35s, border-color 0.35s;
}
.markets-bar::-webkit-scrollbar { display: none; }
.mkt-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  border-right: 1px solid var(--border);
  white-space: nowrap; flex-shrink: 0;
  transition: border-color 0.35s;
}
.mkt-item:last-child { border-right: none; }
.mkt-name  { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--sub); }
.mkt-price { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); transition: color 0.35s; }
.mkt-chg   { font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 600; }
.mkt-chg.up   { color: var(--green); }
.mkt-chg.down { color: var(--red); }

/* ── WEATHER + CLOCKS ────────────────────────────────────────── */
.mh-util {
  display: flex; align-items: center;
  border-top: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
  padding: 0 28px;
  transition: border-color 0.35s;
}
.mh-util::-webkit-scrollbar { display: none; }
.weather {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 0;
  border-right: 1px solid var(--border); flex-shrink: 0;
}
.wx-icon  { font-size: 1.1rem; line-height: 1; }
.wx-city  { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--sub); }
.wx-temp  { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); transition: color 0.35s; }
.wx-desc  { font-family: 'Rajdhani', sans-serif; font-style: italic; font-size: 13px; color: var(--sub); }
.wx-hl    { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--sub); }
.wx-div   { width: 1px; height: 16px; background: var(--border); flex-shrink: 0; }
.cf-wrap  { display: flex; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; }
.cf-btn   { font-family: 'Share Tech Mono', monospace; font-size: 10px; padding: 3px 7px; background: none; border: none; color: var(--sub); transition: all .15s; }
.cf-btn.on { background: var(--red); color: #fff; }
.clocks   { display: flex; align-items: center; padding-left: 14px; flex: 1; }
.ck       { display: flex; align-items: center; gap: 5px; padding: 7px 12px; border-right: 1px solid var(--border); white-space: nowrap; flex-shrink: 0; }
.ck:last-child { border-right: none; }
.ck-dot   { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.ck-dot.d { background: var(--day); }
.ck-dot.n { background: var(--ngt); }
.ck-city  { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--sub); }
.ck-time  { font-family: 'Share Tech Mono', monospace; font-size: 12px; font-weight: 500; color: var(--text); transition: color 0.35s; }

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker { background: var(--red); height: 30px; display: flex; align-items: center; overflow: hidden; }
.tk-lbl {
  background: rgba(0,0,0,.2); padding: 0 13px; height: 100%;
  display: flex; align-items: center;
  font-family: 'Share Tech Mono', monospace; font-size: 10px;
  letter-spacing: .25em; text-transform: uppercase; color: #fff; flex-shrink: 0;
}
.tk-scroll { overflow: hidden; flex: 1; }
.tk-track  {
  display: flex; gap: 52px; padding-left: 20px;
  white-space: nowrap;
  animation: tkscroll var(--ticker-speed, 30s) linear infinite;
}
.tk-track span { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 500; color: #fff; letter-spacing: .03em; }
.tk-track span::before { content: '◆  '; font-size: 8px; opacity: .7; }
@keyframes tkscroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.speed-wrap  { display: flex; align-items: center; gap: 6px; padding: 0 10px; flex-shrink: 0; border-left: 1px solid rgba(255,255,255,.25); }
.speed-label { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: rgba(255,255,255,.7); letter-spacing: .1em; text-transform: uppercase; }
input[type=range].speed-range { width: 64px; accent-color: #fff; cursor: pointer; }

/* ── CAT BAR ─────────────────────────────────────────────────── */
.cat-bar {
  display: flex; overflow-x: auto;
  border-bottom: 1px solid var(--border);
  padding: 0 28px; scrollbar-width: none;
  background: var(--bg);
  transition: background 0.35s, border-color 0.35s;
}
.cat-bar::-webkit-scrollbar { display: none; }
.cat-btn {
  font-family: 'Share Tech Mono', monospace; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 13px; color: var(--sub);
  border-bottom: 2px solid transparent; white-space: nowrap;
  transition: all .15s; background: none;
  border-top: none; border-left: none; border-right: none;
}
.cat-btn:hover  { color: var(--text); }
.cat-btn.active { color: var(--red); border-bottom-color: var(--red); }

/* ── PAGE GRID ───────────────────────────────────────────────── */
.page-grid {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  max-width: 1380px; margin: 0 auto; padding: 0 28px;
}
.col-left   { border-right: 1px solid var(--border); padding: 22px 22px 22px 0; transition: border-color 0.35s; }
.col-centre { padding: 22px; border-right: 1px solid var(--border); display: flex; flex-direction: column; transition: border-color 0.35s; }
.col-right  { padding: 22px 0 22px 22px; }

/* ── SECTION LABEL ───────────────────────────────────────────── */
.sec-label {
  font-family: 'Share Tech Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--sub); padding-bottom: 7px;
  border-bottom: 2px solid var(--text); margin-bottom: 14px;
  transition: border-color 0.35s, color 0.35s;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); cursor: pointer; transition: border-color 0.35s; }
.hero:hover .hero-hl { color: var(--red); }
.cat-tag  { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 6px; }
.hero-hl  { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 700; line-height: 1.2; margin-bottom: 11px; color: var(--text); transition: color .15s; }
.hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 11px; }
.hero-deck{ font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 400; line-height: 1.65; color: var(--sub); margin-bottom: 9px; transition: color 0.35s; }
.meta     { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--sub); display: flex; align-items: center; gap: 7px; letter-spacing: .04em; flex-wrap: wrap; }
.dot      { color: var(--border); }

/* ── SUB GRID ────────────────────────────────────────────────── */
.sub-grid { display: grid; grid-template-columns: 1fr 1fr; }
.sub-art  { padding: 14px; cursor: pointer; transition: background .15s; }
.sub-art:hover { background: var(--rim); }
.sub-art:hover .sub-hl { color: var(--red); }
.sub-hl   { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; line-height: 1.25; margin-bottom: 5px; color: var(--text); transition: color .15s; }
.sub-deck { font-family: 'Rajdhani', sans-serif; font-size: 13px; line-height: 1.55; color: var(--sub); transition: color 0.35s; }

/* ── SIDEBAR ARTICLES ────────────────────────────────────────── */
.side-art { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--border); cursor: pointer; transition: border-color 0.35s; }
.side-art:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.side-art:hover .side-hl { color: var(--red); }
.side-hl  { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; line-height: 1.25; margin-bottom: 4px; color: var(--text); transition: color .15s; }
.side-deck{ font-family: 'Rajdhani', sans-serif; font-size: 13px; line-height: 1.55; color: var(--sub); transition: color 0.35s; }

/* ── MOST READ ───────────────────────────────────────────────── */
.rank-item  { display: flex; gap: 10px; margin-bottom: 14px; cursor: pointer; transition: opacity .15s; }
.rank-item:hover { opacity: .65; }
.rank-num   { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: var(--border); line-height: 1; width: 28px; flex-shrink: 0; transition: color 0.35s; }
.rank-title { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 600; line-height: 1.25; color: var(--text); transition: color 0.35s; }
.rank-ctx   { font-family: 'Rajdhani', sans-serif; font-size: 12px; font-weight: 400; line-height: 1.45; color: var(--sub); margin-top: 2px; }
.rank-cat   { font-family: 'Share Tech Mono', monospace; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-top: 3px; }

/* ── INDIA HEADER ────────────────────────────────────────────── */
.india-hdr { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; padding-bottom: 7px; border-bottom: 2px solid #FF9933; }
.flag-bar  { display: flex; flex-direction: column; gap: 2px; }
.flag-s    { width: 3px; height: 5px; border-radius: 1px; }

/* ── DIVIDER ─────────────────────────────────────────────────── */
.div-line { height: 1px; background: var(--border); margin: 13px 0; transition: background 0.35s; }

/* ── ARTICLE PAGE ────────────────────────────────────────────── */
.article-wrap { max-width: 780px; margin: 0 auto; padding: 32px 28px 64px; }
.article-wrap .cat-tag { font-size: 11px; margin-bottom: 10px; }
.article-title { font-family: 'Rajdhani', sans-serif; font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.15; margin-bottom: 14px; color: var(--text); }
.article-deck  { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 400; line-height: 1.6; color: var(--sub); margin-bottom: 18px; border-left: 3px solid var(--red); padding-left: 14px; }
.article-meta  { margin-bottom: 22px; }
.article-img   { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 24px; }
.article-body  { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 400; line-height: 1.8; color: var(--text); }
.article-body p          { margin-bottom: 1.4em; }
.article-body h2         { font-size: 1.4rem; font-weight: 700; margin: 2em 0 .6em; }
.article-body h3         { font-size: 1.2rem; font-weight: 700; margin: 1.6em 0 .5em; }
.article-body blockquote { border-left: 3px solid var(--red); padding-left: 16px; color: var(--sub); font-style: italic; margin: 1.5em 0; }
.article-body ul, .article-body ol { padding-left: 1.5em; margin-bottom: 1.4em; }
.article-body li         { margin-bottom: .4em; }
.article-body a          { color: var(--red); text-decoration: underline; }

/* TTS button */
.tts-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 3px;
  background: var(--surface); color: var(--sub);
  font-family: 'Share Tech Mono', monospace; font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  margin-top: 10px; transition: all .2s;
}
.tts-btn:hover   { border-color: var(--red); color: var(--red); }
.tts-btn.playing { border-color: var(--green); color: var(--green); }

/* Lang switcher on article */
.lang-switch { display: flex; gap: 6px; margin-top: 16px; flex-wrap: wrap; }
.lang-sw-btn {
  font-family: 'Share Tech Mono', monospace; font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid var(--border); border-radius: 3px;
  background: none; color: var(--sub); transition: all .15s;
}
.lang-sw-btn:hover  { border-color: var(--red); color: var(--red); }
.lang-sw-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ── LANGUAGE POPUP ──────────────────────────────────────────── */
.lang-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.lang-overlay.visible { opacity: 1; pointer-events: all; }
.lang-popup {
  background: var(--surface); border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 6px; padding: 22px 24px;
  width: 100%; max-width: 340px;
  transform: translateY(20px); transition: transform .25s;
}
.lang-overlay.visible .lang-popup { transform: translateY(0); }
.popup-head   { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.popup-title  { font-family: 'Rajdhani', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); }
.popup-close  { background: none; border: none; color: var(--sub); font-size: 18px; line-height: 1; padding: 0; transition: color .15s; }
.popup-close:hover { color: var(--red); }
.popup-sub    { font-family: 'Rajdhani', sans-serif; font-size: 14px; color: var(--sub); margin-bottom: 14px; line-height: 1.5; }
.popup-detect { display: flex; align-items: center; gap: 7px; font-family: 'Rajdhani', sans-serif; font-size: 13px; color: var(--sub); margin-bottom: 14px; padding: 6px 10px; background: var(--rim); border-radius: 3px; }
.detect-dot   { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.lang-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.lang-opt     {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border: 1px solid var(--border); border-radius: 4px;
  cursor: pointer; transition: border-color .15s, background .15s;
  background: var(--rim);
}
.lang-opt:hover  { border-color: var(--red); }
.lang-opt.active { border: 2px solid var(--red); background: var(--surface); }
.lang-native  { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); }
.lang-eng     { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--sub); margin-top: 1px; letter-spacing: .06em; }
.lang-tick    { margin-left: auto; color: var(--red); font-size: 14px; display: none; }
.lang-opt.active .lang-tick { display: block; }
.popup-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.popup-remember { display: flex; align-items: center; gap: 6px; font-family: 'Rajdhani', sans-serif; font-size: 13px; color: var(--sub); cursor: pointer; }
.popup-go {
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 600;
  padding: 8px 20px; background: var(--red); color: #fff;
  border: none; border-radius: 3px; transition: opacity .15s;
}
.popup-go:hover { opacity: .85; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--surface); border-top: 3px solid var(--red);
  margin-top: 32px; padding: 22px 28px 16px;
  transition: background 0.35s;
}
.ft-top    { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 16px; }
.ft-logo   { display: flex; flex-direction: column; align-items: flex-start; }
.ft-circles{ display: flex; align-items: center; margin-bottom: 4px; }
.ftc-r     { width: 14px; height: 14px; border-radius: 50%; background: var(--red); }
.ftc-b     { width: 14px; height: 14px; border-radius: 50%; border: 2.5px solid var(--text); margin-left: -5px; background: transparent; transition: border-color 0.35s; }
.ft-name   { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text); transition: color 0.35s; }
.ft-news   { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: .45em; text-transform: uppercase; color: var(--red); margin-top: 2px; }
.ft-tag    { font-family: 'Rajdhani', sans-serif; font-style: italic; font-size: 13px; color: var(--sub); margin-top: 5px; }
.ft-links  { display: flex; gap: 18px; flex-wrap: wrap; padding-top: 4px; }
.ft-link   { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--sub); transition: color .15s; }
.ft-link:hover { color: var(--red); }
.ft-bottom { border-top: 1px solid var(--border); padding-top: 12px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; transition: border-color 0.35s; }
.ft-copy   { font-family: 'Rajdhani', sans-serif; font-size: 13px; color: var(--sub); }
.ft-copy strong { font-weight: 700; color: var(--text); }
.ft-legal  { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--sub); }

/* ── 404 ─────────────────────────────────────────────────────── */
.not-found { text-align: center; padding: 80px 20px; }
.not-found-num { font-family: 'Rajdhani', sans-serif; font-size: 6rem; font-weight: 700; color: var(--border); line-height: 1; }
.not-found h1  { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; margin: 12px 0 8px; }
.not-found p   { color: var(--sub); margin-bottom: 24px; }
.not-found a   { font-family: 'Share Tech Mono', monospace; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .page-grid { grid-template-columns: 1fr; }
  .col-left  { border-right: none; padding: 18px 0; border-top: 1px solid var(--border); }
  .col-centre{ border-right: none; padding: 18px 0; }
  .col-right { padding: 18px 0; border-top: 1px solid var(--border); }
  .sub-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mh-inner  { padding: 0 14px; }
  .mh-util   { padding: 0 14px; }
  .page-grid { padding: 0 14px; }
  .cat-bar   { padding: 0 14px; }
  .footer    { padding: 18px 14px 12px; }
  .live-clock{ font-size: 17px; }
  .mh-top    { gap: 8px; }
  .article-wrap { padding: 20px 14px 40px; }
}
