
/* ARTICLE PAGE CUSTOM STYLES */
:root {
  --navy-dark: #050d22;
  --navy-mid: #0c204c;
  --gold-metallic: #d4af37;
  --gold-light: #fef08a;
  --text-dark: #0f172a;
  --text-slate: #334155;
  --bg-page: #050d22;
}

body.article-page-body {
  background: #f8fafc;
  color: #1e293b;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
}

.article-hero {
  background: linear-gradient(135deg, #050d22 0%, #0c204c 50%, #061129 100%);
  padding: 120px 0 60px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  pointer-events: none;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-breadcrumb a {
  color: #fef08a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.article-category-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: #fef08a;
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.article-main-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
  color: #cbd5e1;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 50px 0 80px 0;
}

.article-content {
  background: #ffffff;
  padding: 45px 48px;
  border-radius: 20px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.article-featured-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.article-content h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #081738;
  margin: 40px 0 18px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f5f9;
  letter-spacing: -0.01em;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0c204c;
  margin: 25px 0 12px 0;
}

.article-content p {
  font-size: 1.02rem;
  color: #334155;
  margin-bottom: 20px;
  line-height: 1.75;
}

.article-content ul, .article-content ol {
  margin: 0 0 24px 20px;
  color: #334155;
  font-size: 1.02rem;
}

.article-content li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.article-callout {
  border-radius: 14px;
  padding: 22px 24px;
  margin: 28px 0;
  border-left: 5px solid;
}

.article-callout-gold {
  background: #fffdf5;
  border-color: #d4af37;
  color: #78350f;
}

.article-callout-blue {
  background: #eff6ff;
  border-color: #2563eb;
  color: #1e3a8a;
}

.article-callout-title {
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.article-table th {
  background: #081738;
  color: #ffffff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 800;
  font-size: 0.95rem;
}

.article-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.94rem;
}

.article-table tr:nth-child(even) td {
  background: #f8fafc;
}

/* Sidebar */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1.5px solid #e2e8f0;
  padding: 28px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}

.sidebar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #081738;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d4af37;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 12px;
}

.toc-list a {
  color: #475569;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  display: block;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.toc-list a:hover {
  color: #b45309;
  transform: translateX(4px);
}

.cta-sidebar-box {
  background: linear-gradient(135deg, #050d22 0%, #0c204c 100%);
  color: #ffffff;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 14px 35px rgba(5, 13, 34, 0.35);
}

.cta-sidebar-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.cta-sidebar-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.55;
}

.btn-article-cta {
  display: inline-block;
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #d4af37 0%, #c28b38 100%);
  color: #06122d;
  font-weight: 900;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  transition: all 0.25s ease;
}

.btn-article-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
  background: linear-gradient(135deg, #fcd34d 0%, #d4af37 100%);
}

.article-bottom-cta {
  background: linear-gradient(135deg, #050d22 0%, #0c204c 50%, #081738 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 45px 40px;
  margin-top: 45px;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.article-related {
  padding: 60px 0 80px 0;
  background: #f1f5f9;
}

.article-related-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #081738;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 992px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-main-title {
    font-size: 2rem;
  }
  .article-content {
    padding: 30px 24px;
  }
}
