/* ============================================
   IMAGE SLIDER (reusable)
   ============================================ */

.program-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.program-image-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s ease;
}

.program-image-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.program-image-slide .program-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-image-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    color: #1c1c1c;
    font-size: 16px;
    z-index: 5;
    transition: background 0.15s;
}

.program-image-slider-arrow:hover {
    background: #ffffff;
}

.program-image-slider-arrow.prev {
    left: 15px;
}

.program-image-slider-arrow.next {
    right: 15px;
}

.program-image-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}

.program-image-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s, transform 0.15s;
}

.program-image-slider-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.program-image-slider-dot.active {
    background: #ffffff;
    transform: scale(1.25);
}

@media (max-width: 600px) {
    .program-image-slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}
