/*
Theme Name: Harian Guojiribao
Theme URI: https://myguojiribao.base44.app
Author: Wexin / PT Gemilang Aset Makmur
Description: Portal berita berbahasa Mandarin untuk komunitas Tionghoa Indonesia. Terinspirasi dari layout Shangbao Indonesia — header logo center, sponsor bar, navigasi merah, grid berita kategori.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: guojiribao
Tags: news, chinese, blog, responsive, sidebar
*/

/* ============================================================
   VARIABLES & RESET
============================================================ */
:root {
  --red:        #cc0000;
  --red-dark:   #a00000;
  --red-light:  #e60000;
  --gold:       #d4a017;
  --black:      #111111;
  --dark:       #222222;
  --gray-dark:  #444444;
  --gray:       #777777;
  --gray-light: #f5f5f5;
  --border:     #dddddd;
  --white:      #ffffff;
  --font-cn:    'Noto Serif SC', 'Source Han Serif CN', 'SimSun', serif;
  --font-ui:    'Segoe UI', 'Microsoft YaHei', Arial, sans-serif;
  --max:        1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--dark);
  background: #ebebeb;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 12px; }

/* ============================================================
   SPONSOR / AD BAR (top row — like Shangbao)
============================================================ */
.sponsor-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}
.sponsor-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sponsor-bar .sponsor-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-width: 100px;
  max-width: 160px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.sponsor-bar .sponsor-item:hover { border-color: var(--red); }
.sponsor-bar .sponsor-item img { max-height: 30px; max-width: 140px; object-fit: contain; }

/* ============================================================
   HEADER — Logo centered
============================================================ */
.site-header {
  background: var(--white);
  padding: 10px 0 6px;
  text-align: center;
  border-bottom: 2px solid #eee;
}
.site-header .header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.site-header .header-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .header-logo-wrap img {
  max-height: 90px;
  width: auto;
}
.site-header .logo-text-fallback {
  font-size: 42px;
  font-weight: 900;
  color: var(--red);
  font-family: var(--font-cn);
  letter-spacing: 4px;
  line-height: 1;
}
.site-header .tagline {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Header utility row (date + weather + search) */
.header-util {
  background: var(--white);
  border-top: 1px solid #f0f0f0;
  padding: 5px 0;
}
.header-util .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.header-util .util-date {
  font-size: 12px;
  color: var(--gray);
}
.header-util .util-date strong { color: var(--red); }
.header-util .util-weather {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-util .util-weather .temp {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.header-util .util-search form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.header-util .util-search input {
  border: none;
  outline: none;
  padding: 5px 10px;
  font-size: 13px;
  width: 180px;
  background: #fafafa;
}
.header-util .util-search button {
  background: var(--red);
  border: none;
  color: white;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 13px;
}
.header-util .util-search button:hover { background: var(--red-dark); }

/* ============================================================
   NAVIGATION — Red bar (like Shangbao)
============================================================ */
.main-nav {
  background: var(--red);
  position: relative;
  z-index: 200;
}
.main-nav > .container { position: relative; }
.main-nav > .container > ul {
  display: flex;
  flex-wrap: wrap;
}
.main-nav ul li { position: relative; }
.main-nav > .container > ul > li > a {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  letter-spacing: 0.5px;
  transition: background 0.15s;
  white-space: nowrap;
}
.main-nav > .container > ul > li > a:hover,
.main-nav > .container > ul > li.current-menu-item > a,
.main-nav > .container > ul > li.current-menu-ancestor > a {
  background: var(--red-dark);
  color: var(--white);
}
/* Dropdown */
.main-nav ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 160px;
  border-top: 2px solid var(--red);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 300;
  flex-direction: column;
}
.main-nav ul li:hover > ul { display: flex; }
.main-nav ul li ul li a {
  color: var(--dark);
  font-size: 13px;
  padding: 9px 14px;
  border-bottom: 1px solid #f0f0f0;
  display: block;
}
.main-nav ul li ul li a:hover { background: #fff5f5; color: var(--red); }

/* Second nav row (like Shangbao second row) */
.sub-nav {
  background: #b00000;
  overflow-x: auto;
  white-space: nowrap;
}
.sub-nav .container { display: flex; }
.sub-nav ul { display: flex; }
.sub-nav ul li a {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 7px 12px;
  transition: color 0.15s, background 0.15s;
}
.sub-nav ul li a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* ============================================================
   BREAKING / HOT NEWS TICKER  (热点新闻)
============================================================ */
.hot-news-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hot-news-bar .hn-label {
  background: var(--red);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
}
.hot-news-bar .hn-label::after {
  content: '';
  position: absolute;
  right: -10px; top: 0; bottom: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 10px solid var(--red);
}
.hot-news-bar .hn-ticker {
  flex: 1;
  overflow: hidden;
  padding: 0 16px;
}
.hot-news-bar .hn-ticker-inner {
  display: flex;
  animation: hnScroll 40s linear infinite;
  white-space: nowrap;
}
.hot-news-bar .hn-ticker-inner:hover { animation-play-state: paused; }
.hot-news-bar .hn-ticker-inner span {
  font-size: 13px;
  padding-right: 60px;
  color: var(--dark);
}
.hot-news-bar .hn-ticker-inner span a:hover { color: var(--red); }
@keyframes hnScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   LAYOUT — MAIN + SIDEBAR
============================================================ */
.site-main { padding: 10px 0 20px; }
.layout-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 12px;
  align-items: start;
}
.main-column { min-width: 0; }

/* ============================================================
   SECTION HEADING (like Shangbao colored bar)
============================================================ */
.sec-head {
  display: flex;
  align-items: stretch;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--red);
}
.sec-head .sec-title {
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  letter-spacing: 1px;
}
.sec-head .sec-more {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray);
  padding: 6px 0;
  align-self: center;
}
.sec-head .sec-more a { color: var(--gray); }
.sec-head .sec-more a:hover { color: var(--red); }

