/* ============================================== */
/* HERO STYLE: BLOG ARTICLE HEADER                */
/* ============================================== */

.hero-blog-header {
    position: relative;
    background-size: cover;
    background-position: center center;
    color: white; /* Делаем основной цвет текста белым */
}

/* Слой-затемнение поверх картинки */
.hero-blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 30, 40, 0.7); /* Темно-синий, полупрозрачный */
    z-index: 1;
}

/* Контейнер для контента, чтобы он был поверх затемнения */
.hero-blog-header .container {
    position: relative;
    z-index: 2;
}