/*
Theme Name: TOI Lite
Theme URI: https://currentplus.in
Author: CurrentPlus
Description: Lightweight English news theme inspired by Times of India
Version: 2.0
Text Domain: toi-lite
*/

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

:root {
  --red: #e2001a;
  --dark: #1a1a1a;
  --gray: #555;
  --light-gray: #f5f5f5;
  --border: #e0e0e0;
  --white: #fff;
  --font: 'Helvetica Neue', Arial, sans-serif;
}

body { font-family: var(--font); font-size: 14px; color: var(--dark); background: #fff; line-height: 1.5; overflow-x: hidden; }
html { overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 12px; }

/* ===== TOP BAR - HIDDEN ===== */
.top-bar { display: none !important; }

/* ===== HEADER ===== */
.site-header {
  border-bottom: 3px solid var(--red);
  padding: 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  min-height: 42px;
}
.header-left { display: flex; align-items: center; width: 40px; }
.site-logo { flex: 1; display: flex; justify-content: center; align-items: center; }
.site-logo-img { max-height: 22px; width: auto; display: block; }
.site-logo a { display: block; line-height: 1; }
.custom-logo { max-height: 22px; width: auto; }
.header-actions { display: flex; align-items: center; width: 40px; justify-content: flex-end; }

/* Menu toggle */
.menu-toggle {
  background: none; border: none; cursor: pointer;
  padding: 4px; color: var(--dark);
  display: flex; align-items: center;
}
.menu-toggle:hover { color: var(--red); }

/* Search button */
.header-icon-btn {
  background: none; border: none; cursor: pointer;
  padding: 4px; color: var(--dark);
  display: flex; align-items: center;
}
.header-icon-btn:hover { color: var(--red); }

/* Search bar */
.header-search-bar { padding: 8px 0; border-top: 1px solid var(--border); }
.header-search-bar .search-form { display: flex; gap: 6px; }
.header-search-bar input[type="search"] {
  flex: 1; padding: 7px 10px;
  border: 1px solid var(--border); font-size: 13px;
  border-radius: 2px; outline: none;
}
.header-search-bar .search-submit {
  background: var(--red); color: #fff; border: none;
  padding: 7px 14px; font-size: 13px; cursor: pointer; border-radius: 2px;
}

/* ===== MAIN NAV - TOI STYLE ===== */
.main-nav {
  background: #fff;
  border-top: 1px solid var(--border);
  display: block !important;
}
.main-nav ul {
  display: flex !important;
  flex-direction: row !important;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: 0;
}
.main-nav ul::-webkit-scrollbar { display: none; }
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ===== HOMEPAGE LAYOUT ===== */
.site-main { padding: 12px 0; }
.content-area {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .content-area { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

/* ===== HERO SECTION ===== */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-side { display: none; }
}
.hero-main .post-thumb img { width: 100%; border-radius: 2px; }
.hero-main .post-cat { margin: 8px 0 4px; }
.hero-main .post-title { font-size: 20px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.hero-main .post-title a:hover { color: var(--red); }
.hero-main .post-excerpt { font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.hero-main .post-meta { font-size: 11px; color: #999; }

.hero-side { display: flex; flex-direction: column; gap: 0; }
.hero-side-item { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; align-items: flex-start; }
.hero-side-item img { width: 70px; height: 52px; object-fit: cover; flex-shrink: 0; border-radius: 2px; }
.hero-side-item .item-cat { font-size: 10px; color: var(--red); font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.hero-side-item .item-title { font-size: 12px; font-weight: 700; line-height: 1.35; }
.hero-side-item .item-title a:hover { color: var(--red); }

/* ===== CATEGORY SECTIONS ===== */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  border-left: 4px solid var(--red);
  padding-left: 8px;
  line-height: 1;
}
.section-heading .see-all { font-size: 12px; color: var(--red); }
.section-heading .see-all:hover { text-decoration: underline; }

.section-bhaskar { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.bhaskar-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .bhaskar-inner { grid-template-columns: 1fr; } }

.bhaskar-left .post-thumb img { width: 100%; border-radius: 2px; margin-bottom: 8px; }
.bhaskar-left .post-cat { margin-bottom: 4px; }
.bhaskar-left .post-title { font-size: 15px; font-weight: 700; line-height: 1.4; margin: 6px 0 4px; }
.bhaskar-left .post-title a:hover { color: var(--red); }
.bhaskar-left .post-excerpt { font-size: 12px; color: var(--gray); }

.bhaskar-right { display: flex; flex-direction: column; gap: 0; }

/* ===== POST LIST ITEMS ===== */
.post-list-item {
  display: flex; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.post-list-item:last-child { border-bottom: none; }
.post-list-item img { width: 80px; height: 58px; object-fit: cover; flex-shrink: 0; border-radius: 2px; }
.post-list-item .item-cat { font-size: 10px; color: var(--red); font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.post-list-item .item-title { font-size: 13px; font-weight: 700; line-height: 1.35; }
.post-list-item .item-title a:hover { color: var(--red); }
.post-list-item .item-meta { font-size: 11px; color: #999; margin-top: 3px; }

/* ===== CARD CAT LABEL ===== */
.card-cat a, .card-cat {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  color: var(--red); text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ===== SIDEBAR ===== */
.sidebar-widget { margin-bottom: 18px; }
.widget-title {
  font-size: 15px; font-weight: 700;
  border-left: 4px solid var(--red);
  padding-left: 8px; margin-bottom: 10px;
  color: var(--dark);
}
.trending-list li {
  display: flex; gap: 8px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; font-weight: 600; align-items: flex-start;
}
.trending-list li:last-child { border-bottom: none; }
.trending-num { font-size: 16px; font-weight: 900; color: #ddd; flex-shrink: 0; line-height: 1.2; width: 20px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-cloud a {
  background: var(--light-gray); border: 1px solid var(--border);
  padding: 3px 9px; font-size: 11px; color: var(--dark); border-radius: 2px;
}
.tag-cloud a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Hide default WP sidebar widgets styling */
.sidebar .widget { margin-bottom: 18px; }
.sidebar .widget h2.wp-block-heading,
.sidebar .widget-title-wrap,
.sidebar .widget > h2 { 
  font-size: 15px; font-weight: 700;
  border-left: 4px solid var(--red);
  padding-left: 8px; margin-bottom: 10px;
}
.sidebar ul li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.sidebar ul li:last-child { border-bottom: none; }

/* ===== SINGLE POST ===== */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
  padding: 14px 0;
}
/* CRITICAL: prevents grid child from overflowing its column width */
.single-main-col { min-width: 0; overflow: hidden; }
.single-post-wrap { max-width: 100%; word-break: break-word; }
@media (max-width: 768px) {
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { display: none; }
}

.single-cat-label { margin-bottom: 8px; }
.single-cat-label a {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; text-transform: uppercase; letter-spacing: 0.5px;
  border-radius: 1px;
}

.single-entry-title {
  font-size: 22px; font-weight: 700;
  line-height: 1.35; color: var(--dark); margin-bottom: 10px;
}
@media (max-width: 600px) { .single-entry-title { font-size: 19px; } }

.single-meta-bar {
  font-size: 12px; color: #888;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7px 0; margin-bottom: 12px;
  display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: center;
}
.single-meta-author { font-weight: 600; color: #555; }
.single-meta-date { color: #999; }

/* Share buttons */
.single-share-bar {
  display: flex; align-items: center;
  gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.single-share-label { font-size: 12px; color: #666; font-weight: 600; }
.single-share-bottom {
  margin-top: 20px; margin-bottom: 0;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.shr-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; font-size: 12px; font-weight: 600;
  border-radius: 3px; color: #fff; text-decoration: none;
}
.shr-wa { background: #25D366; }
.shr-fb { background: #1877F2; }
.shr-tw { background: #000; }

/* Featured image */
.single-featured-img { margin-bottom: 14px; }
.single-featured-img img { width: 100%; border-radius: 2px; }
.single-img-caption { font-size: 11px; color: #999; padding: 5px 0 0; font-style: italic; }

/* Article body */
.single-entry-content {
  font-size: 15px; line-height: 1.85;
  color: #222; margin-bottom: 20px;
}
.single-entry-content p { margin-bottom: 15px; }
.single-entry-content h2 { font-size: 19px; font-weight: 700; margin: 20px 0 10px; }
.single-entry-content h3 { font-size: 17px; font-weight: 700; margin: 18px 0 8px; }
.single-entry-content a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.single-entry-content blockquote {
  border-left: 4px solid var(--red); padding: 10px 16px;
  background: var(--light-gray); font-style: italic; margin: 16px 0;
}
.single-entry-content ul { list-style: disc; padding-left: 20px; margin-bottom: 15px; }
.single-entry-content ol { list-style: decimal; padding-left: 20px; margin-bottom: 15px; }

/* Tags */
.single-entry-tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border);
}
.single-tag-label { font-size: 12px; font-weight: 700; color: #555; }
.single-tag-pill {
  background: var(--light-gray); border: 1px solid var(--border);
  padding: 3px 10px; font-size: 11px; color: var(--dark); border-radius: 20px;
}
.single-tag-pill:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Related posts */
.single-related { margin-top: 24px; }
.single-related-heading h2 {
  font-size: 15px; font-weight: 700;
  border-left: 4px solid var(--red); padding-left: 8px; margin-bottom: 12px;
}
.single-related-item {
  display: flex; gap: 10px; padding: 10px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.single-related-thumb { flex-shrink: 0; width: 90px; height: 65px; overflow: hidden; border-radius: 2px; }
.single-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.single-related-text { flex: 1; }
.single-related-title {
  font-size: 13px; font-weight: 700; line-height: 1.4;
  color: var(--dark); display: block; margin-top: 4px;
}
.single-related-title:hover { color: var(--red); }
.single-sidebar { padding-top: 4px; }

/* ===== COMMENTS ===== */
.comment-respond { margin-top: 24px; padding-top: 16px; border-top: 2px solid var(--border); }
.comment-reply-title { font-size: 16px; font-weight: 700; margin-bottom: 14px; border-left: 4px solid var(--red); padding-left: 8px; }
.comment-form label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 4px; color: #555; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%; padding: 8px 10px; border: 1px solid var(--border);
  border-radius: 2px; font-size: 13px; margin-bottom: 12px;
  font-family: var(--font);
}
.comment-form textarea { min-height: 100px; resize: vertical; }
.comment-form .submit {
  background: var(--red); color: #fff; border: none;
  padding: 8px 20px; font-size: 13px; font-weight: 600;
  border-radius: 2px; cursor: pointer;
}

/* ===== ARCHIVE PAGE ===== */
.archive-wrap { padding: 14px 0; }
.archive-title { font-size: 20px; font-weight: 700; margin-bottom: 16px; border-left: 4px solid var(--red); padding-left: 10px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: #ccc; margin-top: 30px; }
.footer-top-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; padding: 18px 0 14px;
  border-bottom: 1px solid #333;
}
.footer-brand { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: #aaa; font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 12px 0; font-size: 12px; color: #777; text-align: center; }

/* ===== EPAPER BTN (if needed later) ===== */
.epaper-btn {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--red); color: var(--red);
  font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: 3px; text-decoration: none; white-space: nowrap;
}
.epaper-btn:hover { background: var(--red); color: #fff; }

/* ===== AD BOX (placeholder, no actual ads) ===== */
.ad-box { display: none !important; }
.inline-ad { display: none !important; }
.sidebar .ad-box { display: none !important; }


/* ============================================================
   DRAWER MENU
   ============================================================ */
.drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 998;
}
.drawer-overlay.show { display: block; }

.drawer-menu {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 290px; max-width: 88vw;
  background: #fff; z-index: 999;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
  box-shadow: 2px 0 16px rgba(0,0,0,0.12);
}
.drawer-menu.open { transform: translateX(0); }

.drawer-top {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 2px solid var(--red);
  min-height: 52px;
}
.drawer-site-name a,
.drawer-logo-text {
  font-size: 16px; font-weight: 700; color: var(--dark);
  text-decoration: none; letter-spacing: 0.3px;
}
.drawer-site-name img { max-height: 22px; width: auto; }
.drawer-close {
  background: none; border: none; cursor: pointer;
  color: #666; padding: 4px; flex-shrink: 0;
}
.drawer-close:hover { color: var(--red); }

.drawer-edition {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: #f8f8f8;
  border-bottom: 1px solid #eee; font-size: 12px; color: #555;
}
.drawer-edition-label { font-weight: 700; color: #333; }
.drawer-edition-flag,
.drawer-edition-lang {
  border: 1px solid #ddd; border-radius: 3px;
  padding: 2px 7px; background: #fff; font-size: 12px;
}

.drawer-nav { flex: 1; }
.drawer-nav ul { list-style: none; padding: 0; margin: 0; }
.drawer-nav ul li a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; font-size: 14px; font-weight: 500;
  color: #1a1a1a; border-bottom: 1px solid #f2f2f2;
  text-decoration: none; transition: background .15s, color .15s;
}
.drawer-nav ul li a:hover { background: #fdf0f0; color: var(--red); }
.drawer-icon { color: #777; display: flex; align-items: center; flex-shrink: 0; }
.drawer-nav ul li a:hover .drawer-icon { color: var(--red); }

.drawer-social { padding: 16px; border-top: 1px solid #eee; }
.drawer-social-label {
  font-size: 11px; font-weight: 600; color: #888;
  text-align: center; margin-bottom: 10px; letter-spacing: 0.5px;
}
.drawer-social-icons { display: flex; justify-content: center; gap: 8px; }
.dsoc-btn {
  width: 38px; height: 38px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
}
.dsoc-gnews { background: #4285F4; }
.dsoc-fb    { background: #1877F2; }
.dsoc-tw    { background: #000; }
.dsoc-yt    { background: #FF0000; }
.dsoc-tg    { background: #2CA5E0; }


/* ============================================================
   SEARCH PAGE — full screen TOI style
   ============================================================ */
.search-page-fullscreen { padding: 0; min-height: 100vh; }

.search-page-topbar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: #fff; position: sticky; top: 0; z-index: 50;
}
.search-back-btn {
  color: #333; display: flex; align-items: center;
  flex-shrink: 0; padding: 4px;
  text-decoration: none; background: none; border: none; cursor: pointer;
}
.search-back-btn:hover { color: var(--red); }
.search-page-input-wrap { flex: 1; }
.search-page-input-wrap .search-form { display: flex; width: 100%; }
.search-page-input-wrap .search-field {
  flex: 1; padding: 9px 12px;
  border: 1.5px solid #ddd; border-radius: 4px 0 0 4px;
  font-size: 14px; outline: none; color: #333;
}
.search-page-input-wrap .search-field:focus { border-color: var(--red); }
.search-page-input-wrap .search-field::placeholder { color: #aaa; }
.search-page-input-wrap .search-submit {
  background: var(--red); color: #fff; border: none;
  padding: 9px 14px; cursor: pointer; border-radius: 0 4px 4px 0;
  font-size: 13px; font-weight: 600;
}

/* Trending section on search page */
.search-page-trending { padding: 12px 14px 0; }
.spt-header {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #777;
  letter-spacing: 1px; padding: 6px 0;
}
.spt-list-box { background: #fff; }
.spt-item {
  display: flex; align-items: center;
  padding: 15px 2px;
  font-size: 15px; font-weight: 500; color: #1a1a1a;
  border-bottom: 1px solid #efefef;
  text-decoration: none; transition: color .15s;
}
.spt-item:last-child { border-bottom: none; }
.spt-item:hover { color: var(--red); }

/* Search results list */
.search-results-header {
  padding: 12px 0 6px; font-size: 13px; color: #777;
}
.search-results-header strong { color: #1a1a1a; }

.search-results-list { margin-top: 6px; }
.search-result-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--dark);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover .sri-title { color: var(--red); }
.sri-text { flex: 1; min-width: 0; }
.sri-cat { margin-bottom: 4px; }
.sri-title { font-size: 14px; font-weight: 700; line-height: 1.4; color: #1a1a1a; }
.sri-meta { font-size: 11px; color: #999; margin-top: 4px; }
.sri-img { flex-shrink: 0; width: 90px; height: 65px; border-radius: 3px; overflow: hidden; }
.sri-img img { width: 100%; height: 100%; object-fit: cover; }

.search-no-results-msg {
  padding: 20px 0 6px; font-size: 15px; color: #555;
}


/* ============================================================
   SINGLE POST — mobile-safe fixes
   ============================================================ */
.single-breadcrumb {
  font-size: 12px; color: #888; margin-bottom: 8px;
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap;
}
.single-breadcrumb a { color: #888; text-decoration: none; }
.single-breadcrumb a:hover { color: var(--red); }
.bc-sep { color: #bbb; }

/* Meta bar extras */
.meta-sep { color: #ccc; margin: 0 2px; }
.meta-dot { color: #ccc; font-size: 10px; margin: 0 2px; }

/* Action row */
.single-action-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.action-btn {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid #ddd; border-radius: 20px;
  padding: 6px 13px; font-size: 12px; font-weight: 600;
  color: #444; background: #fff; cursor: pointer;
  text-decoration: none; transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.action-btn:hover { border-color: var(--red); color: var(--red); }
.share-native-btn { padding: 7px 10px; border-radius: 50%; }

/* Bottom share bar — mobile safe */
.single-share-bottom-bar {
  margin-top: 20px; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.share-bottom-label {
  font-size: 12px; font-weight: 700; color: #555;
  margin-bottom: 10px;
}
.share-bottom-btns {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.shr-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; font-size: 12px; font-weight: 600;
  border-radius: 4px; color: #fff; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
}
.shr-wa { background: #25D366; }
.shr-fb { background: #1877F2; }
.shr-tw { background: #000; }

/* Author box */
.single-author-box {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 20px; padding: 14px;
  border: 1px solid #eee; border-radius: 6px;
  background: #fafafa;
}
.author-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-avatar { flex-shrink: 0; }
.author-label { font-size: 10px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.author-name { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.author-bio { font-size: 12px; color: #666; margin-top: 4px; line-height: 1.5; }

/* Hot picks */
.single-hot-picks {
  margin-top: 20px; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.hot-picks-label { font-size: 12px; font-weight: 700; color: #555; margin-bottom: 8px; }
.hot-picks-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.hot-pick-tag {
  border: 1px solid #ddd; border-radius: 20px;
  padding: 5px 13px; font-size: 12px; color: #333;
  text-decoration: none; background: #f9f9f9;
  transition: background .15s, color .15s, border-color .15s;
}
.hot-pick-tag:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Trending stories grid (mobile, below article) */
.single-trending-mobile {
  margin-top: 24px; padding-top: 16px;
  border-top: 2px solid var(--border);
}
.trending-stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 12px;
}
@media (max-width: 400px) { .trending-stories-grid { grid-template-columns: 1fr; } }
.trending-story-card {
  text-decoration: none; color: var(--dark);
  display: block;
}
.trending-story-card:hover .ts-title { color: var(--red); }
.ts-img { border-radius: 3px; overflow: hidden; margin-bottom: 6px; aspect-ratio: 16/9; }
.ts-img img { width: 100%; height: 100%; object-fit: cover; }
.ts-title { font-size: 13px; font-weight: 700; line-height: 1.35; }

/* STICKY HEADER compact on scroll */
.site-header.scrolled .header-top { min-height: 36px; padding: 2px 0; }
.site-header.scrolled .site-logo-img,
.site-header.scrolled .custom-logo { max-height: 18px; }

