/* Marketing blog shell — nav, article chrome, longform prose (shared by base_blog_marketing.html) */
:root {
    --navy: #0c1f3f;
    --navy-mid: #162d55;
    --cream: #faf9f7;
    --white: #ffffff;
    --grey-100: #f4f3f0;
    --grey-200: #e8e6e1;
    --grey-400: #9e9b94;
    --grey-700: #4a4845;
    --text-primary: #0c1f3f;
    --text-secondary: #4a4845;
    --text-muted: #9e9b94;
    --rule: #e8e6e1;
}

.blog-marketing-page * {
    box-sizing: border-box;
}

.blog-marketing-page {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-primary);
    background: var(--white);
}

.blog-marketing-page .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    box-sizing: border-box;
}

.blog-marketing-page a {
    color: var(--navy);
    text-decoration: none;
}

.blog-marketing-page a:hover {
    text-decoration: underline;
}

.blog-marketing-page .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    padding: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-200);
}

.blog-marketing-page .nav-inner {
    max-width: 100%;
    width: 100%;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.blog-marketing-page .nav-start {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 16px;
}

.blog-marketing-page .nav-cluster {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.blog-marketing-page .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.blog-marketing-page .nav-links a:not(.btn-nav-cta) {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--grey-700);
}

.blog-marketing-page .nav-links a:not(.btn-nav-cta):hover {
    color: var(--navy);
    text-decoration: none;
}

.blog-marketing-page .btn-nav-cta {
    display: inline-block;
    background: var(--navy);
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.2;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    text-decoration: none !important;
}

.blog-marketing-page .btn-nav-cta:hover {
    opacity: 0.94;
    text-decoration: none !important;
}

/* Perspectives band — aligned with templates/blog.html .page-header */
.blog-marketing-page .blog-post-page-header {
    padding: 92px 0 72px;
    border-bottom: none;
    background: var(--white);
}

.blog-marketing-page .blog-post-page-header .blog-post-page-header__back {
    margin: 0 0 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.5;
}

.blog-marketing-page .blog-post-page-header .blog-post-page-header__back a {
    color: #6b7280;
    text-decoration: none;
}

.blog-marketing-page .blog-post-page-header .blog-post-page-header__back a:hover {
    color: var(--navy);
    text-decoration: underline;
}

.blog-marketing-page .blog-post-page-header .page-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0 0 24px;
}

.blog-marketing-page .blog-post-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 4.5vw, 64px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.12;
    margin: 0 0 24px;
    max-width: 720px;
}

.blog-marketing-page .blog-post-page-header .blog-post-page-header__meta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    margin: 0 0 20px;
    line-height: 1.5;
    max-width: 720px;
}

.blog-marketing-page .blog-post-page-header .page-lead {
    font-size: 17px;
    font-weight: 300;
    color: #374151;
    line-height: 1.75;
    max-width: 560px;
    margin: 0;
}

.blog-marketing-page .post-reading {
    width: 100%;
}

.blog-marketing-page .post-reading-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 48px;
    align-items: start;
    max-width: 1680px;
    margin: 0 auto;
}

.blog-marketing-page .post-reading-main {
    min-width: 0;
}

.blog-marketing-page .post-reading-layout .post-reading-main .post-layout-shell {
    width: 100%;
    max-width: var(--blog-content-max, 1200px);
    margin-left: 0;
    margin-right: auto;
}

.blog-marketing-page .post-reading-aside {
    position: sticky;
    top: 148px;
    margin-top: 0;
    padding-bottom: 48px;
    border-top: none !important;
}

.blog-marketing-page .post-rec-rail__kicker {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0 0 16px;
}

