@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap");

:root {
  --nv: #0d1f3c;
  --nv2: #1a3460;
  --st: #1e5fa4;
  --gd: #a67c2a;
  --gd2: #d4a84b;
  --gd3: #fdf5e0;
  --bg: #eef2f7;
  --card: #fff;
  --bdr: #c8d8e8;
  --tx: #111827;
  --mu: #5b6e84;
  --pale: #e8eff8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Source Sans 3", sans-serif; background: var(--bg); color: var(--tx); font-size: 16px; line-height: 1.7; }

/* ── HEADER ── */
.blog-header {
  background: var(--nv);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.blog-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.blog-logo-badge {
  width: 38px;
  height: 38px;
  background: var(--gd2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lora", serif;
  font-weight: 700;
  color: var(--nv);
  font-size: 15px;
  flex-shrink: 0;
}
.blog-logo-info { display: flex; flex-direction: column; }
.blog-logo-name { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2; }
.blog-logo-sub { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.2; }
.blog-nav { display: flex; align-items: center; gap: 4px; }
.blog-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.blog-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.blog-nav .nav-cta {
  background: var(--gd2);
  color: var(--nv);
  font-weight: 700;
  margin-left: 8px;
}
.blog-nav .nav-cta:hover { background: var(--gd); color: #fff; }
@media (max-width: 600px) {
  .blog-nav a:not(.nav-cta) { display: none; }
}

/* ── BREADCRUMB ── */
.blog-breadcrumb {
  background: #fff;
  border-bottom: 1px solid var(--bdr);
  padding: 9px 24px;
  font-size: 13px;
  color: var(--mu);
}
.blog-breadcrumb a { color: var(--st); text-decoration: none; }
.blog-breadcrumb a:hover { text-decoration: underline; }
.blog-breadcrumb span { margin: 0 6px; color: var(--bdr); }

/* ── HERO ── */
.blog-hero {
  background: linear-gradient(135deg, var(--nv) 0%, #1a3460 60%, #0d3d7a 100%);
  color: #fff;
  padding: 56px 24px 48px;
  text-align: center;
}
.blog-hero .hero-tag {
  display: inline-block;
  background: rgba(212,168,75,0.2);
  color: var(--gd2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212,168,75,0.3);
  margin-bottom: 16px;
}
.blog-hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  max-width: 780px;
  margin: 0 auto 16px;
}
.blog-hero .hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.blog-hero .meta {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.meta-dot { color: rgba(255,255,255,0.3); }

/* ── LAYOUT ── */
.blog-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .blog-container { grid-template-columns: 1fr; }
  .blog-sidebar { order: -1; }
}

/* ── ARTICLE BODY ── */
.blog-article {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 1px 12px rgba(13,31,60,0.07);
}
@media (max-width: 600px) { .blog-article { padding: 24px 18px; } }
.blog-article h2 {
  font-family: "Lora", serif;
  font-size: 22px;
  color: var(--nv);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bdr);
}
.blog-article h2:first-child { margin-top: 0; }
.blog-article h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--nv2);
  margin: 28px 0 10px;
}
.blog-article h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nv);
  margin: 20px 0 8px;
}
.blog-article p { margin-bottom: 16px; line-height: 1.8; font-size: 16px; }
.blog-article ul, .blog-article ol { margin: 0 0 16px 24px; }
.blog-article li { margin-bottom: 9px; line-height: 1.75; font-size: 16px; }
.blog-article strong { color: var(--nv); }
.blog-article a { color: var(--st); }
.blog-article a:hover { text-decoration: underline; }
.blog-article hr { border: none; border-top: 1px solid var(--bdr); margin: 32px 0; }

