.blog-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin: 0 0 34px;
    padding: 34px;
    border: 1px solid #e3e7ea;
    border-radius: 8px;
    background: #f5f7f6;
    color: #202124;
}

.blog-hero-kicker {
    margin-bottom: 10px;
    color: #3f6f45;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-hero-title {
    max-width: 760px;
    margin: 0;
    color: inherit;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
}

.blog-hero-description {
    max-width: 720px;
    margin-top: 16px;
    color: #5f666f;
    font-size: 18px;
    line-height: 1.65;
}

.blog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.blog-hero-link,
.blog-hero-cta {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
    text-decoration: none;
}

.blog-hero-link {
    border: 1px solid #d9dfdc;
    background: rgba(255, 255, 255, .72);
    color: #24452a;
}

.blog-hero-link:hover {
    border-color: #b9c5bc;
    color: #24452a;
    text-decoration: none;
}

.blog-hero-cta {
    border: 1px solid #24452a;
    background: #24452a;
    color: #fff !important;
}

.blog-hero-cta:hover {
    color: #fff;
    text-decoration: none;
}

.blog-hero-stats {
    display: grid;
    min-width: 210px;
    gap: 10px;
}

.blog-hero-stat {
    padding: 13px 15px;
    border: 1px solid rgba(36, 69, 42, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
}

.blog-hero-stat-value,
.blog-hero-stat-label {
    display: block;
}

.blog-hero-stat-value {
    color: #24452a;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
}

.blog-hero-stat-label {
    margin-top: 3px;
    color: #6f7680;
    font-size: 13px;
    line-height: 1.35;
}

.blog-hero-accent {
    border-color: #d3ded5;
    background: #eaf1eb;
}

.blog-hero-dark {
    border-color: #24452a;
    background: #24452a;
    color: #fff;
}

.blog-hero-dark .blog-hero-kicker,
.blog-hero-dark .blog-hero-description,
.blog-hero-dark .blog-hero-stat-label {
    color: rgba(255, 255, 255, .74);
}

.blog-hero-dark .blog-hero-link {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.blog-hero-dark .blog-hero-cta {
    border-color: #fff;
    background: #fff;
    color: #24452a !important;
}

.blog-hero-dark .blog-hero-stat {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .08);
}

.blog-hero-dark .blog-hero-stat-value {
    color: #fff;
}

.blog-hero-position-column_left,
.blog-hero-position-column_right {
    display: block;
    padding: 18px;
}

.blog-hero-position-column_left .blog-hero-title,
.blog-hero-position-column_right .blog-hero-title {
    font-size: 24px;
}

.blog-hero-position-column_left .blog-hero-description,
.blog-hero-position-column_right .blog-hero-description {
    font-size: 14px;
}

.blog-hero-position-column_left .blog-hero-stats,
.blog-hero-position-column_right .blog-hero-stats {
    margin-top: 18px;
}

@media (max-width: 900px) {
    .blog-hero {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 26px;
    }

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

    .blog-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 459px) {
    .blog-hero {
        padding: 22px 18px;
    }

    .blog-hero-title {
        font-size: 28px;
    }

    .blog-hero-description {
        font-size: 16px;
    }

    .blog-hero-actions,
    .blog-hero-stats {
        grid-template-columns: 1fr;
    }

    .blog-hero-actions {
        flex-direction: column;
    }

    .blog-hero-link,
    .blog-hero-cta {
        width: 100%;
        justify-content: center;
    }
}
