.hero-blog {
    padding: 75rem 0 65rem;
}

.hero-blog__background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.hero-blog__background::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.72)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.72) 100%);
    content: '';
}

.hero-blog__background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.hero-blog__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.hero-blog__content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 330rem;
}

.hero-blog__title {
    color: var(--color-white);
    font-size: 30rem;
    line-height: 1.3;
}

.hero-blog__text {
    max-width: 830rem;
    margin-top: 16rem;
    color: var(--color-white);
    font-size: 16rem;
    line-height: 1.3;
}

@media screen and (min-width: 768px) {
    .hero-blog__content-inner {
        max-width: unset;
    }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
    .hero-blog {
        padding: 292rem 0 128rem;
    }

    .hero-blog__title {
        font-size: 72rem;
    }

    .hero-blog__text {
        font-size: 18rem;
    }
}
