.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 {
    font-size: 2rem;
    font-weight: 300;
}

.hero__img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.hero__img--faded {
    mask-composite: intersect;
    mask-image: linear-gradient(180deg, #000 60%, transparent);
}