.hero {
    position: relative;
    width: 100%;
    height: calc(7.5rem + var(--header-height));
    margin-bottom: 3.75rem;
    box-shadow: 0 0 12px 8px rgba(0, 0, 0, 8%);
    overflow: hidden;
}

.hero__body {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero__title {
    width: var(--page-width);
    margin-top: auto;
    margin-bottom: 8px;
    font-size: 2.25rem;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgb(0, 0, 0, 50%);
    color: #fff;
}

.hero__img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    filter: brightness(80%) blur(2px);
    transform: scale(1.04);
}

.hero__img--faded {
    mask-composite: intersect;
    mask-image: linear-gradient(180deg, #000 60%, transparent);
}