/* ============================================
    RELATED ARTICLES
============================================ */
.related-articles {
    background: var(--cream);
    padding: 80px 48px;
}

.related-articles__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.related-articles__header {
    margin-bottom: 40px;
}

.related-articles__label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.related-articles__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 32px;
    color: var(--soft-black);
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.related-card {
    background: var(--white);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.related-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card:hover .related-card__image img {
    transform: scale(1.05);
}

.related-card__body {
    padding: 24px;
}

.related-card__meta {
    font-size: 13px;
    color: var(--stone);
    margin-bottom: 12px;
}

.related-card__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 20px;
    color: var(--soft-black);
    line-height: 1.35;
    transition: color 0.2s ease;
}

.related-card:hover .related-card__title {
    color: var(--accent);
}

/* ============================================
    ARTICLE HERO
============================================ */
/* .article-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + 60px) 48px 60px;
    background: var(--soft-black);
    overflow: hidden;
}

.article-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.article-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.4) 100%);
}

.article-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.article-hero__breadcrumb {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 20px;
}

.article-hero__breadcrumb a {
    color: var(--stone);
    transition: color 0.3s ease;
}

.article-hero__breadcrumb a:hover { color: var(--white); }
.article-hero__breadcrumb span { margin: 0 10px; opacity: 0.5; }

.article-hero__category {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.article-hero__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.article-hero__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: var(--stone);
}

.article-hero__date { }

.article-hero__read-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-hero__read-time svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
} */

.hero__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.7s ease 0.8s forwards;
}

.hero__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__meta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__author-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.hero__date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* ============================================
    ARTICLE CONTENT
============================================ */
.article-wrapper {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 800px) 1fr;
    gap: 0;
}

.article-content {
    grid-column: 2;
    padding: 64px 24px;
}

/* Typography */
.article-content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 28px;
}

.article-content p:first-of-type {
    font-size: 20px;
    color: var(--soft-black);
}

.article-content h2 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 32px;
    color: var(--soft-black);
    margin: 56px 0 24px;
    line-height: 1.25;
}

.article-content h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 24px;
    color: var(--soft-black);
    margin: 40px 0 20px;
    line-height: 1.3;
}

.article-content strong {
    font-weight: 500;
    color: var(--soft-black);
}

.article-content a {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    transition: all 0.2s ease;
}

.article-content a:hover {
    color: var(--soft-black);
    border-color: var(--soft-black);
}

.article-content ul,
.article-content ol {
    margin: 0 0 28px 24px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--dark-gray);
}

.article-content li {
    margin-bottom: 12px;
}

/* Lead/Intro paragraph */
.article-lead {
    font-size: 21px !important;
    font-weight: 300 !important;
    color: var(--soft-black) !important;
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    margin-bottom: 40px !important;
}

/* Author Box */
/* .author-box {
    display: flex;
    gap: 32px;
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--sand);
    margin-top: 64px;
    align-items: center;
}

.author-box__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box__content {
    flex: 1;
}

.author-box__label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.author-box__name {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 24px;
    color: var(--soft-black);
    margin-bottom: 12px;
}

.author-box__bio {
    font-size: 16px;
    line-height: 1.6;
    color: var(--warm-gray);
    font-weight: 300;
    margin-bottom: 20px;
}

.author-box__link {
    font-size: 14px;
    font-weight: 400;
    color: var(--soft-black);
    text-decoration: none;
    transition: color 0.3s;
}

.author-box__link:hover {
    color: var(--accent);
} */


