/**
 * Tema Berita - Main CSS Stylesheet
 * High-performance, fully responsive news portal (Detik.com style)
 * FontAwesome 6 vector icons, strict zero-horizontal-overflow layout
 *
 * @package Tema_Berita
 */

:root {
  /* Brand Colors */
  --primary: #025ca6;
  --primary-dark: #003d73;
  --primary-light: #e8f2fa;
  --accent-red: #d90429;
  --accent-orange: #ea580c;
  --accent-green: #16a34a;

  /* Neutrals */
  --bg-body: #f1f5f9;
  --bg-card: #ffffff;
  --bg-surface: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* Dark Mode Theme */
[data-theme="dark"] {
  --bg-body: #090e17;
  --bg-card: #131d2e;
  --bg-surface: #1a273e;
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-light: #64748b;
  --border-color: #24344d;
  --border-light: #1a273e;
  --primary-light: #162c4a;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

/* -------------------------------------------------------------
   1. GLOBAL RESET & ZERO-OVERFLOW SAFEGUARDS
------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
  position: relative;
}

.site {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--primary);
}

img, video, iframe, embed, object, svg, canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

p, h1, h2, h3, h4, h5, h6, a, span, cite, li, time {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* -------------------------------------------------------------
   2. TOP BAR (Ticker, Live Date, Dark Mode, Search)
------------------------------------------------------------- */
.top-bar {
  background-color: #002c52;
  color: #e2e8f0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.live-date {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 500;
  color: #93c5fd;
  font-size: 12px;
  flex-shrink: 0;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.ticker-badge {
  background-color: var(--accent-red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.ticker-content {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12.5px;
  min-width: 0;
  flex: 1;
}

.ticker-content a {
  color: #ffffff;
}

.ticker-content a:hover {
  text-decoration: underline;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.theme-toggle-btn, .search-trigger-btn {
  background: transparent;
  border: none;
  color: #e2e8f0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s;
  white-space: nowrap;
}

.theme-toggle-btn:hover, .search-trigger-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* -------------------------------------------------------------
   3. MAIN HEADER (Logo Scaling & Leaderboard Ad)
------------------------------------------------------------- */
.main-header {
  background-color: var(--bg-card);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}

.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.site-branding {
  flex-shrink: 0;
  max-width: 260px;
  min-width: 0;
}

.site-branding .site-logo-wrap,
.site-branding a.custom-logo-link {
  display: inline-block;
  line-height: 1;
  max-width: 100%;
}

.site-branding .custom-logo {
  max-height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.site-branding .site-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.site-branding .site-title a {
  color: var(--primary);
}

.site-branding .site-title a span {
  color: var(--accent-red);
}

.site-description {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.2;
}

.header-ad-banner {
  flex: 1;
  max-width: 728px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  overflow: hidden;
}

.header-ad-banner .ad-placeholder {
  width: 100%;
  height: 90px;
  background-color: var(--bg-surface);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------------
   4. PRIMARY NAVIGATION & MOBILE DRAWER (Kanal Berita ala Detik)
------------------------------------------------------------- */
.main-navigation {
  background-color: var(--primary);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
}

.main-navigation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  gap: 12px;
}

.primary-menu-nav-container {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.primary-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  min-width: 0;
  width: 100%;
}

.primary-menu::-webkit-scrollbar {
  display: none;
}

.primary-menu li {
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.primary-menu li a {
  display: block;
  padding: 12px 14px;
  color: #ffffff;
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background-color 0.2s;
}

.primary-menu li a:hover,
.primary-menu li a:focus,
.primary-menu li.current-menu-item > a,
.primary-menu li.current_page_item > a,
.primary-menu li.current-menu-parent > a,
.primary-menu li.current-menu-ancestor > a,
.primary-menu li.current-category-ancestor > a,
.primary-menu li.current-post-ancestor > a {
  background-color: var(--primary-dark);
  color: #ffea79;
}

.primary-menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-card);
  box-shadow: var(--shadow-lg);
  min-width: 190px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  border: 1px solid var(--border-color);
  z-index: 100;
}

.primary-menu li:hover > ul.sub-menu {
  display: block;
}

.primary-menu li ul.sub-menu li {
  width: 100%;
}

.primary-menu li ul.sub-menu li a {
  color: var(--text-main);
  padding: 10px 16px;
  font-size: 13px;
  text-transform: none;
  border-bottom: 1px solid var(--border-light);
}

.primary-menu li ul.sub-menu li a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
  background: var(--primary-dark);
}

/* Off-canvas Mobile Drawer */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 86%;
  max-width: 320px;
  background-color: var(--bg-card);
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

body.drawer-open {
  overflow: hidden;
  touch-action: none;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background-color: var(--primary);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mobile-drawer-brand .drawer-site-title {
  font-size: 17px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fff;
  letter-spacing: -0.3px;
}

.mobile-drawer-brand img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.mobile-drawer-close:hover {
  background-color: var(--accent);
}

.mobile-drawer-search {
  padding: 12px 16px;
  background-color: var(--bg-body);
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.mobile-drawer-search .search-input-group {
  display: flex;
  align-items: center;
  background-color: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.mobile-drawer-search .mobile-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-main);
  outline: none;
}

.mobile-drawer-search .mobile-search-btn {
  background-color: var(--primary);
  border: none;
  color: #fff;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
}

.mobile-drawer-body {
  flex: 1;
  padding: 14px 0 30px;
}

.mobile-drawer-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  margin: 8px 0 4px;
}

.mobile-drawer-menu,
.mobile-network-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-drawer-menu li,
.mobile-network-menu li {
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.mobile-drawer-menu li a,
.mobile-network-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: var(--text-main);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}

.mobile-drawer-menu li a:hover,
.mobile-drawer-menu li a:focus,
.mobile-drawer-menu li.current-menu-item > a,
.mobile-drawer-menu li.current_page_item > a,
.mobile-drawer-menu li.current-menu-parent > a,
.mobile-drawer-menu li.current-menu-ancestor > a,
.mobile-drawer-menu li.current-category-ancestor > a,
.mobile-drawer-menu li.current-post-ancestor > a {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}

.mobile-drawer-menu li a i {
  color: var(--primary);
  font-size: 13px;
  width: 16px;
  text-align: center;
}

.mobile-drawer-menu li .submenu-toggle {
  position: absolute;
  right: 12px;
  top: 7px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
}

.mobile-drawer-menu li ul.sub-menu {
  display: none;
  background-color: var(--bg-body);
  padding-left: 18px;
}

.mobile-drawer-menu li.submenu-open > ul.sub-menu {
  display: block;
}

/* -------------------------------------------------------------
   5. TRENDING TOPICS BAR
------------------------------------------------------------- */
.trending-bar {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 12.5px;
  width: 100%;
  overflow: hidden;
}

.trending-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  min-width: 0;
}

.trending-inner::-webkit-scrollbar {
  display: none;
}

.trending-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--accent-red);
  font-size: 12px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.trending-tags-list {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.trending-tag-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 12px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.trending-tag-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

/* -------------------------------------------------------------
   6. HERO HEADLINE SECTION (1 Big Hero + 3 Sub-Headlines)
------------------------------------------------------------- */
.hero-headline-section {
  padding: 18px 0 14px;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  min-width: 0;
}

.hero-main-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-main-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #0f172a;
  width: 100%;
}

.hero-main-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-main-card:hover .hero-main-thumb img {
  transform: scale(1.03);
}

.hero-main-content {
  padding: 18px 20px;
  min-width: 0;
}

.cat-badge {
  display: inline-block;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.cat-badge.cat-nasional, .cat-badge.cat-news { background-color: #d90429; }
.cat-badge.cat-finansial, .cat-badge.cat-bisnis { background-color: #028090; }
.cat-badge.cat-tekno, .cat-badge.cat-teknologi { background-color: #7b2cbf; }
.cat-badge.cat-sport, .cat-badge.cat-sepakbola { background-color: #16a34a; }
.cat-badge.cat-otomotif { background-color: #ea580c; }

.hero-main-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.hero-main-title a:hover {
  color: var(--primary);
}

.hero-main-excerpt {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.post-meta-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 500;
  flex-wrap: wrap;
}

.post-meta-inline i {
  margin-right: 2px;
}

/* Sub-Hero List */
.hero-sub-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.hero-sub-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 12px;
  display: flex;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
}

.hero-sub-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-sub-thumb {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #0f172a;
}

.hero-sub-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-sub-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.hero-sub-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

/* -------------------------------------------------------------
   7. MAIN CONTENT 2-COLUMN LAYOUT (Stream vs Sidebar)
------------------------------------------------------------- */
.main-content-layout {
  padding: 16px 0 40px;
  width: 100%;
}

.content-grid-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 28px;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.content-left-col {
  min-width: 0;
  width: 100%;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 16px;
  position: relative;
  width: 100%;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  padding-bottom: 8px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

/* Stream List */
.stream-news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.stream-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 16px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 0;
  width: 100%;
}

.stream-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.stream-thumb {
  width: 190px;
  height: 120px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #0f172a;
}

.stream-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.stream-item:hover .stream-thumb img {
  transform: scale(1.05);
}

.stream-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.stream-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 4px 0 6px;
}

.stream-excerpt {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.infeed-ad-wrapper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

/* -------------------------------------------------------------
   8. CATEGORY BLOCK (Grid 3 Kolom)
------------------------------------------------------------- */
.category-block-section {
  margin: 28px 0;
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  width: 100%;
  min-width: 0;
}

.category-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.cat-grid-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cat-grid-thumb {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
  background-color: #0f172a;
  width: 100%;
}

.cat-grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-grid-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* -------------------------------------------------------------
   9. SIDEBAR & WIDGETS (Detik Style Overhaul)
------------------------------------------------------------- */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  width: 100%;
}

.news-widget {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  width: 100%;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-main);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.popular-news-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.popular-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  min-width: 0;
}

.popular-item:first-child {
  padding-top: 0;
}

.popular-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rank-badge {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-surface);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.popular-item.rank-1 .rank-badge {
  background-color: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}

.popular-item.rank-2 .rank-badge {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.popular-item.rank-3 .rank-badge {
  background-color: var(--accent-orange);
  color: #fff;
  border-color: var(--accent-orange);
}

.popular-item-content {
  flex: 1;
  min-width: 0;
}

.popular-item-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin: 2px 0 4px;
}

.popular-item-meta {
  font-size: 11.5px;
  color: var(--text-light);
}

/* Sidebar Category List */
.sidebar-category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

.sidebar-category-list li {
  width: 100%;
}

.sidebar-category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.2s;
}

.sidebar-category-list li a:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
  padding-left: 14px;
}

.sidebar-category-list .cat-count {
  font-size: 11px;
  font-weight: 700;
  background-color: var(--border-color);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: 12px;
}

/* Sidebar Tags Cloud */
.sidebar-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.sidebar-tag-pill {
  display: inline-block;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
}

.sidebar-tag-pill:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

/* Ad Slot Container */
.ad-slot, .ad-container-widget {
  background-color: var(--bg-surface);
  border: 1px dashed var(--border-color);
  padding: 10px;
  text-align: center;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.ad-badge-label {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
   10. PAGINATION
------------------------------------------------------------- */
.news-pagination {
  margin-top: 24px;
  width: 100%;
}

.news-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.news-pagination li a,
.news-pagination li span.current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-main);
  gap: 6px;
}

.news-pagination li a:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.news-pagination li span.current {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* -------------------------------------------------------------
   11. SINGLE POST (Detail Baca Berita)
------------------------------------------------------------- */
.news-breadcrumbs {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.news-breadcrumbs .sep {
  color: var(--text-light);
  font-size: 10px;
}

.news-breadcrumbs .current {
  color: var(--text-main);
  font-weight: 600;
}

.article-container {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  min-width: 0;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin: 10px 0 14px;
  color: var(--text-main);
}

.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  margin-bottom: 18px;
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.author-editor-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-editor-info strong {
  color: var(--text-main);
}

.reader-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.font-size-ctrl {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.font-btn {
  background: var(--bg-surface);
  border: none;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 11.5px;
  cursor: pointer;
  color: var(--text-main);
}

.font-btn:hover {
  background: var(--border-color);
}

.share-buttons-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  transition: transform 0.2s;
}

.share-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.article-featured-media {
  margin-bottom: 20px;
  width: 100%;
}

.article-featured-media img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.media-caption {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
}

.article-body {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-main);
  width: 100%;
  min-width: 0;
}

.article-body p {
  margin-bottom: 18px;
}

.article-body h2, .article-body h3 {
  font-family: var(--font-heading);
  margin: 24px 0 12px;
  font-weight: 700;
}

.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 12px 18px;
  background-color: var(--bg-surface);
  margin: 20px 0;
  font-style: italic;
}

.baca-juga-box {
  background-color: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 12px 14px;
  margin: 20px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  width: 100%;
}

.baca-juga-label {
  font-weight: 800;
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.baca-juga-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-main);
}

.article-tags-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.article-tags-box .tag-label {
  font-weight: 700;
  font-size: 12px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-tags-box a {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-muted);
}

.article-tags-box a:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.redaksi-box {
  background: var(--bg-surface);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 18px;
  border: 1px solid var(--border-color);
}

.related-news-section {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 2px solid var(--border-color);
  width: 100%;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.related-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.related-thumb {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
  background-color: #0f172a;
  width: 100%;
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

/* -------------------------------------------------------------
   12. COMMENTS SECTION
------------------------------------------------------------- */
.comments-area {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 2px solid var(--border-color);
  width: 100%;
  min-width: 0;
}

.comments-header {
  margin-bottom: 16px;
}

.comments-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
  min-width: 0;
}

.comment-card {
  list-style: none;
  width: 100%;
  min-width: 0;
}

.comment-card .children {
  margin-left: 36px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-body-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.comment-avatar {
  flex-shrink: 0;
}

.comment-avatar img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.comment-content-box {
  flex: 1;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  min-width: 0;
}

.comment-meta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 4px;
}

.comment-author-name cite {
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-main);
}

.comment-date {
  font-size: 11px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.comment-text-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-main);
}

.comment-text-body p {
  margin-bottom: 0;
}

.comment-reply-action {
  margin-top: 8px;
  text-align: right;
}

.comment-reply-action a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2px 8px;
  border-radius: 20px;
}

.comment-reply-action a:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.comment-respond {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  width: 100%;
  min-width: 0;
}

.comment-reply-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.comment-notes-info {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.comment-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 12px;
  width: 100%;
}

.comment-form-col label,
.comment-form-textarea label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.comment-form-col input,
.comment-form-textarea textarea {
  width: 100%;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-card);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 13px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.comment-form-col input:focus,
.comment-form-textarea textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2, 92, 166, 0.15);
}

