/* Styling utama carousel */
.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.slide-img {
    width: 100%;
    height: 300px;
    /* Atur tinggi gambar sesuai kebutuhan */
    object-fit: cover;
    /* Agar gambar tetap proporsional */
    border-radius: 15px;
    /* Untuk efek rounded seperti gambar 1 */
}

.slide-caption {
    position: absolute;
    bottom: 0;
    /* top: 0; */
    left: 0;
    right: 0;
    color: white;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    /* Efek background transparan hitam di bawah teks */
    padding: 10px 15px;
    border-radius: 15px;
    /* max-width: 80%; */
}

.slide-cat {
    font-size: 14px;
    font-weight: 600;
    color: #ffb347;
    /* Warna kuning/oranye untuk kategori */
    text-transform: uppercase;
    margin-bottom: 5px;
}

.slide-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.slide-title a {
    color: white;
    text-decoration: none;
}

.slide-title a:hover {
    color: whitesmoke;
}

.slide-time {
    font-size: 12px;
    color: #ccc;
}

.slide-item {
    width: 100% !important;
}

.owl-prev,
.owl-next {
    top: 40% !important;
    background-color: #FFF !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 28px !important;
    line-height: 28px !important;
    padding: 2px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: absolute !important;
    transform: translateY(-50%) !important;
    display: block !important;
}
.owl-prev:hover,
.owl-next:hover {
    color: #000 !important;
    background-color: #EEE !important;
}
.owl-prev {
    margin-left: calc(24% + 20px) !important;
    left: 0 !important;
}
.owl-next {
    margin-right: calc(22% + 20px) !important;
    right: 0 !important;
}

/* Mobile View */
@media only screen and (max-width: 1024px) {
    .owl-prev {
        margin-left: 50px !important;
    }
    .owl-next {
        margin-right: 25px !important;
    }
}
