.blog-page {
    margin-top: calc(var(--header-height) + var(--top-bar-height));
}

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 25px;
    background: radial-gradient(circle at 80% 18%, rgba(255, 91, 111, .24), transparent 32%), linear-gradient(125deg, #111 0%, #2d090d 48%, #8f101d 120%);
}

.blog-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -150px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 48px rgba(255, 255, 255, .025), 0 0 0 96px rgba(255, 255, 255, .02);
}

.blog-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.blog-breadcrumb {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .72);
    font-size: .85rem;
}

.blog-breadcrumb a:hover {
    color: #fff;
}

.blog-kicker {
    display: inline-flex;
    margin-bottom: 13px;
    color: #ff9ba7;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .74rem;
    font-weight: 800;
}

.blog-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 45px !important;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .78);
    font-size: .88rem;
}

.blog-meta i {
    margin-right: 6px;
    color: #ff9ba7;
}

.blog-content-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(38px, 7vw, 84px) 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: clamp(28px, 5vw, 58px);
    align-items: start;
}

.blog-article {
    min-width: 0;
}

.blog-featured-image {
    margin: 0 0 clamp(34px, 6vw, 58px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-2);
}

.blog-featured-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.blog-article section,
.blog-lead {
    margin-bottom: clamp(34px, 6vw, 56px);
}

.blog-article h2 {
    position: relative;
    margin: 0 0 18px;
    padding-left: 18px;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.2;
}

.blog-article h2::before {
    content: "";
    position: absolute;
    inset: 4px auto 4px 0;
    width: 5px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--brand-red), #ed4557);
}

.blog-article h3 {
    margin: 24px 0 8px;
    font-size: 1.1rem;
    line-height: 1.35;
}

.blog-article p,
.blog-article li {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.82;
}

.blog-article p+p {
    margin-top: 15px;
}

.blog-article ul {
    margin: 14px 0 0;
    padding-left: 1.3rem;
}

.blog-article li {
    margin-bottom: 7px;
    padding-left: 4px;
}

.blog-article li::marker {
    color: var(--brand-red);
}

.blog-lead {
    padding: clamp(22px, 4vw, 32px);
    border-left: 4px solid var(--brand-red);
    border-radius: 0 18px 18px 0;
    background: #fff;
    box-shadow: var(--shadow-1);
}

.product-link {
    color: var(--brand-red);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.product-link:hover,
.product-link:focus-visible {
    color: #7f0b16;
}

.component-list {
    display: grid;
    gap: 14px;
}

.component-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.component-item>span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red), #de2f43);
    font-size: .76rem;
    font-weight: 800;
}

.component-item h3,
.component-item p {
    margin-top: 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.benefit-grid>div,
.industry-list>div {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.benefit-grid h3,
.industry-list h3 {
    margin-top: 0;
    color: var(--brand-red);
}

.industry-list {
    display: grid;
    gap: 12px;
}

.challenge-box {
    padding: clamp(22px, 4vw, 32px);
    border: 1px solid #f1c8cd;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff, #fff4f5);
}

.blog-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--top-bar-height) + 24px);
    display: grid;
    gap: 18px;
}

.sidebar-card {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-1);
}

.sidebar-card:first-child {
    color: #fff;
    background: linear-gradient(145deg, #151515, #3f0a11 68%, #94111f);
    box-shadow: var(--shadow-red);
}

.sidebar-card h2 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.25;
}

.sidebar-card:first-child h2 {
    color: #fff;
}

.sidebar-card:first-child p {
    color: rgba(255, 255, 255, .78);
}

.blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    padding: 11px 17px;
    border-radius: 999px;
    color: #151515;
    background: #fff;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.blog-cta:hover {
    transform: translateY(-2px);
}

.article-nav {
    display: grid;
    gap: 9px;
}

.article-nav h2 {
    margin-bottom: 4px;
}

.article-nav a {
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    color: #555;
}

.article-nav a:last-child {
    border-bottom: 0;
}

.article-nav a:hover {
    color: var(--brand-red);
    padding-left: 4px;
}

@media (max-width: 1080px) {
    .blog-content-wrap {
        grid-template-columns: minmax(0, 1fr) 275px;
    }
}

@media (max-width: 860px) {
    .blog-content-wrap {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .blog-hero {
        padding-top: 22px;
        padding-bottom: 24px;
    }
    .blog-hero h1 {
        width: calc(100vw - 36px);
        max-width: 100%;
        font-size: 2rem !important;
        line-height: 1.12;
        word-break: normal;
    }
    .benefit-grid,
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    .component-item {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 16px;
    }
    .component-item>span {
        width: 36px;
        height: 36px;
    }
    .blog-article p,
    .blog-article li {
        font-size: .96rem;
    }
}