.trip-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 300px;
    background: #000;
    margin: 20px 0;
}

.slider-container {
    display: flex;
    width: fit-content;
    animation: scroll 60s linear infinite;
    height: 100%;
}

.slider-track {
    display: flex;
    height: 100%;
    gap: 0;
}

.slider-image {
    height: 300px;
    width: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Remove hover effects and gradients for cleaner look */
.slider-container:hover {
    animation-play-state: running;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trip-slider,
    .slider-image {
        height: 300px;
    }
}
