.blog {
    margin-top: 50px;
}

.blog > .wrapper {
    padding: 48px 40px;
    border: 1px solid var(--stroke);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
    backdrop-filter: blur(20px);
}

.blog_title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.15;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
}

.blog_content__sub-title {
    margin: 0 0 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--owu-green);
    text-align: center;
}

.blog_content__image {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.blog_content__image img {
    display: block;
    width: 100%;
    max-width: 620px;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.blog_content__text {
    font-size: 18px;
    line-height: 1.65;
    margin: 5px auto 0;
    width: 100%;
    max-width: 760px;
    color: rgba(255, 255, 255, .78);
}

@media only screen and (max-width: 992px) {

    .blog {
        margin-top: 0;
    }

    .blog > .wrapper {
        padding: 32px 20px;
    }

    .blog_title {
        font-size: 26px;
    }

    .blog_content__image img {
        max-width: 100%;
    }
}
