@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Source+Serif+4:wght@400;600&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --red:        #c8102e;
  --red-dark:   #a00d24;
  --ink:        #0d0d14;
  --body:       #2c2c3a;
  --muted:      #6b7280;
  --border:     #e8e8ee;
  --bg:         #f5f4f1;
  --white:      #ffffff;
  --accent-bg:  #fff8f0;
  --card-bg:    #ffffff;
  --sidebar-bg: #fafafa;
  --gold:       #d4a017;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
.headline-font { font-family: 'Playfair Display', serif; }
.serif-font    { font-family: 'Source Serif 4', serif; }

a { text-decoration: none; color: inherit; }
a:hover { color: var(--red); }

/* ─── BREAKING TICKER ────────────────────────── */
.breaking-bar {
  background: var(--red);
  color: #fff;
  font-size: 18px;
  padding: 8px 0;
  overflow: hidden;
  font-weight: 700;
}
.breaking-label {
  background: #fff;
  color: var(--red);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  padding: 3px 12px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerRun 40s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes tickerRun {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.2s ease infinite;
  margin-left: 4px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* ─── HEADER ─────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}
.logo-box {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 28px;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: -.02em;
  line-height: 1;
}
.logo-tagline {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-left: 8px;
  letter-spacing: -.01em;
}

/* Nav */
.main-nav .nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  transition: all .2s;
}
.main-nav .nav-link:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
  background: var(--red);
  color: #fff !important;
}

/* WordPress nav menu override */
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; align-items: center; }
.main-nav ul li a { display: inline-block; font-size: 18px; font-weight: 600; color: var(--ink); padding: 6px 14px; border-radius: 999px; transition: all .2s; }
.main-nav ul li a:hover { background: #f3f4f6; color: var(--ink); }
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a,
.main-nav ul li.current-menu-ancestor > a { background: var(--red); color: #fff !important; }

.btn-subscribe {
  background: var(--red);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  transition: background .2s;
  white-space: nowrap;
}
.btn-subscribe:hover { background: var(--red-dark); color: #fff !important; }

.btn-search {
  background: #f3f4f6;
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--body);
  display: flex; align-items: center; gap: 6px;
  transition: background .2s;
  cursor: pointer;
}
.btn-search:hover { background: #e9eaec; }

/* Reading progress */
.read-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  z-index: 9999;
  width: 0%;
  transition: width .1s;
}

/* ─── HERO SECTION ───────────────────────────── */
.hero-section { background: #f0eff0; padding: 48px 0; }
.hero-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.hero-img-wrap img {
  width: 100%; height: 440px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.hero-img-wrap:hover img { transform: scale(1.03); }
.hero-category {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
}
.hero-excerpt { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 6px;
  transition: background .2s, transform .2s;
}
.btn-read:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }

/* ─── SECTION HEADINGS ───────────────────────── */
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 3px solid var(--border);
  position: relative;
  margin-bottom: 24px;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 56px; height: 3px;
  background: var(--red);
}
.view-all-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex; align-items: center; gap: 4px;
}
.view-all-link:hover { color: var(--red-dark); }

/* ─── NEWS CARDS ─────────────────────────────── */
.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.10);
}
.news-card-img {
  width: 100%; height: 180px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.news-card:hover .news-card-img { transform: scale(1.04); }
.news-card-img-wrap { overflow: hidden; }
.news-card-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.news-card-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 8px;
}
.news-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-title:hover { color: var(--red); }
.news-card-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-meta {
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: auto;
  display: flex; align-items: center; gap: 6px;
}

/* List-style card (category sections) */
.news-list-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow .25s ease, transform .25s ease;
  text-decoration: none;
}
.news-list-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.news-list-thumb {
  width: 100px; height: 80px;
  object-fit: cover;
  border-radius: 7px;
  flex-shrink: 0;
}
.news-list-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.news-list-title:hover { color: var(--red); }
.news-list-meta { font-size: 11px; color: var(--muted); }

