.hero {
    margin-top: 0
}

.hero__container {
    display: flex;
    flex-direction: column;
    position: relative;
    height: clamp(400px, 307.6923076923px + 0.1602564103*100vw, 500px)
}

.hero__container[image-size=large] {
    height: clamp(400px, 178.4615384615px + 0.3846153846*100vw, 522px)
}

.hero__container::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.13%, rgba(0, 0, 0, var(--hero-overlay-opacity, 0.9)) 90.39%)
}

.hero__container[align-title=top]::after {
    top: 0;
    bottom: initial;
    background: linear-gradient(180deg, rgba(6, 44, 70, var(--hero-overlay-opacity, 0.9)) 0%, rgba(6, 44, 70, 0) 63.91%)
}

.hero__container[align-title=top] .hero__content {
    margin-bottom: auto;
    margin-top: 50px
}

@media screen and (min-width: 1024px) {
    .hero__container[align-title=top] .hero__content {
        margin-top: 92px;
        max-width: 1280px
    }
}

.hero__container[short-top-spacing=true] .hero__content {
    margin-top: 30px
}

@media screen and (min-width: 1024px) {
    .hero__container[short-top-spacing=true] .hero__content {
        margin-top: 60px
    }
}

.hero__pre-heading-italic {
    font-style: italic
}

.hero__title {
    margin-bottom: 0;
    margin-top: 5px
}

.hero__title:first-child {
    margin-top: 0
}

@media screen and (min-width: 768px) {
    .hero__title {
        margin-top: 0
    }
}

.hero__content {
    color: var(--color-white);
    margin-top: auto;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
    z-index: 2
}

.hero__itinerary {
    position: relative;
    max-width: 500px;
    margin: 27px auto 32px auto;
    padding: 20px 0 15px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-top: none;
    display: flex
}

@media screen and (min-width: 768px) {
    .hero__itinerary {
        margin-top: 27px;
        margin-bottom: 27px;
        padding-bottom: 13px
    }
}

.hero__itinerary-column {
    width: 50%;
    padding: 0 8px
}

.hero__itinerary-column p {
    margin-bottom: 0
}

.hero__itinerary-column p+p {
    margin-top: 8px
}

.hero__itinerary-column:nth-of-type(1) {
    border-right: 1px solid rgba(255, 255, 255, .5)
}

.hero__itinerary-heading {
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center
}

.hero__itinerary-heading-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex: 1
}

.hero__itinerary-heading-wrap::after,
.hero__itinerary-heading-wrap::before {
    content: " ";
    height: 1px;
    flex: 1;
    background-color: rgba(255, 255, 255, .5)
}

.hero__itinerary-heading-text {
    padding: 0 10px
}

.hero__sub-title {
    font-weight: var(--font-weight-default);
    margin-top: 5px
}

.hero__label {
    padding: 6px 14px;
    display: inline-block;
    color: var(--color-bunker);
    margin-top: 13px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-xsmall)
}

@media screen and (min-width: 768px) {
    .hero__label {
        margin-top: 15px
    }
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero .media-lightbox {
    display: inline-block;
    height: auto;
    margin-top: 15px
}