/* BERITA DETAIL PAGE STYLES */
.berita-detail-page {
  padding-top: 120px;
  background: #fff;
}

.container-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- HEADER --- */
.article-header {
  margin-bottom: 40px;
}

.article-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #1a202c;
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #718096;
  font-size: 14px;
  font-weight: 500;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item i {
  font-size: 16px;
  color: var(--orange);
}

/* --- FEATURED IMAGE --- */
.featured-image-large {
  width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.featured-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- CONTENT GRID --- */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  margin-bottom: 80px;
}

.article-body {
  font-size: 18px;
  line-height: 1.8;
  color: #2d3748;
}

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

.back-to-list {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s;
}

.back-to-list:hover {
  transform: translateX(-5px);
}

/* --- SIDEBAR --- */
.sidebar-detail {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: white;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #edf2f7;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1a202c;
  border-bottom: 2px solid #f0f4f8;
  padding-bottom: 10px;
}

.widget-title i {
  color: var(--orange);
}

/* Trending List */
.trending-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trending-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: inherit;
}

.trending-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
}

.trending-info h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.4;
  color: #2d3748;
  transition: color 0.3s;
}

.trending-item:hover h4 {
  color: var(--orange);
}

.trending-meta {
  font-size: 11px;
  color: #a0aec0;
}

/* Ads Widget */
.ads-widget {
  overflow: hidden;
  padding: 0;
}

.ads-widget img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar-detail {
    position: static;
  }
}
