.date-search-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.date-block {
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
}

.search-desktop {
    position: relative;
    padding-left: 15px;
}

.search-desktop::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.7);
}

.search-mobile {
    display: inline-block;
    margin-top: 10px;
}

.site-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.site-menu li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .site-menu {
        display: none;
    }

    .date-search-wrapper {
        display: none;
    }

    .search-mobile {
        display: inline-block;
    }
}

@media (min-width: 992px) {
    .search-mobile {
        display: none;
    }

    .date-search-wrapper {
        display: flex;
    }
}