.blog-page {
    position: relative;
    min-width: 0;
}

.blog-page__pipes {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
    z-index: -1;
    color: var(--primary-5);
}

.blog-hero {
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.blog-hero__bg,
.blog-hero__grid-overlay,
.blog-hero__glow,
.blog-hero__shade {
    position: absolute;
    inset: 0;
}

.blog-hero__bg {
    background-color: var(--blueprint);
}

.blog-hero__grid-overlay {
    opacity: 0.16;
    background-size: 44px 44px, 44px 44px;
    background-image:
        linear-gradient(rgba(150, 200, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(150, 200, 255, 0.5) 1px, transparent 1px);
}

.blog-hero__glow {
    opacity: 0.28;
    background:
        radial-gradient(800px at 80% 30%, oklch(0.55 0.18 235 / 0.38), transparent 60%),
        radial-gradient(700px at 15% 80%, oklch(0.55 0.18 52 / 0.22), transparent 65%);
}

.blog-hero__shade {
    pointer-events: none;
    background: linear-gradient(180deg, rgba(7, 12, 20, 0.08) 0%, rgba(7, 12, 20, 0.34) 100%);
}

.blog-hero__container {
    position: relative;
    width: 100%;
    max-width: 80rem;
    min-width: 0;
    margin-inline: auto;
    padding-inline: 1.25rem;
    padding-block: 5rem;
}

.blog-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--fg-7);
}

.blog-hero__breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-hero__breadcrumb svg {
    width: 0.95rem;
    height: 0.95rem;
    flex: 0 0 auto;
}

.blog-hero__grid {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 2.5rem;
    min-width: 0;
}

.blog-hero__content,
.blog-hero__aside {
    min-width: 0;
    position: relative;
}

.blog-hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    width: max-content;
    padding-inline: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary);
}

.blog-hero__eyebrow svg {
    width: 1rem;
    height: 1rem;
    color: var(--secondary);
    transform: translateY(-0.125rem);
}

.blog-hero__title {
    margin-top: 0.75rem;
    padding-inline: 1rem;
    max-width: 52rem;
    font-size: 3rem;
    line-height: 1.05;
    color: var(--white);
}

.blog-hero__text {
    margin-top: 1.25rem;
    padding-inline: 1rem;
    max-width: 46rem;
    color: var(--fg-8);
    font-size: 1rem;
    line-height: 1.7;
}

.blog-content {
    position: relative;
    overflow: hidden;
    padding-block: 6rem;
    background-color: var(--card);
}

.blog-content__intro {
    position: relative;
    width: 100%;
    max-width: 62rem;
    min-width: 0;
    margin-inline: auto;
    padding-inline: 1.25rem;
    text-align: center;
}

.blog-content__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: max-content;
    margin-inline: auto;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.blog-content__status svg {
    width: 1rem;
    height: 1rem;
    color: var(--secondary);
    flex: 0 0 auto;
}

.blog-content__title {
    margin-top: 1rem;
    max-width: 46rem;
    margin-inline: auto;
    font-size: 2.4rem;
    line-height: 1.08;
    font-weight: 700;
    text-align: center;
}

.blog-content__text {
    margin-top: 1rem;
    max-width: 42rem;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
    color: var(--fg-8);
}

.blog-content__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-width: 0;
    width: min(100% - 2.5rem, 76rem);
    margin: 3.5rem auto 0;
    padding: 2.5rem;
    background-color: var(--primary-1);
    border-radius: 1.25rem;
}

.blog-content__cta-copy {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 42rem;
    min-width: 0;
}

.blog-content__cta-copy-inner {
    min-width: 0;
}

.blog-content__cta-icon {
    width: 1.75rem;
    height: 1.75rem;
    flex: 0 0 auto;
}

.blog-content__cta-copy h3 {
    font-size: 1.25rem;
    font-weight: 500;
}

.blog-content__cta-copy p {
    margin-top: 0.5rem;
    color: var(--fg-8);
    font-weight: 500;
}

.blog-content__cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-block: 0.75rem;
    padding-inline: 1rem;
    border-radius: 9999px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.blog-content__cta-link svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

@media (hover: hover) {
    .blog-hero__breadcrumb a:hover {
        color: var(--fg);
    }

    .blog-content__cta-link:hover {
        background-color: var(--primary-9);
    }
}

@media (max-width: 1279px) {
    .blog-hero__grid {
        gap: 2rem;
    }

    .blog-content__cta {
        width: min(100% - 2rem, 72rem);
        padding: 2rem;
    }
}

@media (max-width: 1023px) {
    .blog-hero__container,
    .blog-content__intro {
        padding-inline: 1rem;
    }

    .blog-hero__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-hero__aside {
        display: none;
    }

    .blog-hero__title,
    .blog-hero__text,
    .blog-hero__eyebrow {
        padding-inline: 0;
    }

    .blog-content__cta {
        width: calc(100% - 2rem);
        margin-top: 2.5rem;
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-content__cta-link {
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        padding-top: 4.75rem;
    }

    .blog-hero__container {
        padding-inline: 0.875rem;
        padding-block: 3.25rem;
    }

    .blog-hero__breadcrumb {
        margin-bottom: 1.5rem;
        font-size: 0.82rem;
    }

    .blog-hero__title {
        margin-top: 0.6rem;
        font-size: 1.8rem;
        line-height: 1.08;
    }

    .blog-hero__text,
    .blog-content__text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .blog-content__intro {
        padding-inline: 0.875rem;
    }

    .blog-content__title {
        font-size: 1.7rem;
    }

    .blog-content__cta {
        width: calc(100% - 1.75rem);
        padding: 1.25rem;
        gap: 1rem;
        border-radius: 1rem;
    }

    .blog-content__cta-copy {
        gap: 0.75rem;
    }

    .blog-content__cta-copy h3 {
        font-size: 1.05rem;
    }

    .blog-content__cta-link {
        width: 100%;
        justify-content: center;
    }

    .blog-page__pipes {
        opacity: 0.16;
    }
}

@media (max-width: 479px) {
    .blog-hero__container,
    .blog-content__intro {
        padding-inline: 0.75rem;
    }

    .blog-hero__title {
        font-size: 1.55rem;
    }

    .blog-content__title {
        font-size: 1.45rem;
    }

    .blog-content__cta {
        width: calc(100% - 1.5rem);
        padding: 1rem;
    }

    .blog-hero__eyebrow,
    .blog-content__status {
        font-size: 0.78rem;
        letter-spacing: 0.12em;
    }

    .blog-hero__breadcrumb {
        font-size: 0.78rem;
        gap: 0.25rem;
    }
}