/* =========================================
   BALAI PIKIR - MAIN SWIPER SLIDER CSS
   (Optimized: No Pagination, Nav Enabled on Mobile)
   ========================================= */

/* === CONTAINER === */
.balai-kadence-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* === CARD DESIGN === */
.bp-swiper-card {
    display: flex;
    flex-direction: column;
    background: tranparent;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--global-palette6);
    height: 100%;

}

/* === IMAGE WRAPPER (Rasio 16:9) === */
.bp-swiper-img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: block;
    aspect-ratio: 16/9
}

.bp-swiper-img-wrap:focus-visible {
    outline: 3px solid #253A7C;
    outline-offset: 2px;
}

.bp-swiper-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-swiper-img-wrap img:hover {
    transform: scale(1.02);
}

/* === CONTENT AREA === */
.bp-swiper-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 150px;

}

.bp-swiper-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.bp-swiper-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.bp-swiper-title a:hover {
    color: #253A7C;
}

/* === META & AUTHOR === */
.bp-swiper-meta {
    margin-top: auto !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--global-palette5);
    border-top: 1px solid var(--global-palette6);
    padding-top: 15px;

}

.bp-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #2d3748;
}

/* === BUTTON NAVIGASI (PANAH KIRI-KANAN) === */
.balai-kadence-swiper .swiper-button-prev,
.balai-kadence-swiper .swiper-button-next {
    display: flex !important; /* Paksa muncul di semua device */
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #253A7C;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.1s ease;
}

.balai-kadence-swiper .swiper-button-prev:after,
.balai-kadence-swiper .swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.balai-kadence-swiper .swiper-button-prev:hover,
.balai-kadence-swiper .swiper-button-next:hover {
    background: #253A7C;
    color: #fff;
    transform: scale(1.1);
}

/* === OPTIMASI MOBILE (RESPONSIVE) === */
@media (max-width: 768px) {
    .bp-swiper-title {
        font-size: 16px;
    }
    
    .bp-swiper-content {
        padding: 15px;
        min-height: 120px;
    }
    
    /* Navigasi tetap muncul tapi dikecilin biar gak ganggu gambar */
    .balai-kadence-swiper .swiper-button-prev,
    .balai-kadence-swiper .swiper-button-next {
        width: 32px;
        height: 32px;
    }
    .balai-kadence-swiper .swiper-button-prev:after,
    .balai-kadence-swiper .swiper-button-next:after {
        font-size: 14px;
    }
}