body {
  background: #181b23;
  font-family: "Poppins", sans-serif;
  color: #e0e6ed;
  margin: 0;
  padding: 0;
}

/* =========================
   DAFTAR BERITA (GRID)
=========================== */
.berita-page {
  padding: 3rem 1rem;
}

.berita-page-title {
  color: #ffd700;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.berita-container {
  max-width: 1200px;
  margin: auto;
}

.berita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.berita-item {
  background: #232733;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(255, 215, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.berita-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}

.berita-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.berita-body {
  padding: 1.2rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.berita-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  text-decoration: none;
  margin-bottom: 0.6rem;
  display: block;
}

.berita-title:hover {
  text-decoration: underline;
  color: #ffffff;
}

.berita-meta {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.berita-snippet {
  font-size: 1.05rem;
  color: #e0e6ed;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.read-more {
  text-decoration: none;
  font-weight: 600;
  color: #ffd700;
  margin-top: auto;
}

.read-more:hover {
  color: #fff;
  text-decoration: underline;
}

/* =========================
   DETAIL BERITA
=========================== */
.berita-detail-section {
  padding: 3rem 1rem;
}

.container-berita-detail {
  background: #232733;
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(255, 215, 0, 0.1);
}

.judul-berita {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.6rem;
}

.meta-berita {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1.2rem;
}

.gambar-berita img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.8rem;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.2);
}

.isi-berita {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  color: #e0e6ed;
}

.back-link {
  margin-top: 2rem;
  text-align: right;
}

.back-link a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

.back-link a:hover {
  text-decoration: underline;
  color: #fff;
}

/* =========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .judul-berita {
    font-size: 1.7rem;
  }

  .berita-snippet {
    font-size: 1rem;
  }

  .isi-berita {
    font-size: 1rem;
  }

  .berita-grid {
    grid-template-columns: 1fr;
  }
}