.blog-marketing-page .post-rec-card {
    display: block;
    text-decoration: none !important;
    color: inherit;
    background: var(--white);
    border-top: none;
    border-left: 1px solid #eceff3;
    border-right: 1px solid #eceff3;
    border-bottom: 1px solid #eceff3;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.blog-marketing-page .post-rec-rail,
.blog-marketing-page .post-rec-card,
.blog-marketing-page .post-rec-card__media,
.blog-marketing-page .post-rec-card__img {
    border-top: none !important;
}

.blog-marketing-page .post-rec-card:hover {
    border-color: #d8dee7;
    box-shadow: 0 4px 14px rgba(12, 31, 63, 0.06);
    transform: translateY(-1px);
}

.blog-marketing-page .post-rec-card:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

.blog-marketing-page .post-rec-card__title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--navy);
    padding: 12px 14px 14px;
}

.blog-marketing-page .post-rec-card:hover .post-rec-card__title {
    text-decoration: none;
}

.blog-marketing-page .post-hero {
    width: 100%;
    border: none;
    background: transparent;
}

.blog-marketing-page .post-hero .post-layout-shell.post-hero-label {
    min-height: 280px;
    border-radius: 4px;
    background: #0d1b35;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-marketing-page .post-hero .post-layout-shell.post-hero-label::after {
    content: attr(data-label);
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8b99a;
    padding: 0 32px;
    text-align: center;
    line-height: 1.6;
}

.blog-marketing-page .post-reading,
.blog-marketing-page .post-page-gutter,
.blog-marketing-page .post-reading-layout,
.blog-marketing-page .post-reading-main,
.blog-marketing-page .post-hero {
    border-top: none !important;
    box-shadow: none !important;
}

.blog-marketing-page .post-p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 24px;
}

.blog-marketing-page .post-p strong {
    font-weight: 600;
    color: var(--text-primary);
}

.blog-marketing-page .post-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--navy);
    margin: 48px 0 16px;
}

.blog-marketing-page .post-pull {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    color: var(--navy);
    border-left: 3px solid var(--navy);
    padding-left: 24px;
    margin: 40px 0;
    line-height: 1.45;
}

.blog-marketing-page .post-note {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 24px;
}

.blog-marketing-page .post-cta {
    background: var(--grey-100);
    padding: 80px 0;
    margin-top: 0;
    text-align: center;
}

.blog-marketing-page .post-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--navy);
    margin: 0 auto 24px;
    max-width: 640px;
    padding: 0 24px;
    line-height: 1.3;
}

.blog-marketing-page .post-cta .btn {
    display: inline-block;
    background: var(--navy);
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none !important;
}

.blog-marketing-page .post-cta .btn:hover {
    opacity: 0.94;
    text-decoration: none !important;
}

.blog-marketing-page .blog-inline-prose {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
}

.blog-marketing-page .blog-inline-prose p {
    margin-bottom: 24px;
}

.blog-marketing-page .blog-inline-prose h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--navy);
    margin: 48px 0 16px;
}

.blog-marketing-page .blog-inline-prose h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    margin: 2em 0 0.85em;
}

.blog-marketing-page .blog-inline-prose ul,
.blog-marketing-page .blog-inline-prose ol {
    margin: 0 0 24px;
    padding-left: 1.35em;
}

.blog-marketing-page .blog-inline-prose li {
    margin-bottom: 0.5em;
}

.blog-marketing-page .blog-inline-prose blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    color: var(--navy);
    border-left: 3px solid var(--navy);
    padding-left: 24px;
    margin: 40px 0;
    line-height: 1.45;
}

.blog-marketing-page .blog-inline-prose strong {
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .blog-marketing-page .post-reading-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-marketing-page .post-reading-aside {
        position: static;
        padding-bottom: 0;
        border-top: none;
        padding-top: 32px;
    }

    .blog-marketing-page .post-rec-rail {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }

    .blog-marketing-page .post-rec-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-marketing-page .container {
        padding: 0 24px;
    }

    .blog-marketing-page .nav-inner {
        padding: 0 24px;
    }

    .blog-marketing-page .nav-links {
        display: flex;
        gap: 14px;
    }

    .blog-marketing-page .nav-links a:not(.btn-nav-cta) {
        font-size: 12px;
    }

    .blog-marketing-page .blog-post-page-header {
        padding: 92px 0 48px;
    }

    .blog-marketing-page .post-cta {
        padding: 64px 0;
    }
}