/* ============================================================
   HERO / FEATURED SLIDER AREA (top left — big image)
============================================================ */
.hero-area {
  background: var(--white);
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0;
  border: 1px solid var(--border);
}
.hero-main { position: relative; overflow: hidden; }
.hero-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.hero-main:hover img { transform: scale(1.03); }
.hero-main .hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  padding: 30px 14px 14px;
}
.hero-main .hero-cat {
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 6px;
}
.hero-main .hero-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.4;
  font-family: var(--font-cn);
}
.hero-main .hero-title a { color: white; }
.hero-main .hero-title a:hover { color: #ffcccc; }
.hero-main .hero-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-top: 5px;
}

/* Right column of hero (top 5 list — like Shangbao 热文推荐) */
.hero-side {
  background: #fafafa;
  border-left: 1px solid var(--border);
}
.hero-side .hs-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.hero-side .hs-tab {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  background: var(--white);
  transition: all 0.2s;
}
.hero-side .hs-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
  background: var(--white);
}
.hero-side .hs-list { padding: 8px 12px; }
.hero-side .hs-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #eeeeee;
}
.hero-side .hs-item:last-child { border-bottom: none; }
.hero-side .hs-num {
  font-size: 22px;
  font-weight: 900;
  color: #ddd;
  line-height: 1;
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.hero-side .hs-item:nth-child(1) .hs-num { color: var(--red); }
.hero-side .hs-item:nth-child(2) .hs-num { color: #e07020; }
.hero-side .hs-item:nth-child(3) .hs-num { color: #c8a020; }
.hero-side .hs-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--dark);
  font-family: var(--font-cn);
}
.hero-side .hs-title a:hover { color: var(--red); }
.hero-side .hs-date {
  font-size: 11px;
  color: var(--gray);
  margin-top: 3px;
}

/* ============================================================
   ARTICLE LIST — Shangbao style: title + date + excerpt
============================================================ */
.article-section {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 10px;
}
.article-section .sec-head { margin-bottom: 0; }
.article-section .as-body { padding: 0 12px; }

/* Featured article (first of section — big) */
.as-featured {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.as-featured .af-thumb {
  width: 260px;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.as-featured .af-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.as-featured:hover .af-thumb img { transform: scale(1.05); }
.as-featured .af-body {}
.as-featured .af-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.as-featured .af-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 7px;
  color: var(--black);
  font-family: var(--font-cn);
}
.as-featured .af-title a { color: var(--black); }
.as-featured .af-title a:hover { color: var(--red); }
.as-featured .af-excerpt {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.as-featured .af-meta {
  font-size: 11px;
  color: var(--gray);
}
.as-featured .af-meta .readmore {
  color: var(--red);
  font-weight: 600;
  margin-left: 12px;
}

/* Sub article list (below featured) */
.as-list { }
.as-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed #e8e8e8;
}
.as-list-item:last-child { border-bottom: none; }
.as-list-item .ali-thumb {
  width: 90px;
  height: 62px;
  flex-shrink: 0;
  overflow: hidden;
}
.as-list-item .ali-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.as-list-item:hover .ali-thumb img { transform: scale(1.07); }
.as-list-item .ali-body { flex: 1; min-width: 0; }
.as-list-item .ali-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--black);
  font-family: var(--font-cn);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.as-list-item .ali-title a { color: var(--black); }
.as-list-item .ali-title a:hover { color: var(--red); }
.as-list-item .ali-meta { font-size: 11px; color: var(--gray); margin-top: 4px; }

/* More link at bottom of section */
.as-more {
  text-align: center;
  padding: 8px;
  border-top: 1px solid var(--border);
}
.as-more a {
  color: var(--gray);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.as-more a:hover { color: var(--red); }

/* ============================================================
   TWO-COLUMN SECTION (财经 + 金融 side by side)
============================================================ */
.two-col-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

/* ============================================================
   SIDEBAR
============================================================ */
.sidebar-col { display: flex; flex-direction: column; gap: 10px; }

.widget-box {
  background: var(--white);
  border: 1px solid var(--border);
}
.widget-box .wb-head {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  letter-spacing: 0.5px;
}
.widget-box .wb-body { padding: 10px 12px; }

/* sidebar list */
.wb-post-list .wpl-item {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.wb-post-list .wpl-item:last-child { border-bottom: none; }
.wb-post-list .wpl-thumb {
  width: 72px;
  height: 52px;
  flex-shrink: 0;
  overflow: hidden;
}
.wb-post-list .wpl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.wb-post-list .wpl-item:hover .wpl-thumb img { transform: scale(1.08); }
.wb-post-list .wpl-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark);
  font-family: var(--font-cn);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wb-post-list .wpl-title a:hover { color: var(--red); }
.wb-post-list .wpl-date { font-size: 11px; color: var(--gray); margin-top: 3px; }

/* sidebar ranked list */
.wb-ranked-list .wrl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
}
.wb-ranked-list .wrl-item:last-child { border-bottom: none; }
.wb-ranked-list .wrl-num {
  font-size: 18px;
  font-weight: 900;
  color: #ddd;
  min-width: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.wb-ranked-list .wrl-item:nth-child(1) .wrl-num { color: var(--red); }
.wb-ranked-list .wrl-item:nth-child(2) .wrl-num { color: #e07020; }
.wb-ranked-list .wrl-item:nth-child(3) .wrl-num { color: #c8a020; }
.wb-ranked-list .wrl-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark);
  font-family: var(--font-cn);
}
.wb-ranked-list .wrl-title a:hover { color: var(--red); }

/* Category tags */
.wb-cats ul { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 12px; }
.wb-cats li a {
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid var(--border);
  color: var(--dark);
  font-size: 12px;
  padding: 4px 10px;
  transition: all 0.2s;
}
.wb-cats li a:hover { background: var(--red); color: white; border-color: var(--red); }

/* ============================================================
   SINGLE POST
============================================================ */
.single-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
}
.single-cats { margin-bottom: 8px; }
.single-cats a {
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  margin-right: 5px;
}
.single-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 12px;
  font-family: var(--font-cn);
}
.single-meta {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.single-featured-img {
  margin-bottom: 16px;
}
.single-featured-img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.single-featured-img figcaption {
  font-size: 12px;
  color: var(--gray);
  padding: 4px 0;
}
.entry-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--dark);
  font-family: var(--font-cn);
}
.entry-content p { margin-bottom: 16px; }
.entry-content h2 { font-size: 20px; font-weight: 700; margin: 22px 0 10px; }
.entry-content h3 { font-size: 17px; font-weight: 700; margin: 18px 0 8px; }
.entry-content blockquote {
  border-left: 4px solid var(--red);
  background: #fff5f5;
  padding: 12px 16px;
  margin: 18px 0;
  font-style: italic;
  color: var(--gray-dark);
}
.entry-content ul, .entry-content ol { padding-left: 22px; margin-bottom: 16px; }
.entry-content li { margin-bottom: 6px; }
.entry-content a { color: var(--red); text-decoration: underline; }
.entry-content img { border-radius: 2px; margin: 10px 0; }