/* ─── SIDEBAR ────────────────────────────────── */
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}
.sidebar-box-header {
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.sidebar-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

.trending-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  align-items: flex-start;
}
.trending-item:last-child { border-bottom: none; }
.trending-item:hover { background: var(--bg); }
.trending-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
  padding-top: 2px;
  transition: color .2s;
}
.trending-item:hover .trending-num { color: var(--red); }
.trending-thumb {
  width: 64px; height: 56px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.trending-title { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.4; }
.trending-meta { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* Newsletter box */
.newsletter-box {
  background: linear-gradient(135deg, var(--ink) 0%, #1a1a2e 100%);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 28px;
  color: #fff;
}
.newsletter-box h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
.newsletter-box p { font-size: 13px; opacity: .75; margin-bottom: 16px; line-height: 1.6; }
.newsletter-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  margin-bottom: 10px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
}
.newsletter-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  letter-spacing: .03em;
}
.newsletter-btn:hover { background: var(--red-dark); }

/* Weather box */
.weather-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 28px;
}
.weather-city { font-size: 15px; font-weight: 700; color: var(--ink); }
.weather-temp { font-size: 36px; font-weight: 800; color: #0ea5e9; line-height: 1.1; margin: 4px 0; }
.weather-desc { font-size: 13px; color: var(--muted); text-transform: capitalize; }

/* ─── SINGLE ARTICLE ─────────────────────────── */
.av-breadcrumb {
  font-size: 12px;
  color: var(--muted);
  padding: 14px 0 0;
}
.av-breadcrumb a { color: var(--red); }
.av-breadcrumb a:hover { text-decoration: underline; }

.av-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.av-category-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: rgba(255,255,255,.7);
  border-radius: 50%;
  animation: blink 1.2s ease infinite;
}

.av-article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}