/* Author Box */
.article-content .author-box {
    display: flex; gap: 32px; padding: 40px;
    background: var(--white); border: 1px solid var(--sand);
    align-items: center;
}
.article-content .author-box__image {
    width: 100px; height: 100px;
    border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.article-content .author-box__content { flex: 1; }
.article-content .author-box__label {
    display: block; font-size: 11px; font-weight: 500;
    letter-spacing: .15em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 8px;
}
.article-content .author-box__name {
    font-family: var(--font-serif); font-weight: 300;
    font-size: 24px; color: var(--soft-black); margin-bottom: 12px;
}
.article-content .author-box__bio {
    font-size: 15px; line-height: 1.65;
    color: var(--warm-gray); font-weight: 300; margin-bottom: 16px;
}
.article-content .author-box__link {
    font-size: 13px; font-weight: 500;
    color: var(--soft-black); transition: color .3s;
    border-bottom: 0;
}
.article-content .author-box__link:hover { color: var(--accent); }


@media (max-width: 768px) {
        .article-content .author-box {
            flex-direction: column; text-align: center;
            align-items: center; padding: 28px 24px;
        }
        .article-content .author-box__image { width: 80px; height: 80px; }
}


/* Invitation */
.pbl-invitation {
    background: var(--soft-black); padding: 80px 48px;
}
.pbl-invitation__inner {
    max-width: 620px; margin: 0 auto; text-align: center;
}
.pbl-invitation__mark {
    font-size: 10px; font-weight: 600; letter-spacing: .3em;
    text-transform: uppercase; color: rgba(255,255,255,.25);
    margin-bottom: 36px;
}
.pbl-invitation__text {
    font-family: var(--font-serif); font-weight: 300;
    font-size: 22px; line-height: 1.7;
    color: rgba(255,255,255,.85); margin-bottom: 40px;
}
.pbl-invitation__cta {
    display: inline-block; font-size: 12px; font-weight: 600;
    letter-spacing: .15em; text-transform: uppercase;
    color: var(--white); background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    padding: 18px 48px; cursor: pointer;
    transition: all .35s ease;
}
.pbl-invitation__cta:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.45);
}
.pbl-invitation__footer {
    margin-top: 40px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.pbl-invitation__details {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap;
}
.pbl-invitation__detail {
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,.35); transition: color .3s;
}
a.pbl-invitation__detail:hover { color: rgba(255,255,255,.65); }
.pbl-invitation__dot {
    width: 2px; height: 2px; border-radius: 50%;
    background: rgba(255,255,255,.2); flex-shrink: 0;
}

 @media (max-width: 768px) {
    .pbl-invitation { padding: 60px 24px; }
    .pbl-invitation__text { font-size: 19px; }
    .pbl-invitation__details { flex-direction: column; gap: 10px; }
    .pbl-invitation__dot { display: none; }
}


/* Inline Question Box - Conversational CTA */
.question-box {
    background: var(--cream);
    padding: 32px 36px;
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 40px 0 30px;
}

.question-box__content {
    flex: 1;
}

.question-box__text {
    font-family: 'Beausite Grand', serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--soft-black);
    line-height: 1.4;
}

.question-box__subtext {
    font-size: 14px;
    color: var(--warm-gray);
    margin-top: 6px;
}

.question-box__btn {
    padding: 14px 28px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--soft-black);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.question-box__btn:hover {
    background: var(--charcoal);
}

@media (max-width: 600px) {
    .question-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .question-box__btn {
        width: 100%;
    }
}




.cta-section {
    padding: 80px 48px;
    text-align: center;
}

