/* ============================================
   Blog Post Styles
   ============================================ */
.post-hero {
  background: linear-gradient(160deg, rgba(15,28,53,0.92) 0%, rgba(26,43,74,0.75) 60%, rgba(15,28,53,0.92) 100%), radial-gradient(ellipse at top left, #1a2b4a, #0f1c35 70%);
  color: white;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.post-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='1' cy='1' r='1' fill='%23c9a96e' opacity='0.1'/></svg>");
  background-size: 40px 40px; pointer-events: none;
}
.post-hero .container { position: relative; z-index: 2; max-width: 880px; }
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.breadcrumbs a { color: var(--gold); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs .sep { color: rgba(255,255,255,0.3); }
.post-hero .category-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.post-hero h1 {
  color: white;
  margin-bottom: 24px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.15;
}
.post-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.post-meta .author {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: white;
}
.post-meta .author-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.post-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-meta .meta-item svg { color: var(--gold); }

.post-cover {
  width: 100%;
  max-width: 1080px;
  margin: -40px auto 0;
  padding: 0 32px;
  position: relative;
  z-index: 3;
}
.post-cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.post-body {
  background: white;
  padding: 80px 0 100px;
}
.post-body .container { max-width: 820px; }
.article {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}
.article > * + * { margin-top: 24px; }
.article p { color: #1f2d4a; }
.article p.lede {
  font-size: 21px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--divider);
  padding-bottom: 32px;
  margin-bottom: 16px;
}
.article h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--navy);
  line-height: 1.25;
  margin-top: 48px !important;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
.article h2::before {
  content: ''; position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.article h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-top: 36px !important;
  line-height: 1.35;
}
.article ul, .article ol {
  padding-left: 28px;
  margin-top: 16px !important;
}
.article ul li, .article ol li {
  margin-bottom: 10px;
  color: #1f2d4a;
  padding-left: 6px;
}
.article ul li::marker { color: var(--gold); content: '◆  '; }
.article a { color: var(--gold-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; font-weight: 600; }
.article a:hover { color: var(--gold); }
.article strong { color: var(--navy); font-weight: 700; }
.article blockquote {
  border-left: 4px solid var(--gold);
  background: var(--bg);
  padding: 24px 28px;
  margin: 32px 0 !important;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
  border-radius: 0 12px 12px 0;
}
.article .callout {
  background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(201,169,110,0.06));
  border: 1px solid rgba(201,169,110,0.3);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0 !important;
}
.article .callout strong {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.article .callout p { color: var(--text); font-size: 15px; line-height: 1.7; margin: 0 !important; }
.article .info-box {
  background: rgba(26,43,74,0.04);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0 !important;
  border: 1px solid var(--divider);
}
.article .info-box h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
}
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0 !important;
  font-size: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.article table th {
  background: var(--navy);
  color: white;
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.article table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--divider);
  color: #1f2d4a;
}
.article table tr:last-child td { border-bottom: none; }
.article table tr:nth-child(even) td { background: var(--bg); }

.post-cta {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  color: white;
}
.post-cta h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: white;
  margin-bottom: 12px;
}
.post-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.post-cta .btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.post-share {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.post-share .label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.post-share .share-buttons { display: flex; gap: 8px; }
.post-share .share-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.post-share .share-btn:hover { background: var(--gold); color: white; border-color: var(--gold); transform: translateY(-2px); }

/* Related posts */
.related-posts {
  background: var(--bg);
  padding: 80px 0;
}
.related-posts .section-head { text-align: left; max-width: none; margin-bottom: 40px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .post-hero { padding: 110px 0 60px; }
  .post-hero h1 { font-size: 30px; }
  .breadcrumbs { font-size: 12px; gap: 6px; }
  .post-cover { padding: 0 20px; }
  .post-cover img { height: 260px; border-radius: 12px; }
  .post-body { padding: 60px 0 80px; }
  .article { font-size: 16px; }
  .article p.lede { font-size: 18px; }
  .article h2 { font-size: 26px; }
  .article h3 { font-size: 19px; }
  .article blockquote { padding: 20px 22px; font-size: 18px; }
  .article table { font-size: 14px; }
  .article table th, .article table td { padding: 10px 12px; }
  .post-cta { padding: 28px 22px; }
  .post-cta h3 { font-size: 22px; }
  .related-grid { grid-template-columns: 1fr; }
}
