/* Rhythm Image Slider Styles */
.rhythm-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.rhythm-image-row {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.rhythm-image {
    flex: 0 0 calc(33.333% - 14px);
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.rhythm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rhythm-image:hover img {
    transform: scale(1.05);
}

/* Slider Controls */
.rhythm-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(204, 146, 1, 0.9);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.rhythm-slider-btn:hover:not(:disabled) {
    background: #cc9201;
    transform: translateY(-50%) scale(1.1);
}

.rhythm-slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.rhythm-slider-prev {
    left: -60px;
}

.rhythm-slider-next {
    right: -60px;
}

/* Slider Dots */
.rhythm-slider-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    padding: 20px 0;
}

.rhythm-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #cc9201;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rhythm-dot.active {
    background: #cc9201;
    width: 28px;
    border-radius: 6px;
}

.rhythm-dot:hover {
    border-color: #cc9201;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .rhythm-image {
        flex: 0 0 calc(50% - 10px);
    }
    
    .rhythm-slider-prev {
        left: 10px;
    }
    
    .rhythm-slider-next {
        right: 10px;
    }
}

@media (max-width: 640px) {
    .rhythm-image {
        flex: 0 0 100%;
    }
    
    .rhythm-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .rhythm-slider-prev,
    .rhythm-slider-next {
        left: 5px;
        right: 5px;
    }
}
