/* Base styles */
.jkkp-info-semasa-slider-block {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    margin: 0 auto;
}

.jkkp-info-semasa-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jkkp-info-semasa-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
}

.jkkp-info-semasa-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.jkkp-info-semasa-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.jkkp-info-semasa-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jkkp-info-semasa-slider-bullets-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jkkp-info-semasa-slider-bullets {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

.jkkp-info-semasa-slider-bullet {
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jkkp-info-semasa-slider-bullet.active {
    background-color: #fff;
}

/* Desktop styles (≥1024px) */
@media screen and (min-width: 1024px) {
    .jkkp-info-semasa-slider-block {
        border-radius: 20px;
    }
    
    .jkkp-info-semasa-slider-bullet {
        width: 10px;
        height: 10px;
    }
}

/* Tablet styles (768px-1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .jkkp-info-semasa-slider-block {
        border-radius: 15px;
    }
    
    .jkkp-info-semasa-slider-bullet {
        width: 8px;
        height: 8px;
    }
}

/* Mobile styles (<768px) */
@media screen and (max-width: 767px) {
    .jkkp-info-semasa-slider-block {
        border-radius: 10px;
        width: 100vw;
        max-width: 100%;
        padding-top: 56.25%; /* 16:9 aspect ratio */
        margin: 0;
    }
    
    .jkkp-info-semasa-slider-bullet {
        width: 6px;
        height: 6px;
    }
    
    .jkkp-info-semasa-slider-bullets {
        right: 5px;
    }
}