.article-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  padding: 56px 0 40px;
}

.article-header .breadcrumb-item a,
.article-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.article-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
}

.article-title-main {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.article-meta-main {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.article-meta-main span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- Gambar Unggulan --- */
.article-content-section {
  padding: 52px 0 80px;
  background: #f8f7f4;
}

.article-featured-image {
  margin-bottom: 44px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

.article-featured-image img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

/* --- Konten Artikel --- */
.article-content {
  font-size: 1.08rem;
  line-height: 1.92;
  color: #2d2d2d;
}

.article-content p {
  margin: 0 0 1.6em;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.6em 0 0.7em;
  color: #111;
  letter-spacing: -0.01em;
}

.article-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2em 0 0.6em;
  color: #111;
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.6em;
  padding-left: 1.6em;
}

.article-content li {
  margin-bottom: 0.5em;
}

.article-content a {
  color: #0f3460;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content blockquote {
  border-left: 4px solid #0f3460;
  margin: 2.2em 0;
  padding: 1rem 1.6rem;
  background: #eef2fa;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #445;
}

.article-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2.6em auto;
  border-radius: 12px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.article-content img:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.14),
    0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Gambar lebar penuh (mis. infografis) */
.article-content img.img-full {
  width: 100%;
  border-radius: 14px;
  margin: 2.4em 0;
}

/* Gambar dengan keterangan (figure + figcaption) */
.article-content figure {
  margin: 2.6em 0;
  text-align: center;
}

.article-content figure img {
  margin-bottom: 0.75em;
}

.article-content figcaption {
  font-size: 0.82rem;
  color: #888;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* --- Footer Artikel --- */
.article-footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid #e5e0d8;
}

.article-share .btn {
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    opacity 0.2s,
    transform 0.15s;
}

.article-share .btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .article-header {
    padding: 36px 0 28px;
  }

  .article-title-main {
    font-size: 1.5rem;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.82;
  }

  .article-content img {
    margin: 1.8em auto;
    border-radius: 8px;
  }

  .article-featured-image {
    border-radius: 10px;
  }
}