.comment-form-textarea {
  margin-bottom: 12px;
  width: 100%;
}

.submit-btn-news {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn-news:hover {
  background-color: var(--primary-dark);
}

/* -------------------------------------------------------------
   13. FOOTER
------------------------------------------------------------- */
.site-footer {
  background-color: #08111e;
  color: #94a3b8;
  font-size: 13px;
  margin-top: 36px;
  border-top: 4px solid var(--primary);
  width: 100%;
}

.footer-top {
  padding: 32px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.footer-widget-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-widget ul li {
  margin-bottom: 6px;
}

.footer-widget ul li a {
  color: #94a3b8;
}

.footer-widget ul li a:hover {
  color: #ffffff;
}

.footer-social-links {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer-soc-btn {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  transition: all 0.2s;
}

.footer-soc-btn:hover {
  background-color: var(--primary);
  color: #fff;
}

.footer-bottom {
  padding: 16px 0;
  font-size: 12px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Back to top */
.back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 90;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

/* -------------------------------------------------------------
   14. SEARCH MODAL
------------------------------------------------------------- */
.search-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  padding-left: 16px;
  padding-right: 16px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  width: 100%;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-box {
  background-color: var(--bg-card);
  width: 100%;
  max-width: 520px;
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.search-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-muted);
}

.search-modal-box form {
  display: flex;
  gap: 8px;
  width: 100%;
}

.search-modal-box input[type="search"] {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-surface);
  color: var(--text-main);
  font-size: 13.5px;
}

.search-modal-box input[type="submit"] {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}

/* -------------------------------------------------------------
   15. STRICT RESPONSIVE RULES (TABLET & MOBILE)
------------------------------------------------------------- */

/* Tablet (max-width: 992px) */
@media screen and (max-width: 992px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .content-grid-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .main-header-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .site-branding {
    max-width: 100%;
  }

  .site-branding .custom-logo {
    margin: 0 auto;
  }

  .header-ad-banner {
    max-width: 100%;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

/* Mobile Screens (max-width: 768px) */
@media screen and (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .top-bar-left .live-date {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .main-navigation-inner {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .primary-menu-nav-container {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .primary-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: auto;
    max-height: none;
    background-color: transparent;
  }

  .primary-menu li {
    width: auto;
  }

  .primary-menu li a {
    padding: 8px 10px;
    font-size: 12.5px;
    border-bottom: none;
  }

  .primary-menu li ul.sub-menu {
    display: none;
  }

  /* Stream Item on Mobile (Compact 2-column Grid) */
  .stream-item {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .stream-thumb {
    width: 100px;
    height: 68px;
  }

  .stream-title {
    font-size: 13.5px;
    line-height: 1.3;
    margin: 2px 0 4px;
  }

  .stream-excerpt {
    display: none;
  }

  .post-meta-inline {
    font-size: 11px;
    gap: 8px;
  }

  /* Category Block & Related on Mobile */
  .category-grid-3col, .related-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .cat-grid-card, .related-card {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
  }

  .cat-grid-thumb, .related-thumb {
    aspect-ratio: auto;
    width: 100px;
    height: 68px;
    margin-bottom: 0;
  }

  .cat-grid-title, .related-title {
    font-size: 13px;
    line-height: 1.3;
  }

  /* Single Post on Mobile */
  .article-container {
    padding: 14px;
  }

  .article-title {
    font-size: 20px;
    margin: 8px 0 12px;
  }

  .article-meta-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .article-body {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .comment-form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .comment-card .children {
    margin-left: 12px;
    padding-left: 8px;
    border-left: 2px solid var(--border-color);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Small Phones (max-width: 480px) */
@media screen and (max-width: 480px) {
  .hero-main-content {
    padding: 12px;
  }

  .hero-main-title {
    font-size: 16.5px;
  }

  .hero-sub-card {
    display: grid;
    grid-template-columns: 85px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .hero-sub-thumb {
    width: 85px;
    height: 58px;
  }

  .hero-sub-title {
    font-size: 12.5px;
  }

  .stream-item {
    grid-template-columns: 85px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .stream-thumb {
    width: 85px;
    height: 58px;
  }
}

/* =============================================================
   ICON & TEXT VERTICAL ALIGNMENT PERFECTION (Theme-wide)
============================================================= */
i[class*="fa-"],
i[class^="fa-"],
.dashicons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
  flex-shrink: 0;
}

/* Post Meta (Date, Time, Author, Category) */
.meta-time,
.meta-author,
.meta-date,
.article-author,
.article-date,
.cat-name,
.live-date,
.ticker-badge,
.tag-label,
.baca-juga-label,
.theme-toggle-btn,
.search-trigger-btn,
.nav-action-btn,
.share-btn,
.copy-link-btn,
.widget-title,
.section-title {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  vertical-align: middle !important;
  line-height: 1.4 !important;
}

.meta-time i,
.meta-author i,
.meta-date i,
.live-date i,
.ticker-badge i,
.tag-label i,
.baca-juga-label i,
.article-author i,
.article-date i {
  font-size: 0.9em;
  line-height: 1;
  vertical-align: middle;
}

/* Baca Juga Box */
.baca-juga-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Footer Contact Info */
.footer-widget p {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-widget p i {
  width: 16px;
  text-align: center;
}

