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

:root {
  --primary-orange: #FF6600;
  --dark-red: #A90000;
  --bg-light: #F5F5F5;
  --text-dark: #333333;
  --text-gray: #666666;
  --text-muted: #999;
  --border-color: #E5E5E5;
  --header-gradient-start: #FF8C00;
  --header-gradient-end: #FF5700;
  --container-max: 1170px;
  --grid-columns: 4;
  --gradient-overlay-bg: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  --gradient-card-bg: linear-gradient(to top, rgb(139,139,139) 0%, rgba(207,193,184,0.8) 16%, rgba(237,229,224,0.6) 30%, rgba(255,255,255,0) 100%);
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
  max-width: 100vw;
  overflow-x: hidden;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 15px;
}

/* ========================================
   PIXWELL ICONS (rbi = custom icon font)
   Since we don't have the font file, use Remix Icon as mapping
   ======================================== */
.rbi {
  font-family: 'RemixIcon';
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.rbi-phone::before, i.rbi-phone::before { content: '\ea59'; } /* ri-phone-line */
.rbi-envelope::before, i.rbi-envelope::before { content: '\ec19'; } /* ri-mail-line */
.rbi-email-envelope::before, i.rbi-email-envelope::before { content: '\ec19'; }
.rbi-facebook::before, i.rbi-facebook::before { content: '\ef02'; } /* ri-facebook-fill */
.rbi-twitter::before, i.rbi-twitter::before { content: '\f04c'; } /* ri-twitter-x-fill */
.rbi-instagram::before, i.rbi-instagram::before { content: '\f091'; } /* ri-instagram-fill */
.rbi-youtube-o::before, i.rbi-youtube-o::before { content: '\eb99'; } /* ri-youtube-fill */
.rbi-search-light::before, i.rbi-search-light::before { content: '\ee1f'; } /* ri-search-line */
.rbi-clock::before, i.rbi-clock::before { content: '\eea6'; } /* ri-time-line */
.rbi-book::before, i.rbi-book::before { content: '\ed24'; } /* ri-bookmark-line */
.rbi-zap::before, i.rbi-zap::before { content: '\ec11'; } /* ri-flashlight-fill */
.rbi-angle-left::before, i.rbi-angle-left::before { content: '\eea4'; } /* ri-arrow-left-s-line */
.rbi-angle-right::before, i.rbi-angle-right::before { content: '\eea7'; } /* ri-arrow-right-s-line */
.rbi-arrow-right::before, i.rbi-arrow-right::before { content: '\eea7'; }
.rbi-comments::before, i.rbi-comments::before { content: '\ec4c'; } /* ri-message-3-line */
.rbi-whatsapp::before, i.rbi-whatsapp::before { content: '\ef15'; } /* ri-whatsapp-fill */
.rbi-telegram::before, i.rbi-telegram::before { content: '\f089'; } /* ri-telegram-fill */
.rbi-pinterest::before, i.rbi-pinterest::before { content: '\ef0e'; } /* ri-pinterest-fill */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ========================================
   GRID SYSTEM (Pixwell WP theme grid)
   ======================================== */
.rbc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.rb-p20-gutter {
  padding-left: 20px;
  padding-right: 20px;
}

.rb-m20-gutter {
  margin-left: -20px;
  margin-right: -20px;
}

.rb-row {
  display: flex;
  flex-wrap: wrap;
}

[class*="rb-col-"] {
  flex: 1;
}

.rb-col-d3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.rb-col-d9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ========================================
   PIXWELL WP-STYLE HEADER (Topbar + Banner + Main Nav + Sticky Nav)
   ======================================== */

/* --- Top Bar --- */
.topbar-wrap {
  background: #f5f5f5;
  color: #666;
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-phone, .info-email {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #666;
}

.info-phone i, .info-email i {
  font-size: 13px;
}

.info-phone:hover, .info-email:hover {
  color: var(--primary-orange);
}

.topbar-social {
  display: flex;
  gap: 8px;
}

.social-link-facebook,
.social-link-twitter,
.social-link-instagram,
.social-link-youtube {
  color: #666;
  font-size: 14px;
  transition: color 0.2s;
}

.social-link-facebook:hover { color: #3b5998; }
.social-link-twitter:hover { color: #1da1f2; }
.social-link-instagram:hover { color: #e4405f; }
.social-link-youtube:hover { color: #cd201f; }

/* --- Banner Wrap --- */
.banner-wrap {
  background: #fff;
  padding: 15px 0;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-left {
  flex: 0 0 25%;
  max-width: 25%;
}

.banner-right {
  flex: 0 0 75%;
  max-width: 75%;
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-wrap a.logo {
  display: inline-block;
}

.logo-wrap img {
  height: 50px;
  width: auto;
}

.header-advert-section {
  text-align: right;
}

/* --- Main Navigation --- */
.navbar-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
}

.navbar-holder {
  position: relative;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.main-menu-wrap {
  margin-left: 20px;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  display: block;
  padding: 0 15px;
  height: 50px;
  line-height: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  border-right: 1px solid var(--border-color);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.main-menu > li:first-child > a {
  border-left: 1px solid var(--border-color);
}

.main-menu > li > a:hover,
.main-menu > li > a.active {
  color: var(--primary-orange);
  background: #fff5f0;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 999;
}

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

.sub-menu li a {
  display: block;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
}

.sub-menu li:last-child a {
  border-bottom: none;
}

.sub-menu li a:hover {
  background: #fff5f0;
  color: var(--primary-orange);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 0;
}

/* --- Trending Section --- */
.trending-section {
  position: relative;
}

.trend-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--primary-orange);
  font-size: 18px;
  cursor: pointer;
}

.trend-lightbox {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 420px;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 1000;
  padding: 20px;
}

.trending-section:hover .trend-lightbox {
  display: block;
}

.trend-header {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  color: var(--dark-red);
}

.trend-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* --- Bookmark Section --- */
.bookmark-section {
  display: flex;
  align-items: center;
}

.bookmark-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-dark);
  font-size: 18px;
  transition: color 0.2s;
}

.bookmark-link:hover {
  color: var(--primary-orange);
}

.bookmark-icon {
  position: relative;
}

.bookmark-counter {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--primary-orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* --- Search --- */
.nav-search-live {
  position: relative;
  margin-left: 5px;
}

.nav-search-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-dark);
  font-size: 18px;
  transition: color 0.2s;
}

.nav-search-link:hover {
  color: var(--primary-orange);
}

.navbar-search-popup {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 350px;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 1000;
  padding: 15px;
}

.nav-search-link:hover + .navbar-search-popup,
.navbar-search-popup:hover {
  display: block;
}

.search-form {
  display: flex;
  gap: 0;
}

.search-form input[type="search"] {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-color);
  font-size: 13px;
  outline: none;
}

.search-form input[type="search"]:focus {
  border-color: var(--primary-orange);
}

.search-form input[type="submit"] {
  padding: 8px 15px;
  background: var(--primary-orange);
  color: #fff;
  border: 1px solid var(--primary-orange);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.search-form input[type="submit"]:hover {
  background: var(--header-gradient-end);
}

/* --- Header Wrap (WP Pixwell) --- */
.header-wrap {
  background: #fff;
}

.header-wrap.header-5 {
  /* style variants for header type 5 */
}

.header-wrap.has-sright .search-section {
  display: flex;
  align-items: center;
}

/* --- Content Area --- */
.content-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Sidebar Right --- */
.sidebar-right {
  padding-left: 20px;
}

.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--dark-red);
  color: var(--dark-red);
}

.topic-aside-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.topic-aside-item .thumb {
  flex: 0 0 120px;
}

.topic-aside-item .title {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}

.topic-aside-item:hover .title {
  color: var(--primary-orange);
}

/* --- Block Headers --- */
.block-wrap {
  margin-bottom: 30px;
}

.block-wrap.fw-category .block-header {
  margin-bottom: 15px;
}

.block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-title.h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-red);
  margin: 0;
}

