.background_image__wrapper {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
}

.background_image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    user-select: none;
    object-fit: cover;
}

.background_image__overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            180deg,
            #00000010 20%,
            var(--gray-800) 100%
    );
}

.site_content {
    position: relative;
    z-index: 2;
    margin-top: -250px;
    /*margin-left: var(--side-margin);
    margin-right: var(--side-margin);*/
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 2 * var(--side-margin));
}

.background_image__meta {
    margin-bottom: 4em;
    word-break: break-word;
    hyphens: auto;
}

.background_image__meta > span {
    display: block;
    color: white;
}

.background_image__meta > :first-child {
    font-size: 4em;
    font-weight: 800;
    line-height: 1.3;
}

.background_image__meta > :last-child {
    font-size: 1.125em;
    font-weight: normal;
    opacity: var(--text-opacity-convergence);
}

@media (max-width: 1200px) {
    .background_image__meta {
        margin-bottom: 8em;
    }

    .background_image__meta > span {
        text-align: center;
    }

    .background_image__wrapper {
        height: 600px;
    }

    .background_image__overlay {
        height: 600px;
    }

    .site_content {
        margin-top: -220px;
    }
}
