.blog-hero-section {
    min-height: 45vh;
    background: linear-gradient(135deg, var(--actionColor) 0%, #2a3441 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
}

.blog-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

/* Хлебные крошки */
.blog-breadcrumbs {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}
.blog-breadcrumbs a:hover {
    color: #ffffff;
}
.blog-breadcrumbs .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}
.blog-breadcrumbs .current {
    color: #ffffff;
}

/* Бейдж и заголовки */
.blog-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.blog-hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Сетка */
.blog-grid-section {
    background: var(--bgLightColor);
}

.blog-empty-text {
    font-size: 16px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .blog-hero-title { font-size: 34px; }
    .blog-hero-desc { font-size: 15px; }
    .blog-hero-section { min-height: 35vh; padding-top: 80px; }
}