
/* ===== ARTICLE HERO ===== */
.article-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 60%, #1a1a1a 100%);
  padding: 90px 20px 0;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(196,155,80,0.14) 0%, transparent 65%);
}
.article-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.article-breadcrumb a { color: #c49b50; text-decoration: none; }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-breadcrumb i { font-size: 9px; }
.article-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.article-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c49b50;
  background: rgba(196,155,80,0.12);
  border: 1px solid rgba(196,155,80,0.25);
  padding: 4px 12px;
  border-radius: 50px;
}
.article-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 5.5vw, 2.8rem);
  color: #fff;
  line-height: 1.22;
  margin-bottom: 16px;
}
.article-hero h1 em { font-style: italic; color: #c49b50; }
.article-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 700px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 28px;
}
.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.article-meta-item i { color: #c49b50; font-size: 11px; }
.article-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  display: block;
  margin-top: 8px;
  filter: brightness(0.85);
}

/* ===== ARTICLE LAYOUT ===== */
.article-layout {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start;
}

/* ===== ARTICLE CONTENT ===== */
.article-content {}

/* TOC */
.toc-box {
  background: #faf8f4;
  border: 1px solid #f0ebe3;
  border-left: 4px solid #c49b50;
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
  margin-bottom: 36px;
}
.toc-box-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-box-title i { color: #c49b50; font-size: 14px; }
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li { 
  padding: 4px 0;
  border-bottom: 1px solid #f0ebe3;
}
.toc-list li:last-child { border-bottom: none; }
.toc-list a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
}
.toc-list a:hover { color: #c49b50; }
.toc-list a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c49b50;
  flex-shrink: 0;
}

/* Article typography */
.article-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 4vw, 1.65rem);
  color: #1a1a1a;
  margin: 40px 0 14px;
  padding-top: 8px;
  line-height: 1.3;
  scroll-margin-top: 80px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin: 24px 0 10px;
  scroll-margin-top: 80px;
}
.article-body p {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}
.article-body ul, .article-body ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
.article-body li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 6px;
}
.article-body strong { color: #1a1a1a; font-weight: 600; }
.article-body a { color: #c49b50; text-decoration: underline; }

/* Highlight box */
.article-highlight {
  background: linear-gradient(135deg, #fdf8f0, #fef3dc);
  border-left: 4px solid #c49b50;
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.article-highlight p {
  font-size: 15px;
  font-style: italic;
  color: #5c4a1e;
  line-height: 1.8;
  margin: 0 !important;
}

/* Info box */
.article-infobox {
  background: #fff;
  border: 1.5px solid #f0ebe3;
  border-radius: 14px;
  padding: 20px 22px;
  margin: 28px 0;
}
.article-infobox-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-infobox-title i { color: #c49b50; }
.infobox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.infobox-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
}
.infobox-item i { color: #c49b50; font-size: 11px; margin-top: 3px; flex-shrink: 0; }


/* Gaya card grid inside article */
.article-gaya-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 28px;
}
.article-gaya-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid #f0ebe3;
}
.article-gaya-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.article-gaya-card:hover img { transform: scale(1.06); }
.article-gaya-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,0.85) 0%, rgba(10,20,10,0.05) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}
.article-gaya-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.article-gaya-sub { font-size: 11px; color: rgba(255,255,255,0.65); }

/* Price table inside article */
.article-price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f0ebe3;
}
.article-price-table th {
  background: linear-gradient(135deg, #1a1a1a, #2d2416);
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}
.article-price-table th:last-child { text-align: right; }
.article-price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0ebe3;
  color: #444;
}
.article-price-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #c49b50;
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
}
.article-price-table tr:last-child td { border-bottom: none; }
.article-price-table tr:nth-child(even) td { background: #faf8f4; }

/* Area chips inside article */
.article-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}
.article-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: #555;
  background: #f7f3ec;
  border: 1px solid #e8e0d4;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 500;
}
.article-area-chip i { color: #c49b50; font-size: 10px; }

/* CTA block inside article */
.article-cta {
  background: linear-gradient(135deg, #1a1a1a, #2d2416);
  border-radius: 16px;
  padding: 26px 22px;
  margin: 32px 0;
  text-align: center;
}
.article-cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 8px;
}
.article-cta-title em { font-style: italic; color: #c49b50; }
.article-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px !important;
}
.article-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: opacity .2s;
}
.article-cta-btn:hover { opacity: 0.88; }

/* Divider */
.article-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #f0ebe3, transparent);
  margin: 36px 0;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #f0ebe3;
}
.article-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  color: #888;
  background: #f7f3ec;
  padding: 5px 11px;
  border-radius: 50px;
  text-decoration: none;
  transition: color .15s, background .15s;
}
.article-tag:hover { background: rgba(196,155,80,0.12); color: #c49b50; }
.article-tag i { font-size: 9px; }

/* ===== SIDEBAR ===== */
.article-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: #fff;
  border: 1.5px solid #f0ebe3;
  border-radius: 14px;
  overflow: hidden;
}
.sidebar-card-head {
  background: linear-gradient(135deg, #1a1a1a, #2d2416);
  padding: 14px 18px;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card-head i { color: #c49b50; }
.sidebar-card-body { padding: 16px 18px; }
.sidebar-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: opacity .2s;
}
.sidebar-wa-btn:hover { opacity: 0.88; }
.sidebar-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f7f3ec;
  font-size: 13px;
}
.sidebar-price-row:last-child { border-bottom: none; }
.sidebar-price-row span:first-child { color: #666; }
.sidebar-price-row span:last-child { font-weight: 700; color: #c49b50; font-family: 'DM Serif Display', serif; }
.sidebar-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  padding: 5px 0;
}
.sidebar-feature i { color: #25D366; font-size: 11px; }
.sidebar-related a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f7f3ec;
  text-decoration: none;
}
.sidebar-related a:last-child { border-bottom: none; }
.sidebar-related-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fdf3dc, #fbe8b4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #c49b50;
}
.sidebar-related-title {
  font-size: 12.5px;
  color: #444;
  line-height: 1.45;
  font-weight: 500;
}
.sidebar-related-cat {
  font-size: 10.5px;
  color: #aaa;
  margin-top: 2px;
}

/* ===== RELATED ARTICLES ===== */
.related-section {
  background: #f7f5f2;
  padding: 48px 20px;
}
.related-inner { max-width: 860px; margin: 0 auto; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.related-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f0ebe3;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: block;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.09); }
.related-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #f0ebe3;
  display: block;
}
.related-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f7f3ec, #ede5d8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #c49b50;
  opacity: 0.5;
}
.related-card-body { padding: 14px 16px 18px; }
.related-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c49b50;
  margin-bottom: 6px;
}
.related-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .infobox-grid { grid-template-columns: 1fr; }
  .article-hero-img { aspect-ratio: 16/9; border-radius: 0; }
}
@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
}