.hero {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 60px;
}

.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);
    font-size: 2.25rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 1px;
    color: #fff;
    text-shadow: 1px 1px 2px rgb(0, 0, 0, 40%);
}

.hero__img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: 50% 74%;
    filter: brightness(80%);
    opacity: 70%;
}

.hero__img--faded {
    mask-composite: intersect;
    mask-image: linear-gradient(180deg, #000 60%, transparent);
}