.hero {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 80px;
}

.hero__body {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero__title {
    display: block;
    width: var(--page-width);
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    text-shadow: 2px 2px 2px rgb(0, 0, 0, 60%);
}

.hero__img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    opacity: 80%;
}

.hero__img--faded {
    mask-composite: intersect;
    mask-image: linear-gradient(180deg, #000 60%, transparent);
}