.cta-section__inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section__label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.cta-section__title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 40px;
    color: var(--soft-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section__text {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    color: var(--warm-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-section__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}


@media (max-width: 1024px) {

    .article-hero {
        padding: 140px 32px 48px;
        min-height: 400px;
    }

    .article-hero__title {
        font-size: 40px;
    }

    .article-wrapper {
        grid-template-columns: 1fr;
    }

    .article-content {
        padding: 48px 32px;
        max-width: 720px;
        margin: 0 auto;
    }

    .related-articles {
        padding: 64px 32px;
    }

    .related-articles__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section {
        padding: 64px 32px;
    }
}

@media (max-width: 768px) {

    .article-hero {
        padding: 110px 24px 40px;
        min-height: 360px;
    }

    .article-hero__title {
        font-size: 32px;
    }

    .article-hero__meta {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .article-content {
        padding: 40px 24px;
    }

    .article-content p {
        font-size: 17px;
    }

    .article-content h2 {
        font-size: 26px;
    }

    /* .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    } */

    .related-articles {
        padding: 48px 24px;
    }

    .related-articles__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-section {
        padding: 48px 24px;
    }

    .cta-section__title {
        font-size: 28px;
    }

    .cta-section__buttons {
        flex-direction: column;
    }

}


/* Divider */
.insights-banner__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.insights-banner__divider::before,
.insights-banner__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sand);
}

.insights-banner__divider span {
    font-size: 12px;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* Email Form */
.insights-banner__form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 520px;
    margin: 0 auto 24px;
}

.insights-banner__input {
    flex: 1;
    padding: 18px 24px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    color: var(--soft-black);
    background: var(--white);
    border: 1px solid var(--sand);
    border-right: none;
    outline: none;
    transition: all 0.3s ease;
}

.insights-banner__input:focus {
    border-color: var(--accent);
}

.insights-banner__input::placeholder {
    color: var(--stone);
}

.insights-banner__submit {
    padding: 18px 36px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--soft-black);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.insights-banner__submit:hover {
    background: var(--charcoal);
}


/* Secondary CTA */
.insights-banner__secondary {
    font-size: 15px;
    color: var(--warm-gray);
}

.insights-banner__link {
    color: var(--accent-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    transition: all 0.2s ease;
}

.insights-banner__link:hover {
    text-decoration-thickness: 2px;
}

/* Responsive */
@media (max-width: 600px) {
    .insights-banner {
        padding: 60px 24px;
    }

    .insights-banner__headline {
        font-size: 30px;
    }

    .insights-banner__body {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .insights-banner__form {
        flex-direction: column;
        gap: 12px;
    }

    .insights-banner__input {
        border-right: 1px solid var(--sand);
        text-align: center;
    }

    .insights-banner__submit {
        width: 100%;
    }
}


/* Subscribe Banner */
.pbl-subscribe-banner { background: var(--cream); padding: 48px 48px 64px; }
.pbl-subscribe-banner__inner {
    max-width: 480px; margin: 0 auto; text-align: center;
}
.pbl-subscribe-banner__eyebrow {
    font-size: 10px; font-weight: 600; letter-spacing: .25em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.pbl-subscribe-banner__headline {
    font-family: var(--font-serif); font-weight: 300;
    font-size: 24px; color: var(--soft-black);
    line-height: 1.4; margin-bottom: 24px;
}
.pbl-subscribe-banner__form {
    display: flex; gap: 0; margin: 0 auto 14px;
}
.pbl-subscribe-banner__input {
    flex: 1; padding: 16px 20px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px; font-weight: 300; color: var(--soft-black);
    background: var(--white); border: 1px solid var(--sand);
    border-right: none; outline: none; transition: border-color .3s;
}
.pbl-subscribe-banner__input:focus { border-color: var(--accent); }
.pbl-subscribe-banner__input::placeholder { color: var(--stone); }
.pbl-subscribe-banner__btn {
    padding: 16px 32px; font-family: 'Source Sans 3', sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--white);
    background: var(--soft-black); border: 1px solid var(--soft-black);
    cursor: pointer; transition: background .3s; white-space: nowrap;
}
.pbl-subscribe-banner__btn:hover {
    background: var(--accent); border-color: var(--accent);
}
.pbl-subscribe-banner__note {
    font-size: 13px; font-weight: 300; color: var(--stone);
}

 @media (max-width: 768px) {

    .pbl-subscribe-banner { padding: 40px 24px 52px; }
    .pbl-subscribe-banner__headline { font-size: 21px; }
    .pbl-subscribe-banner__form { flex-direction: column; gap: 0; }
    .pbl-subscribe-banner__input { border-right: 1px solid var(--sand); border-bottom: none; }
    .pbl-subscribe-banner__btn { width: 100%; padding: 18px; }
}