.block-nav {
  display: flex;
  gap: 8px;
}

.block-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark-red);
  color: #fff;
  font-size: 12px;
  transition: opacity 0.2s;
}

.block-nav a:hover {
  opacity: 0.8;
}

.block-nav a.arrow-prev,
.block-nav a.arrow-next {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--text-dark);
  font-size: 13px;
  padding: 0 5px;
}

/* --- Category List (Region Cards) --- */
.cat-list-content {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}

.cat-list-content-inner {
  display: contents;
}

.cat-list-item {
  border: 1px solid var(--border-color);
}

.cat-list-title {
  display: flex;
  align-items: stretch;
}

.cat-list-feat {
  flex: 0 0 280px;
  position: relative;
  overflow: hidden;
}

.cat-list-feat img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.cat-list-item-text {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-list-item-text h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 4px 0;
  color: var(--dark-red);
}

.cat-list-item-text p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* --- Grid System --- */
.rb-p20-gutter {
  margin-left: -20px;
  margin-right: -20px;
}

.rb-p20-gutter > * {
  padding-left: 20px;
  padding-right: 20px;
}

.rb-col-t9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.rb-col-t3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.rb-col-m12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.rb-n15-gutter > * {
  padding: 0 7.5px;
}

/* --- Post Grid --- */
.p-grid {
  display: flex;
  flex-direction: column;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.p-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.p-header .entry-title.h5 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 8px 0;
}

