/* KABAR (NEWS) PAGE STYLES */
.berita-page {
  padding-top: 80px;
  background-color: #f9fbfd;
}

/* --- SECTION HEADERS --- */
.news-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 10px;
}

.news-section-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a202c;
  position: relative;
}

.view-all {
  color: #718096;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

.view-all:hover {
  color: var(--orange);
}

/* --- LATEST NEWS SECTION (FEATURED) --- */
.latest-news-container {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 24px;
}

.latest-news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.featured-news-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.featured-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

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

.featured-content {
  padding: 30px;
}

.news-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #718096;
  margin-bottom: 15px;
  font-weight: 600;
}

.news-category {
  color: var(--orange);
  text-transform: uppercase;
}

.featured-content h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #1a202c;
}

.featured-content p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 15px;
}

/* Featured sidebar news */
.featured-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.side-news-card {
  display: flex;
  gap: 20px;
  background: white;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}

.side-news-card:hover {
  transform: translateX(10px);
}

.side-img {
  width: 120px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.side-content h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- POPULAR & GENERAL NEWS GRID --- */
.news-grid-container {
  max-width: 1280px;
  margin: 60px auto;
  padding: 0 24px;
}

.news-standard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.news-card-img {
  height: 220px;
  overflow: hidden;
}

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

.news-card-content {
  padding: 24px;
}

.news-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-content p {
  font-size: 14px;
  color: #718096;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .latest-news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .news-standard-grid {
    grid-template-columns: 1fr;
  }
  
  .side-news-card {
    flex-direction: column;
  }
  
  .side-img {
    width: 100%;
    height: 180px;
  }
}
