/* === KHUSUS DETAIL ARTIKEL === */
.container-artikel-detail {
  max-width: 1250px;
  margin: 140px auto 100px auto;
  padding: 50px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

/* Judul Artikel */
.container-artikel-detail h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

/* Metadata Artikel */
.container-artikel-detail .text-muted {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 25px;
}

/* Gambar Artikel */
.container-artikel-detail img.img-fluid {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Isi Artikel */
.container-artikel-detail .isi-artikel {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: justify;
}

/* Tombol Kembali */
.btn-kembali {
  display: inline-block;
  padding: 12px 25px;
  background-color: #6c757d;
  color: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-kembali:hover {
  background-color: #5a6268;
}

/* Animasi */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