.p-cat-info {
  font-size: 11px;
}

.cat-info-el {
  color: var(--dark-red);
  font-weight: 600;
  text-transform: uppercase;
}

/* --- Overlay Cards (Featured) --- */
.overlay-card {
  position: relative;
  overflow: hidden;
  background: #000;
}

.overlay-card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.overlay-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.overlay-card:hover .overlay-card-bg img {
  transform: scale(1.05);
}

.overlay-card-content {
  position: relative;
  z-index: 1;
  padding: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
}

.overlay-card-content .post-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.overlay-card-content .post-title.h6 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 4px 0;
}

.overlay-card-content .post-date {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

/* --- Popular / List Cards --- */
.popular-wrap {
  margin-bottom: 30px;
}

.popular-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.popular-heading h2.block-title.h3 {
  flex: 0 0 auto;
}

.popular-heading .block-nav {
  flex: 1;
  justify-content: flex-end;
}

.popular-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.popular-item {
  display: flex;
  border: 1px solid var(--border-color);
  position: relative;
}

.popular-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background: var(--dark-red);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.popular-item:nth-child(odd) .popular-num {
  background: var(--primary-orange);
}

.popular-thumb {
  flex: 0 0 160px;
  position: relative;
  overflow: hidden;
}

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

.popular-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popular-body .entry-title.h6 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 6px 0;
}

.popular-body .post-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark-red);
}

/* --- Featured Section --- */
.featured-section {
  padding: 20px 0;
}

.section-headline.h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.section-headline.h2 .rbi {
  color: var(--dark-red);
  font-size: 24px;
}

.section-headline.h2 span {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
}

.featured-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .post-grid {
    grid-template-columns: 1fr;
  }

  .popular-list {
    grid-template-columns: 1fr;
  }

  .cat-list-content {
    grid-template-columns: 1fr;
  }

  .cat-list-feat {
    flex: 0 0 100%;
    height: 200px;
  }

  .featured-inner {
    grid-template-columns: 1fr;
  }

  .banner-inner {
    flex-direction: column;
  }

  .banner-left,
  .banner-right {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 8px;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
  }
}

/* ========== Sticky Nav ========== */
.section-sticky-holder {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 2px solid var(--primary-orange);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-sticky {
  padding: 0;
}

.section-sticky .navbar-inner {
  height: 50px;
}

.section-sticky .logo-wrap img {
  height: 40px;
}

.section-sticky .main-menu > li > a {
  height: 50px;
  line-height: 50px;
  font-size: 11px;
}


/* ========== HERO GRID ========== */
.hero-grid-section {
  padding: 20px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #E1E1E1;
  border: 1px solid #E1E1E1;
}

.news-card-overlay {
  position: relative;
  overflow: hidden;
  background: #000;
}

.news-image-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  height: 0;
  padding-bottom: 150%; /* 400:600 = 1:1.5 ratio */
}

.news-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card-overlay:hover .news-card-img {
  transform: scale(1.05);
}

.news-card-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.news-card-categories {
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.news-cat-link {
  font-size: 0.6rem;
  color: #fff;
  background: rgba(0,0,0,0.3);
  padding: 2px 6px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.news-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.news-card-title a {
  color: inherit;
}

.news-card-title a:hover {
  opacity: 0.9;
}

/* ========== GRADIENT OVERLAY CARDS (p-overlay-9 f-gradient) ========== */
.terpopuler-section {
  padding: 25px 0;
}

.terpopuler-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: #E1E1E1;
  border: 1px solid #E1E1E1;
}

.news-card-gradient {
  position: relative;
  overflow: hidden;
  background: #000;
}

.news-card-gradient-overlay {
  background: var(--gradient-card-bg);
}

/* ========== BERITA TERBARU (Horizontal list) ========== */
.terbaru-section {
  padding: 25px 0;
}

.terbaru-layout {
  display: flex;
  gap: 30px;
}

.terbaru-main {
  flex: 0 0 69.333%;
}

.col-right {
  flex: 0 0 30.667%;
}

.section-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  padding-left: 3px;
  border-left: 4px solid var(--primary-orange);
  text-transform: uppercase;
  font-size: 13px;
}

.terbaru-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.terbaru-item {
  border-bottom: 1px solid var(--border-color);
}

.terbaru-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
}

.terbaru-link:hover {
  color: var(--primary-orange);
}

.terbaru-index {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-orange);
  min-width: 28px;
}

.terbaru-text {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
}

.trending-list {
  list-style: none;
}

.trending-item {
  border-bottom: 1px solid var(--border-color);
}

.trending-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}

