#route_section .content {
    padding: 1rem 0.5rem;
    gap: 0.5rem;
}

#route_section .title {
    font-weight: 400;
    font-size: 1.1em;
    color: black;
    line-height: 1.4;
    min-height: calc(1.4em * 2);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

#route_section .tag {
    font-size: .75em;
    background: #F5F5F5;
    padding: 0 1rem;
    border-radius: 6px;
}

#route_section  .price {
    font-size: 1.1em;
    font-weight: 600;
    color: black;
}


#route_section  .photo-container {
    border-radius: 10px;
    height: 160px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

#route_section  .photo {
    height: auto;
    width: 100%;
    object-fit: contain;
    object-position: center;
}


#route_section .slider {
    background: white;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

#route_section .slider.dragging {
    cursor: grabbing;
}

#route_section .slider.dragging .slide {
    pointer-events: none;
}

#route_section .slider.dragging img {
    pointer-events: none;
}

#route_section .slider::-webkit-scrollbar {
    display: none;
}

#route_section .slider .slide-track {
    display: flex;
    width: max-content;
}

#route_section .slider .slide {
    flex: 0 0 300px;
    width: 300px;
    cursor: pointer;
}