/* ── TABLE OF CONTENTS ── */
.toc {
  background: var(--gd3);
  border-left: 4px solid var(--gd2);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.toc-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gd);
  margin-bottom: 12px;
}
.toc ol { margin-left: 18px; }
.toc li { margin-bottom: 7px; }
.toc a { color: var(--st); font-size: 14px; text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* ── INFO BOXES ── */
.info-box {
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.7;
}
.info-box.blue { background: #e8f0fe; border-left: 4px solid var(--st); }
.info-box.gold { background: var(--gd3); border-left: 4px solid var(--gd2); }
.info-box.green { background: #f0fdf4; border-left: 4px solid #16a34a; }
.info-box.navy { background: var(--pale); border-left: 4px solid var(--nv); }
.info-box strong { display: block; margin-bottom: 4px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.4px; }

/* ── TABLE ── */
.blog-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; overflow-x: auto; display: block; }
.blog-table th { background: var(--nv); color: #fff; padding: 11px 14px; text-align: left; white-space: nowrap; }
.blog-table td { padding: 10px 14px; border-bottom: 1px solid var(--bdr); vertical-align: top; }
.blog-table tr:nth-child(even) td { background: #f8fafc; }

/* ── STEP BOXES ── */
.step-list { display: flex; flex-direction: column; gap: 20px; margin: 20px 0; }
.step-item { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--nv);
  color: var(--gd2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-top: 2px;
}
.step-content h4 { font-weight: 700; color: var(--nv); margin-bottom: 6px; font-size: 16px; }
.step-content p { color: var(--mu); font-size: 15px; margin: 0; line-height: 1.65; }

/* ── HIGHLIGHT BOX (CTA inside article) ── */
.article-cta {
  background: linear-gradient(135deg, var(--nv) 0%, var(--nv2) 100%);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 36px 0;
  color: #fff;
  text-align: center;
}
.article-cta h3 { font-family: "Lora", serif; color: #fff; font-size: 20px; margin-bottom: 8px; }
.article-cta p { color: rgba(255,255,255,0.75); margin-bottom: 20px; font-size: 15px; }
.article-cta a {
  display: inline-block;
  background: var(--gd2);
  color: var(--nv);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.15s;
}
.article-cta a:hover { background: var(--gd); color: #fff; }

/* ── SIDEBAR ── */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--bdr) transparent;
}
.blog-sidebar::-webkit-scrollbar { width: 4px; }
.blog-sidebar::-webkit-scrollbar-thumb { background: var(--bdr); border-radius: 4px; }
.blog-sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 1px 12px rgba(13,31,60,0.07);
}
.sidebar-card h4 {
  font-family: "Lora", serif;
  font-size: 16px;
  color: var(--nv);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bdr);
}
.cta-btn {
  display: block;
  text-align: center;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.15s, transform 0.15s;
  margin-top: 10px;
}
.cta-btn:hover { transform: translateY(-1px); }
.cta-btn.gold { background: var(--gd2); color: var(--nv); }
.cta-btn.gold:hover { background: var(--gd); color: #fff; }
.cta-btn.navy { background: var(--nv); color: #fff; }
.cta-btn.navy:hover { background: var(--nv2); }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { padding: 8px 0; border-bottom: 1px solid var(--bdr); font-size: 14px; }
.sidebar-links li:last-child { border: none; padding-bottom: 0; }
.sidebar-links a { color: var(--st); text-decoration: none; line-height: 1.5; display: block; }
.sidebar-links a:hover { color: var(--nv); }
.sidebar-links a::before { content: "→ "; color: var(--gd2); font-weight: 700; }

/* ── BLOG INDEX ── */
.index-hero {
  background: linear-gradient(135deg, var(--nv) 0%, #1a3460 100%);
  color: #fff;
  padding: 56px 24px 48px;
  text-align: center;
}
.index-hero h1 { font-family: "Lora", serif; font-size: clamp(24px, 4vw, 40px); margin-bottom: 12px; }
.index-hero p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 600px; margin: 0 auto; }
.blog-grid-wrap { max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mu);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bdr);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 12px rgba(13,31,60,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(13,31,60,0.13); }
.blog-card-top {
  background: var(--nv);
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-tag { color: var(--gd2); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.card-time { color: rgba(255,255,255,0.5); font-size: 11px; }
.blog-card-body { padding: 22px; flex: 1; }
.blog-card-body h3 { font-family: "Lora", serif; font-size: 17px; color: var(--nv); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: var(--mu); line-height: 1.6; }
.blog-card-footer { padding: 0 22px 20px; }
.blog-card-footer span { color: var(--st); font-size: 14px; font-weight: 600; }
.blog-card-footer span::after { content: " →"; }
.coming-soon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 20px; }
.coming-soon-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  border: 2px dashed var(--bdr);
  opacity: 0.7;
}
.coming-soon-card h4 { font-size: 15px; color: var(--nv); margin-bottom: 6px; line-height: 1.4; }
.coming-soon-card p { font-size: 13px; color: var(--mu); }
.coming-label { display: inline-block; background: var(--pale); color: var(--mu); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; padding: 2px 8px; border-radius: 10px; margin-bottom: 8px; }

/* ── FOOTER ── */
.blog-footer {
  background: var(--nv);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 28px 24px;
  font-size: 13px;
  margin-top: 40px;
}
.blog-footer a { color: var(--gd2); text-decoration: none; }
.blog-footer a:hover { text-decoration: underline; }
.blog-footer-links { margin-bottom: 10px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ── TAG CHIPS ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
.tag {
  display: inline-block;
  background: var(--pale);
  color: var(--nv2);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
