/* START Frontend Styles */
.kol-bbpress-dual-sliders {
    display: flex;
    gap: 20px;
    margin: 20px 0 40px 0;
    width: 100%;
    clear: both;
}

.kol-slider-wrapper {
    flex: 1;
    background: #d4a574;
    border: 1px solid #8b6f47 !important;
    border-radius: 11px;
    padding: 11px;
    overflow: hidden;
    transition: 0.3s ease;
    height: 300px;
}

html.dark-mode .kol-slider-wrapper {
    background: #16213e;
    border-color: var(--ld-dark-mode-border-color, #2a3f5f) !important;
}

.kol-slider {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.kol-slide {
    display: none;
    position: relative;
    height: 100%;
}

.kol-slide:first-child {
    display: block;
}

.kol-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 11px;
    display: block;
    border: none !important;
}

.kol-slide a {
    display: block;
    text-decoration: none;
    height: 100%;
    border: none !important;
}

.kol-slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
}

html.dark-mode .kol-slide-title {
    background: rgba(22, 33, 62, 0.9);
    color: var(--ld-dark-mode-content-text, #e0e0e0);
}

@media (max-width: 768px) {
    .kol-bbpress-dual-sliders {
        flex-direction: column;
    }
}
/* END Frontend Styles */