/* Victory Pro blog post page styles */

/* Nav quote button: dark text on gold for proper contrast (white-on-gold reads as a blank gold pill on these pages). */
.vp-quote-btn,
.vp-quote-btn:visited {
  color: var(--vp-ink);
}
.vp-mb-cta,
.vp-mb-cta:visited {
  color: var(--vp-ink);
}

.post-hero {
  background: var(--vp-ink);
  color: white;
  padding: 168px 32px 72px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.post-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 78% 20%, rgba(201,169,110,0.10), transparent 60%);
  pointer-events: none;
}
.post-hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.post-breadcrumb {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 24px; font-weight: 600;
}
.post-breadcrumb a { color: var(--vp-gold); }
.post-breadcrumb a:hover { color: white; }
.post-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--vp-ink);
  background: var(--vp-gold);
  padding: 6px 12px; border-radius: 4px;
  margin-bottom: 22px;
}
.post-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05; margin: 0 0 26px;
  letter-spacing: -0.02em; text-wrap: balance;
}
.post-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.post-meta .dot {
  width: 3px; height: 3px; background: rgba(255,255,255,0.4); border-radius: 50%;
}

.post-body {
  background: var(--vp-cream);
  padding: 80px 32px 100px;
}
.post-body-inner {
  max-width: 740px; margin: 0 auto;
  font-family: "Manrope", system-ui, sans-serif;
  color: rgba(11,14,18,0.86);
}
.post-body .lede {
  font-size: 20px; line-height: 1.55; color: var(--vp-ink);
  margin: 0 0 36px; font-weight: 500;
}
.post-body p { font-size: 17px; line-height: 1.72; margin: 0 0 22px; }
.post-body h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.01em;
  color: var(--vp-ink); margin: 44px 0 18px;
}
.post-body h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 21px; line-height: 1.25;
  color: var(--vp-ink); margin: 32px 0 14px;
}
.post-body ul, .post-body ol { margin: 0 0 24px; padding-left: 22px; }
.post-body li { font-size: 17px; line-height: 1.7; margin-bottom: 10px; }
.post-body li strong { color: var(--vp-ink); }
.post-body a { color: var(--vp-gold); text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--vp-blue-deep); }

.post-cta {
  margin-top: 56px; padding: 36px 32px;
  background: var(--vp-ink); color: white;
  border-radius: 8px; text-align: center;
}
.post-cta h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; line-height: 1.2; margin: 0 0 10px; color: white;
}
.post-cta p { color: rgba(255,255,255,0.7); margin: 0 0 22px; font-size: 15px; }
/* Specificity bump: .post-body a (line 84) is 0,1,1 and was winning over
   .post-cta-btn (0,1,0), painting the button text gold-on-gold = invisible.
   Scoping to .post-body .post-cta-btn raises specificity to 0,2,0 so the
   button text + decoration win on every post (legacy + auto-generated). */
.post-body .post-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--vp-gold); color: var(--vp-ink);
  padding: 13px 26px; border-radius: 999px;
  font-weight: 700; font-size: 14px; letter-spacing: 0.02em;
  text-decoration: none;
}
.post-body .post-cta-btn:hover { background: white; color: var(--vp-ink); }

.post-more {
  background: white;
  padding: 72px 32px 96px;
  border-top: 1px solid var(--vp-line-light);
}
.post-more-inner { max-width: 1100px; margin: 0 auto; }
.post-more-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--vp-gold);
  margin-bottom: 28px;
}
.post-more-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.post-more-card {
  display: block;
  background: var(--vp-cream);
  border: 1px solid var(--vp-line-light);
  border-radius: 8px;
  padding: 28px 24px;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  min-height: 160px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.post-more-card:hover {
  transform: translateY(-3px);
  border-color: var(--vp-gold);
  box-shadow: 0 16px 32px rgba(11,14,18,0.06);
}
.post-more-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--vp-gold);
  margin-bottom: 12px;
}
.post-more-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; line-height: 1.3;
  color: var(--vp-ink); letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .post-more-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .post-hero { padding: 130px 20px 56px; }
  .post-hero h1 { font-size: clamp(30px, 7vw, 42px); }
  .post-body { padding: 56px 20px 72px; }
  .post-body .lede { font-size: 18px; }
  .post-body p, .post-body li { font-size: 16px; }
  .post-body h2 { font-size: 24px; }
  .post-more { padding: 56px 20px 80px; }
}
