.hero {
    position: relative;
    width: 100%;
    height: 17.5rem;
    margin-bottom: 6.25rem;
    box-shadow: inset 0 0 8px 12px rgb(0, 0, 0, 40%);
    overflow: hidden;
}

.hero.hero--ovis-page {
    height: 3.75rem;
    margin: 0;
    box-shadow: none;
}

.hero.hero--ovis-page .hero__body {
    display: none;
}

.hero__body {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-left: var(--page-width-padding);
    padding-right: var(--page-width-padding);
}

.hero__title {
    margin-top: auto;
    margin-bottom: 4px;
    font-size: 2.25rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgb(0, 0, 0, 20%);
    color: #fff;
}

.hero__img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: 50% 70%;
    filter: brightness(80%) blur(2px);
    transform: scale(1.02);
}

.hero__img--faded {
    mask-composite: intersect;
    mask-image: linear-gradient(180deg, #000 60%, transparent);
}