/* =========================================================
   VASARUMA — ARTIKEL BLOG PAGE STYLES (artikel.css)
   File terpisah, dipakai bersama oleh SEMUA halaman artikel blog
   (bukan cuma "10 tips" ini) supaya artikel berikutnya tinggal
   reuse file yang sama. Navbar/drawer/footer tetap pakai css/style.css.
   ========================================================= */

/* ===== BREADCRUMB ===== */
.art-breadcrumb {
  padding: 14px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.art-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.art-breadcrumb a { color: var(--muted); text-decoration: none; }
.art-breadcrumb a:hover { color: var(--navy); }
.art-breadcrumb li[aria-current="page"] { color: var(--navy); font-weight: 600; }
.art-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: rgba(0,61,102,0.3);
}

/* ===== ARTICLE HERO ===== */
.art-hero { padding: 22px 20px 0; }
.art-hero-tag {
  display: inline-block;
  background: var(--gold-light);
  color: #7a520c;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.art-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 6.2vw, 34px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.art-hero-sub {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.art-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.art-meta-row span { display: inline-flex; align-items: center; gap: 5px; }
.art-meta-row i { color: var(--gold); }

.art-hero-img-wrap { margin: 18px 0 0; }
.art-hero-img { width: 100%; height: 220px; object-fit: cover; display: block; border-radius: var(--r-md); }
.art-hero-caption {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  padding: 8px 20px 0;
  font-style: italic;
}

/* ===== TABLE OF CONTENTS ===== */
.art-toc {
  margin: 22px 20px;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 18px;
}
.art-toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 10px;
}
.art-toc ol { list-style: none; counter-reset: att; }
.art-toc li { counter-increment: att; margin-bottom: 8px; }
.art-toc li:last-child { margin-bottom: 0; }
.art-toc a {
  font-size: 13.5px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.art-toc a::before {
  content: counter(att) ". ";
  color: var(--gold);
  font-weight: 700;
}
.art-toc a:hover { text-decoration: underline; }

/* ===== ARTICLE BODY ===== */
.art-body { padding: 6px 20px 8px; max-width: 720px; margin: 0 auto; }
.art-body > p.art-intro {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.art-tip {
  margin-bottom: 30px;
  scroll-margin-top: 80px;
}
.art-tip:last-of-type { margin-bottom: 0; }
.art-tip-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.art-tip-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-tip h2 {
  font-family: var(--font-display);
  font-size: 18.5px;
  color: var(--navy);
  line-height: 1.35;
}
.art-tip p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 10px;
}
.art-tip p:last-child { margin-bottom: 0; }
.art-tip ul { list-style: none; margin: 10px 0; }
.art-tip ul li {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.art-tip ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Inline CTA box, dipakai di tengah artikel */
.art-inline-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #002944 100%);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  text-align: center;
  margin: 28px 0;
}
.art-inline-cta h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}
.art-inline-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin-bottom: 16px;
}
.art-inline-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
}

.art-conclusion {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.art-conclusion h2 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 10px;
}
.art-conclusion p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

/* ===== AUTHOR BOX ===== */
.art-author-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 16px;
  margin: 30px 20px 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.art-author-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
}
.art-author-info strong { display: block; font-size: 13.5px; color: var(--navy); }
.art-author-info span { font-size: 12px; color: var(--muted); }

/* ===== SHARE ROW ===== */
.art-share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 0;
  max-width: 720px;
  margin: 0 auto;
}
.art-share-label { font-size: 12px; color: var(--muted); font-weight: 600; }
.art-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
}

/* ===== RELATED ARTICLES ===== */
.art-related {
  padding: 8px 20px 8px;
}
.art-related-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 14px;
}
.art-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.art-related-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.art-related-card img { width: 100%; height: 92px; object-fit: cover; display: block; }
.art-related-card-body { padding: 10px; }
.art-related-card-body span.tag {
  display: inline-block;
  background: var(--surface);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  margin-bottom: 6px;
}
.art-related-card-body h4 {
  font-family: var(--font-display);
  font-size: 12.5px;
  color: var(--navy);
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ===== RESPONSIVE (tablet+) ===== */
@media (min-width: 640px) {
  .art-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 720px) {
  .art-hero, .art-body, .art-breadcrumb, .art-related { padding-left: 40px; padding-right: 40px; }
  .art-toc, .art-author-box { margin-left: 40px; margin-right: 40px; }
  .art-share-row { padding-left: 40px; padding-right: 40px; }
  .art-hero-img { height: 340px; }
  .art-related-grid { grid-template-columns: repeat(4, 1fr); }
}
