/* ══════════════════════════════════════════════
   BLOG POST — SHARED STYLES
   Used by all individual blog post pages
   ══════════════════════════════════════════════ */

/* ── Post Header ── */
.post-header {
    padding: 10rem 2rem 3rem; max-width: 800px; margin: 0 auto; text-align: center;
}
.post-category {
    display: inline-flex; align-items: center; gap: 6px;
    padding: .4rem .9rem; border-radius: 50px;
    font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.post-category.strategy { background: rgba(230,105,88,.1); color: var(--salmon); }
.post-category.financial { background: rgba(245,172,35,.1); color: var(--lemon); }
.post-category.emotional { background: rgba(142,170,61,.1); color: var(--lime-deep); }
.post-category.legal { background: rgba(35,31,32,.08); color: var(--warm-gray); }
.post-category.coparenting { background: rgba(142,170,61,.1); color: var(--lime-deep); }

.post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem;
}
.post-title em { font-style: italic; color: var(--salmon); }

.post-meta {
    display: flex; align-items: center; justify-content: center;
    gap: .75rem; flex-wrap: wrap;
    font-size: .82rem; font-weight: 400; opacity: .45;
}
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

/* ── Post Hero Image ── */
.post-hero-img {
    max-width: 900px; margin: 0 auto 3rem; padding: 0 2rem;
}
.post-hero-img-inner {
    aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(245,172,35,.06) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.post-hero-img-inner span {
    font-size: .78rem; font-weight: 400; opacity: .25;
}

/* ── Article Body ── */
.post-body {
    max-width: 720px; margin: 0 auto; padding: 0 2rem 4rem;
}
.post-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 400; line-height: 1.3;
    margin: 2.5rem 0 1rem; color: var(--warm-gray);
}
.post-body h2 em { font-style: italic; color: var(--salmon); }
.post-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; font-weight: 600;
    margin: 2rem 0 .75rem; color: var(--warm-gray);
}
.post-body p {
    font-size: 1rem; font-weight: 400; line-height: 1.9;
    color: var(--warm-gray); opacity: .7; margin-bottom: 1.25rem;
}
.post-body p strong { font-weight: 500; opacity: 1; }
.post-body a { color: var(--salmon); font-weight: 400; text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { text-decoration-color: var(--salmon); }

/* Lists */
.post-body ul, .post-body ol {
    margin: 1.25rem 0 1.5rem 1.5rem;
}
.post-body li {
    font-size: .95rem; font-weight: 400; line-height: 1.8;
    color: var(--warm-gray); opacity: .7; margin-bottom: .5rem;
}
.post-body li strong { font-weight: 500; opacity: 1; }

/* Blockquote / Pull quote */
.post-body blockquote {
    border-left: 3px solid var(--salmon); margin: 2rem 0;
    padding: 1.25rem 0 1.25rem 1.75rem;
}
.post-body blockquote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-style: italic; font-weight: 400;
    line-height: 1.5; opacity: .85; margin-bottom: 0;
    color: var(--warm-gray);
}

/* Callout box */
.post-callout {
    background: var(--light-gray); border-radius: 16px;
    padding: 1.75rem 2rem; margin: 2rem 0;
}
.post-callout h4 {
    font-size: .88rem; font-weight: 600; margin-bottom: .5rem;
    display: flex; align-items: center; gap: .5rem;
}
.post-callout h4 svg {
    width: 16px; height: 16px; stroke: var(--salmon); stroke-width: 2; fill: none;
}
.post-callout p {
    font-size: .9rem; opacity: .6; margin-bottom: 0;
}

/* Stat highlight */
.post-stat-highlight {
    display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap;
    margin: 1.5rem 0; padding: 1.25rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}
.post-stat-highlight .num {
    font-size: 1.8rem; font-weight: 600; color: var(--salmon); line-height: 1;
}
.post-stat-highlight .label {
    font-size: .92rem; font-weight: 400; opacity: .55;
}