.trending-link:hover {
  color: var(--primary-orange);
}

.trending-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-orange);
  min-width: 20px;
}

.trending-text {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
}

.sidebar-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-orange);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* ========== FEATURE SECTION ========== */
.feature-section {
  padding: 25px 0;
  background: #f5f5f5;
  margin: 0 -15px;
  padding-left: 15px;
  padding-right: 15px;
}

.feature-layout {
  display: flex;
  gap: 30px;
}

.feature-main {
  flex: 0 0 72%;
}

.feature-sidebar {
  flex: 0 0 28%;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.feature-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.feature-card:hover .feature-img {
  transform: scale(1.03);
}

.feature-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  color: #fff;
}

.feature-cats {
  margin-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.feature-cat {
  font-size: 0.65rem;
  background: rgba(255,102,0,0.9);
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
  color: #fff;
}

.feature-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}

.feature-small-list {
  list-style: none;
}

.feature-small-item {
  border-bottom: 1px solid #ddd;
}

.feature-small-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}

.feature-small-link:hover {
  color: var(--primary-orange);
}

.feature-small-num svg {
  flex-shrink: 0;
}

.feature-small-title {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.sidebar-ad {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.sidebar-ad img {
  width: 100%;
  display: block;
}

.sidebar-widget {
  margin-top: 20px;
}

.ad-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  border-radius: 4px;
}

.ad-box p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ========== BERITA DAERAH ========== */
.regions-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.region-row {
  display: flex;
  gap: 10px;
}

.region-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.region-card:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 2px 6px rgba(255,102,0,0.1);
}

.region-card-cat {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.region-card-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
}

.region-card-arrow {
  color: var(--primary-orange);
  font-size: 0.9rem;
}

/* ========== COVID / TOPIC SECTION ========== */
.topic-section {
  padding: 25px 0;
}

.topic-layout {
  display: flex;
  gap: 20px;
}

.topic-main {
  flex: 0 0 68%;
}

.topic-sidebar {
  flex: 0 0 32%;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.topic-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.topic-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.topic-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.topic-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topic-card .category-badge {
  display: inline-block;
  margin: 8px 10px 4px;
}

.topic-card h4 {
  font-size: 0.85rem;
  padding: 0 10px;
  line-height: 1.3;
  font-weight: 600;
}

.topic-card .topic-card-cat {
  font-size: 0.65rem;
  background: var(--primary-orange);
  color: #fff;
  padding: 2px 8px;
  margin: 8px 10px 4px;
  display: inline-block;
  border-radius: 2px;
  text-transform: uppercase;
}

.topic-card time {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 4px 10px 10px;
}

.topic-sidebar-item {
  margin-bottom: 12px;
}

.topic-sidebar-link {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.topic-sidebar-link img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.topic-sidebar-text {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== FOOTER ========== */
.main-footer {
  background: #fff;
  margin-top: 30px;
}

.footer-inner {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}

.footer-logo h2 {
  font-size: 1.5rem;
  color: var(--primary-orange);
  font-weight: 900;
  letter-spacing: 2px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-gray);
  transition: background 0.2s, color 0.2s;
}

.footer-socials a:hover {
  background: var(--primary-orange);
  color: #fff;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.footer-nav li a {
  font-size: 0.8rem;
  color: var(--text-gray);
  transition: color 0.2s;
}

.footer-nav li a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  padding: 15px 0;
  text-align: center;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bottom-links {
  background: #f9f9f9;
  padding: 20px 0;
}

.bottom-links h4 {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.bottom-links ul {
  list-style: none;
}

.bottom-links ul li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted var(--border-color);
  font-size: 0.8rem;
}

.bottom-links .arrow {
  color: var(--primary-orange);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .terpopuler-grid {
    grid-template-columns: 1fr;
  }
  .terbaru-layout {
    flex-direction: column;
  }
  .terbaru-main,
  .col-right,
  .feature-main,
  .feature-sidebar,
  .topic-main,
  .topic-sidebar {
    flex: 0 0 100%;
  }
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .region-card {
    min-width: calc(33.33% - 10px);
  }
  .topic-sidebar-link img {
    width: 120px;
  }
}

@media (max-width: 768px) {
  html { font-size: 13px; }

  .navbar-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
  }

  .nav-menu li a {
    height: auto;
    padding: 10px 15px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .topic-sidebar-link img {
    width: 100px;
    height: 75px;
  }

  .feature-title {
    font-size: 1rem;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 8px;
  }

  .region-card {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .header-top-inner {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .header-socials {
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .region-card {
    min-width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }

  .bottom-links ul li {
    flex-direction: column;
    gap: 4px;
  }

  .bottom-links .arrow {
    order: -1;
  }
}
