/* ===========================
    DOTY 2025 DETAIL PAGE
=========================== */

/* Batasi lebar konten seperti screenshot Hyundai */
.article-content {
  max-width: 780px;
  margin: 0 auto;
}

/* Badge kategori */
.news-category {
  display: inline-block;
  background: #0a438b;
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* Tanggal */
.news-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Judul */
.news-title {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 25px;
  line-height: 1.3;
  color: #000;
  font-family: 'Hyundai Sans', Arial, sans-serif;
}

/* Gambar utama (Hero image) */
.article-main-img {
  width: 100%;
  border-radius: 6px;
  margin: 0 0 25px; /* lebih kecil seperti screenshot */
  object-fit: cover;
}

/* Gambar selipan di tengah artikel */
.article-inline-img {
  width: 100%;
  border-radius: 6px;
  margin: 25px 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12); /* tipis elegan */
}

/* Paragraf */
.article-content p {
  font-size: 18px;          /* lebih besar */
  line-height: 1.75;        /* lebih longgar */
  margin-bottom: 22px;      /* jarak antar paragraf */
  color: #000;              /* lebih gelap */
  font-family: 'Hyundai Sans', Arial, sans-serif;
}

/* Subjudul */
.article-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 700;
  color: #002368;
}

/* List */
.article-content ul {
  margin: 20px 0 25px 20px;
  line-height: 1.75;
  font-size: 18px;
  color: #000;
}

/* Blockquote */
.article-content blockquote {
  border-left: 4px solid #0a438b;
  padding-left: 18px;
  margin: 30px 0;
  font-size: 18px;
  line-height: 1.75;
  font-style: italic;
  color: #222;
}

/* Responsive */
@media (max-width: 600px) {
  .article-content {
    padding: 0 15px;
  }
  .news-title {
    font-size: 28px;
  }
  .article-main-img {
    border-radius: 4px;
  }
}