/* Share buttons */
.share-row { margin: 16px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 2px;
  transition: opacity 0.2s;
  cursor: pointer;
}
.share-btn:hover { opacity: 0.85; color: white; }
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #1da1f2; }
.share-btn.wa { background: #25d366; }
.share-btn.tg { background: #0088cc; }

/* Related posts */
.related-posts { margin-top: 24px; }

/* ============================================================
   PAGINATION
============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 13px;
  padding: 0 8px;
  transition: all 0.2s;
}
.pagination a:hover, .pagination .current {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ============================================================
   FOOTER — like Shangbao (dark, multi-col)
============================================================ */
.site-footer {
  background: #1a1a1a;
  color: #aaa;
  margin-top: 16px;
  padding: 28px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2a2a2a;
}
.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--red);
  display: inline-block;
}
.footer-col p { font-size: 12px; line-height: 1.7; color: #999; }
.footer-col ul li {
  font-size: 12px;
  padding: 5px 0;
  border-bottom: 1px solid #252525;
}
.footer-col ul li a { color: #999; font-family: var(--font-cn); }
.footer-col ul li a:hover { color: var(--red); }
.footer-col .footer-brand {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  font-family: var(--font-cn);
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.footer-links {
  background: #111;
  padding: 10px 0;
  text-align: center;
}
.footer-links .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.footer-links a { color: #888; font-size: 12px; }
.footer-links a:hover { color: var(--red); }
.footer-bottom {
  background: #0d0d0d;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #666;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--red); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .layout-wrap { grid-template-columns: 1fr 240px; }
  .hero-area { grid-template-columns: 1fr 200px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .layout-wrap { grid-template-columns: 1fr; }
  .hero-area { grid-template-columns: 1fr; }
  .hero-side { border-left: none; border-top: 1px solid var(--border); }
  .hero-main img { height: 220px; }
  .two-col-sections { grid-template-columns: 1fr; }
  .as-featured { grid-template-columns: 1fr; }
  .as-featured .af-thumb { width: 100%; height: 180px; }
  .main-nav > .container > ul { display: none; }
  .main-nav.open > .container > ul { display: flex; flex-direction: column; }
  .main-nav.open ul li ul { display: none !important; position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .site-header .logo-text-fallback { font-size: 30px; }
  .mobile-nav-btn { display: flex; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .single-title { font-size: 20px; }
  .sponsor-bar .sponsor-item { min-width: 80px; }
}

/* Mobile nav toggle */
.mobile-nav-btn {
  display: none;
  background: var(--red);
  color: white;
  border: none;
  padding: 8px 14px;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  gap: 6px;
}
