.blog-page {
    background: #fff;
    color: #111;
}

.blog-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
}

.blog-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.blog-hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
}

.blog-eyebrow,
.blog-kicker,
.blog-meta {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.blog-hero h1 {
    font-size: 56px;
    line-height: 1.05;
    margin: 12px 0 18px;
}

.blog-hero p:not(.blog-eyebrow) {
    font-size: 18px;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.88);
}

.blog-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 6px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    border: 1px solid var(--color-primary);
    transition: var(--transition);
}

.blog-btn:hover {
    background: #111;
    border-color: #111;
}

.blog-btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.75);
}

.blog-btn--ghost:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}

.blog-topic-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.blog-topic-nav__inner {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-top: 14px;
    padding-bottom: 14px;
}

.blog-topic-nav a {
    white-space: nowrap;
    color: #222;
    font-size: 14px;
    font-weight: 700;
}

.blog-topic-nav a:hover {
    color: var(--color-primary);
}

.blog-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    padding-top: 70px;
    padding-bottom: 42px;
}

.blog-intro h2,
.blog-longform h2,
.blog-faq h2 {
    font-size: 36px;
    line-height: 1.15;
    margin-top: 8px;
}

.blog-intro p,
.blog-longform p,
.blog-faq p,
.blog-card p,
.blog-card li {
    color: #4a4a4a;
    font-size: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-top: 24px;
    padding-bottom: 74px;
}

.blog-card {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.blog-card__media {
    min-height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-card__body {
    padding: 24px;
}

.blog-card h2 {
    font-size: 24px;
    line-height: 1.22;
    margin: 8px 0 14px;
}

.blog-card ul {
    margin: 18px 0;
    padding-left: 18px;
}

.blog-card li {
    margin-bottom: 8px;
}

.blog-text-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--color-primary);
    font-weight: 800;
}

.blog-route-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.blog-route-list a {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 10px 12px;
    color: #111;
    font-weight: 700;
}

.blog-route-list a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-longform {
    padding-top: 62px;
    padding-bottom: 70px;
    border-top: 1px solid #eee;
}

.blog-longform p {
    max-width: 900px;
    margin-top: 18px;
}

.blog-keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.blog-keyword-list li {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 10px 14px;
    color: #222;
    font-size: 14px;
    font-weight: 800;
}

.blog-callout {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 34px;
    padding: 24px;
    border-radius: 8px;
    background: #111;
    color: #fff;
}

.blog-callout h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.blog-callout p {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 0;
}

.blog-faq {
    padding-top: 20px;
    padding-bottom: 80px;
}

.blog-faq details {
    border-top: 1px solid #e8e8e8;
    padding: 18px 0;
}

.blog-faq details:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.blog-faq summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
}

.blog-faq p {
    margin-top: 12px;
    max-width: 780px;
}

@media (max-width: 992px) {
    .blog-hero h1 {
        font-size: 42px;
    }

    .blog-intro,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card__media {
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .blog-hero {
        min-height: 520px;
    }

    .blog-hero h1 {
        font-size: 34px;
    }

    .blog-hero p:not(.blog-eyebrow) {
        font-size: 16px;
    }

    .blog-intro,
    .blog-longform,
    .blog-faq {
        padding-top: 42px;
        padding-bottom: 48px;
    }

    .blog-intro h2,
    .blog-longform h2,
    .blog-faq h2 {
        font-size: 28px;
    }

    .blog-route-list,
    .blog-callout {
        display: block;
    }

    .blog-route-list a {
        display: block;
        margin-bottom: 10px;
    }

    .blog-callout .blog-btn {
        margin-top: 18px;
        width: 100%;
    }
}
