/* ── News Article Styles ── */
/* Tambahkan ke stylesheet utama Anda, atau include sebagai file terpisah */

.news-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* Header */
.article-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1e2d45;
}

.article-category {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4fc3f7;
  border: 1px solid #1e4a6a;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.article-header h1 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #5a7a96;
}

.article-meta span::before {
  margin-right: 6px;
}

/* Body */
.article-body {
  font-size: 15px;
  line-height: 1.8;
  color: #c8d8e8;
}

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

.article-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 36px 0 14px;
  padding-top: 8px;
  border-top: 1px solid #1e2d45;
}

.article-body ul {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}

.article-body ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid #131c2a;
  color: #9db0c8;
  font-size: 14px;
}

.article-body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #4fc3f7;
  font-size: 12px;
  top: 10px;
}

.article-body ul li strong {
  color: #e0ecf8;
}

.article-body em {
  color: #81d4fa;
  font-style: normal;
  font-weight: 500;
}

.article-body strong {
  color: #e0ecf8;
  font-weight: 600;
}

/* CTA Box */
.article-cta {
  margin-top: 48px;
  padding: 32px;
  background: #0d1f3c;
  border: 1px solid #1e4a6a;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: #4fc3f7;
  color: #0f1117;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-primary:hover { background: #81d4fa; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #4fc3f7;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #1e4a6a;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: #4fc3f7;
  color: #81d4fa;
}

@media (max-width: 600px) {
  .news-article { padding: 24px 16px 60px; }
  .article-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
}
