.headerRouteDetail {
    position: relative;
    height: var(--headerHeight);
    margin-bottom: max(2rem, 3vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.headerRouteDetail > * {
    width: 100%;
    max-width: 1200px;
}

.headerRouteDetail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--tertiaryColor500);
    mix-blend-mode: darken;
    opacity: .5;
}

.headerRouteDetail__routeInfo {
    position: relative;
}

.headerRouteDetail__actions {
    position: relative;
    margin: 1rem auto;
    padding: 15px;
    border-radius: 5px;
    background-color: #fff;
    z-index: 3;
}
