/* ==========================================================================
   hero block
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    min-height: 320px;
    isolation: isolate;
}

@media (min-width: 768px) {
    .hero {
        min-height: 420px;
    }
}

@media (min-width: 1440px) {
    .hero {
        min-height: 480px;
    }
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 30, 33, 0.35) 0%, rgba(13, 30, 33, 0.92) 100%);
    z-index: -1;
}

.hero__inner {
    padding-block: 32px 40px;
    max-width: 760px;
}

.hero .breadcrumb {
    color: rgba(241, 244, 244, 0.75);
}

.hero__title {
    margin-bottom: 16px;
}

.hero__subtitle {
    color: var(--color-white);
    font-size: 1.0625rem;
    max-width: 60ch;
    margin-bottom: 24px;
    opacity: 0.92;
}

.hero__cta {
    margin-top: 4px;
}

.rating {
    margin-bottom: 14px;
}
