/* ============ NPJ BLOG POST STYLES ============ */

.npj-post-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 980px) {
  .npj-post-wrap {
    grid-template-columns: 1fr;
    padding: 0 18px 40px;
  }
}

/* BREADCRUMB */
.npj-post-breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px 0;
  font-size: 13px;
  color: #6b7280;
}
.npj-post-breadcrumb a { color: #0b2d4d; text-decoration: none; font-weight: 700; }
.npj-post-breadcrumb a:hover { text-decoration: underline; }
.npj-post-breadcrumb span { margin: 0 6px; color: #c6a25a; }

/* HERO */
.npj-post-hero {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 0 24px;
}
.npj-post-cat-tag {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(90deg,#c6a25a 0%,#f3dfb0 50%,#c6a25a 100%);
  color: #071a2d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.npj-post-hero h1 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 42px;
  line-height: 1.15;
  color: #07182d;
  font-weight: 900;
  margin: 0 0 18px;
  max-width: 900px;
}
.npj-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}
.npj-post-meta strong { color: #07182d; }
.npj-post-hero-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 18px 38px rgba(0,0,0,.14);
}
.npj-post-hero-img img { width: 100%; display: block; }

@media (max-width: 767px) {
  .npj-post-hero h1 { font-size: 30px; }
}

/* ARTICLE CONTENT */
.npj-post-content {
  font-size: 17px;
  line-height: 1.8;
  color: #2d3748;
}
.npj-post-content h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  color: #07182d;
  margin: 44px 0 18px;
  line-height: 1.25;
  padding-bottom: 12px;
  border-bottom: 3px solid #c6a25a;
  display: inline-block;
}
.npj-post-content h3 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 21px;
  font-weight: 800;
  color: #07182d;
  margin: 32px 0 14px;
}
.npj-post-content p { margin: 0 0 20px; }
.npj-post-content ul, .npj-post-content ol {
  margin: 0 0 24px;
  padding-left: 26px;
}
.npj-post-content li { margin-bottom: 10px; }
.npj-post-content a {
  color: #0b2d4d;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #c6a25a;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.npj-post-content a:hover { color: #c6a25a; }
.npj-post-content strong { color: #07182d; }

/* CTA BLOCK INSIDE ARTICLE */
.npj-post-cta-inline {
  background: linear-gradient(135deg,#07182d 0%,#0b2d4d 60%,#07182d 100%);
  border-left: 5px solid #c6a25a;
  padding: 28px 32px;
  margin: 40px 0;
  color: #fff;
}
.npj-post-cta-inline p { color: rgba(255,255,255,.9); margin-bottom: 16px; }
.npj-post-cta-inline a.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #c6a25a;
  color: #071a2d !important;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
}

/* AUTHOR / DISCLAIMER FOOTER */
.npj-post-disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
}

/* RELATED POSTS */
.npj-related-wrap {
  max-width: 1180px;
  margin: 60px auto 0;
  padding: 50px 24px 0;
  border-top: 1px solid #e5e7eb;
}
.npj-related-head { margin-bottom: 28px; }
.npj-related-head span {
  display: block;
  color: #c6a25a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.npj-related-head h2 {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 28px;
  color: #07182d;
  margin: 0;
}
.npj-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .npj-related-grid { grid-template-columns: 1fr; }
}
.npj-related-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.npj-related-card:hover { box-shadow: 0 14px 30px rgba(0,0,0,.1); transform: translateY(-2px); }
.npj-related-img { height: 160px; overflow: hidden; }
.npj-related-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.npj-related-body { padding: 18px; }
.npj-related-cat {
  font-size: 11px;
  font-weight: 900;
  color: #c6a25a;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.npj-related-title {
  font-size: 15px;
  font-weight: 800;
  color: #07182d;
  line-height: 1.4;
}