.av-article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.av-author-avatar, .av-author-big-avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.av-author-avatar { width: 40px; height: 40px; }
.av-author-big-avatar { width: 64px; height: 64px; }
.av-author-avatar-fallback, .av-author-big-fallback {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; flex-shrink: 0;
}
.av-author-avatar-fallback { width: 40px; height: 40px; font-size: 16px; }
.av-author-big-fallback { width: 64px; height: 64px; font-size: 22px; }
.av-meta-text { font-size: 13px; color: var(--muted); line-height: 1.4; }
.av-meta-text strong { color: var(--ink); font-weight: 600; display: block; }
.av-reading-time {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.av-hero-image { border-radius: 10px; overflow: hidden; margin-bottom: 28px; }
.av-hero-image img { width: 100%; max-height: 500px; object-fit: cover; display: block; }
.av-hero-caption {
  font-size: 12px;
  color: var(--muted);
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  font-style: italic;
}

/* Share bar */
.av-share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.av-share-label { font-size: 13px; font-weight: 700; color: var(--ink); margin-right: 4px; }
.av-share-btn {
  padding: 7px 16px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.av-share-btn:hover { opacity: .85; transform: translateY(-1px); }
.av-share-fb { background: #1877f2; color: #fff; }
.av-share-tw { background: #000; color: #fff; }
.av-share-wa { background: #25d366; color: #fff; }
.av-share-copy { background: var(--bg); color: var(--ink); border: 1px solid var(--border) !important; }

/* Article body */
.av-article-body {
  font-family: 'Source Serif 4', serif;
  font-size: 19px;
  line-height: 1.85;
  color: var(--body);
}
.av-article-body p { margin-bottom: 22px; }
.av-article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.av-article-body h2::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 48px; height: 2px;
  background: var(--red);
}
.av-article-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 12px;
}
.av-article-body a { color: var(--red); text-decoration: underline; }
.av-article-body ul, .av-article-body ol { padding-left: 24px; margin-bottom: 22px; }
.av-article-body li { margin-bottom: 6px; }
.av-article-body blockquote {
  border-left: 4px solid var(--red);
  background: var(--accent-bg);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}
.av-article-body img { max-width: 100%; border-radius: 8px; margin: 16px 0; }
.av-article-body strong { color: var(--ink); font-weight: 700; }

/* Disclaimer */
.av-disclaimer {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 32px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.av-disc-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.av-disclaimer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #92400e;
  margin: 0;
  line-height: 1.6;
}
.av-disclaimer strong { display: block; margin-bottom: 4px; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: #92400e; }

/* Tags */
.av-tags-section { margin-top: 28px; }
.av-tags-section h4 { font-size: 12px; font-weight: 800; color: var(--ink); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .07em; }
.av-tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.av-tag {
  font-size: 12px; padding: 5px 14px;
  border-radius: 4px; background: var(--white);
  border: 1px solid var(--border);
  color: var(--body); transition: all .2s;
}
.av-tag:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Author box */
.av-author-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.av-author-box h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.av-author-role { font-size: 12px; color: var(--red); font-weight: 600; margin-bottom: 8px; }
.av-author-box p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0 0 8px; }
.av-author-link { font-size: 13px; color: var(--red); font-weight: 600; }
.av-author-link:hover { text-decoration: underline; }

/* TOC */
.av-toc-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}
.av-toc-header {
  background: var(--ink);
  color: #fff;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.av-toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--body);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .2s;
}
.av-toc-item:hover { background: var(--bg); color: var(--red); border-left-color: var(--red); }
.av-toc-item.active { background: #fff5f5; color: var(--red); border-left-color: var(--red); font-weight: 600; }
.av-toc-num {
  width: 20px; height: 20px;
  background: var(--bg);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}
.av-toc-item.active .av-toc-num { background: var(--red); color: #fff; }

/* Ad placeholder */
.ad-placeholder {
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 32px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 28px;
}

/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
  background: #0d0d14;
  color: rgba(255,255,255,.7);
  padding: 64px 0 28px;
}
.footer-logo-box {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
}
.footer-tagline { font-size: 13px; line-height: 1.6; opacity: .7; margin-top: 12px; }
.footer-heading { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 40px 0 20px; }
.footer-bottom { font-size: 12px; color: rgba(255,255,255,.35); }
.social-icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.social-icon:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ─── MODALS ─────────────────────────────────── */
.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 10000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.search-modal.open { display: flex; }
.search-modal-inner {
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.search-modal-bar {
  display: flex;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.search-modal-input {
  flex: 1;
  font-size: 18px;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.search-modal-close { font-size: 22px; color: var(--muted); cursor: pointer; background: none; border: none; }
.search-chip {
  background: #f3f4f6;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s;
}
.search-chip:hover { background: #e5e7eb; }

/* ─── UTILITIES ──────────────────────────────── */
.img-hover-zoom { overflow: hidden; }
.img-hover-zoom img { transition: transform .4s ease; }
.img-hover-zoom:hover img { transform: scale(1.05); }

/* Mobile menu */
#mobileMenu.show { display: block !important; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 991.98px) {
  .hero-img-wrap img { height: 300px; }
  .hero-title { font-size: 28px; }
  .av-article-title { font-size: 26px; }
  .av-article-body { font-size: 17px; }
  .av-reading-time { margin-left: 0; }
}

@media (max-width: 767.98px) {
  .breaking-bar { font-size: 12px; }
  .logo-box { font-size: 22px; }
  .logo-tagline { font-size: 15px; }
  .hero-section { padding: 28px 0; }
  .hero-img-wrap img { height: 220px; }
  .news-card-img { height: 160px; }
  .av-share-bar { gap: 6px; }
  .av-author-box { flex-direction: column; }
  .newsletter-box { padding: 18px; }
  .section-heading { font-size: 22px; }
}

@media (max-width: 575.98px) {
  .av-share-btn { font-size: 11px; padding: 6px 12px; }
  .news-list-thumb { width: 80px; height: 68px; }
  .av-article-body { font-size: 16px; }
}

/* ==========================================
   GLOBAL SITE CONTAINER
========================================== */
.site-container{
  width:100%;
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
  padding-left:15.5rem;
  padding-right:15.5rem;
}

/* Large desktop */
@media (max-width:1600px){
  .site-container{
    padding-left:10rem;
    padding-right:10rem;
  }
}

/* Laptop */
@media (max-width:1200px){
  .site-container{
    padding-left:5rem;
    padding-right:5rem;
  }
}

/* Tablet */
@media (max-width:991.98px){
  .site-container{
    padding-left:2rem;
    padding-right:2rem;
  }
}

/* Mobile */
@media (max-width:575.98px){
  .site-container{
    padding-left:1rem;
    padding-right:1rem;
  }
}


/* Mobile menu */
.mobile-menu{
    display:none;
}

.mobile-menu.show{
    display:block !important;
}

/* Mobile menu links */
.mobile-menu ul{
    list-style:none;
    padding:0;
    margin:0;
}

.mobile-menu ul li a{
    display:block;
    padding:12px 0;
    border-bottom:1px solid var(--border);
    color:var(--ink);
    font-size:15px;
    font-weight:600;
}

.mobile-menu ul li a:hover{
    color:var(--red);
}