/* ── Inline CTA ── */
.post-inline-cta {
    background: var(--black); border-radius: 20px; padding: 2.5rem;
    margin: 2.5rem 0; text-align: center; position: relative; overflow: hidden;
}
.post-inline-cta::before {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        -45deg, transparent, transparent 30px,
        rgba(255,255,255,.015) 30px, rgba(255,255,255,.015) 31px
    );
    pointer-events: none;
}
.post-inline-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; color: var(--cream);
    margin: 0 0 .5rem; position: relative; z-index: 1;
}
.post-inline-cta h3 em { font-style: italic; color: var(--coral); }
.post-inline-cta p {
    color: rgba(255,253,248,.5); font-size: .88rem; margin-bottom: 1.25rem;
    position: relative; z-index: 1; opacity: 1;
}
.post-inline-cta .btn-salmon,
.post-inline-cta .btn-lemon { position: relative; z-index: 1; font-size: .88rem; padding: .85rem 1.75rem; }

/* ── Author Card ── */
.post-author {
    max-width: 720px; margin: 0 auto; padding: 0 2rem 4rem;
}
.post-author-card {
    display: flex; gap: 1.5rem; align-items: flex-start;
    background: var(--off-white); border-radius: 16px; padding: 1.75rem;
    border: 1px solid rgba(0,0,0,.04);
}
.post-author-avatar {
    width: 64px; height: 64px; border-radius: 50%; overflow: hidden;
    flex-shrink: 0; background: linear-gradient(135deg, var(--coral), var(--salmon));
}
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author-info h4 { font-size: .95rem; font-weight: 600; margin-bottom: .15rem; }
.post-author-info .author-title {
    font-size: .78rem; font-weight: 400; color: var(--salmon); margin-bottom: .5rem;
}
.post-author-info p {
    font-size: .85rem; font-weight: 400; line-height: 1.7; opacity: .55; margin: 0;
}

/* ── Related Posts ── */
.related-posts { padding: 88px 2rem; background: var(--light-gray); }
.related-posts .inner { max-width: var(--max-width); margin: 0 auto; }
.related-head { text-align: center; margin-bottom: 2.5rem; }
.related-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 400;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* Reuse .blog-card styles from blog.html — copied here for standalone pages */
.related-card {
    background: white; border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(0,0,0,.04);
    transition: all .4s cubic-bezier(.16,1,.3,1);
    display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.related-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.related-card-img {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--light-gray), var(--off-white));
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.related-card-img span { font-size: .72rem; opacity: .25; padding: 1rem; text-align: center; }
.related-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.related-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 500; line-height: 1.35;
    margin-bottom: .5rem; transition: color .3s;
}
.related-card:hover h3 { color: var(--salmon); }
.related-card-body p {
    font-size: .82rem; font-weight: 400; line-height: 1.7; opacity: .5;
    margin: 0;
}

/* ── Post Page CTA ── */
.post-cta { padding: 72px 2rem; background: var(--cream); }
.post-cta-box {
    max-width: var(--max-width); margin: 0 auto;
    background: var(--black); border-radius: 24px; padding: 3.5rem;
    text-align: center; position: relative; overflow: hidden;
}
.post-cta-box::before {
    content: ''; position: absolute; inset: 0; border-radius: 24px;
    background-image: repeating-linear-gradient(
        -45deg, transparent, transparent 30px,
        rgba(255,255,255,.015) 30px, rgba(255,255,255,.015) 31px
    );
    pointer-events: none;
}
.post-cta-box::after {
    content: ''; position: absolute; right: -50px; top: 50%; transform: translateY(-50%);
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(245,172,35,.08) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.post-cta-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400;
    color: var(--cream); margin-bottom: .75rem; position: relative; z-index: 1;
}
.post-cta-box h2 em { font-style: italic; color: var(--coral); }
.post-cta-box p {
    color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 1.5rem;
    position: relative; z-index: 1;
}
.post-cta-box .btn-lemon, .post-cta-box .btn-salmon { position: relative; z-index: 1; }
.post-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .related-grid { grid-template-columns: 1fr 1fr; }
    .post-author-card { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 600px) {
    .post-header { padding: 7rem 1.5rem 2rem; }
    .post-body { padding: 0 1.5rem 3rem; }
    .post-hero-img { padding: 0 1.5rem; }
    .post-author { padding: 0 1.5rem 3rem; }
    .related-posts, .post-cta { padding: 56px 1.5rem; }
    .related-grid { grid-template-columns: 1fr; }
    .post-body blockquote { padding-left: 1.25rem; }
    .post-body blockquote p { font-size: 1.15rem; }
    .post-inline-cta { padding: 2rem 1.5rem; }
}
