/* Faith Content Section - Custom Scrollbar Styles */

/* Webkit browsers (Chrome, Safari, Edge) */
.scrollbar-custom::-webkit-scrollbar {
    width: 16px;
}

.scrollbar-custom::-webkit-scrollbar-track {
    background: #e0e1dc;
    border-radius: 18px;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    background: #a8a9a4;
    border-radius: 18px;
    border: 3px solid #e0e1dc;
}

.scrollbar-custom::-webkit-scrollbar-thumb:hover {
    background: #8a8b86;
}

/* Firefox */
.scrollbar-custom {
    scrollbar-width: thin;
    scrollbar-color: #a8a9a4 #e0e1dc;
}

/* Smooth scrolling */
.scroll-smooth {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Mobile optimization - hide scrollbar on mobile */
@media (max-width: 1023px) {
    .scrollbar-custom::-webkit-scrollbar {
        display: none;
    }
    
    .scrollbar-custom {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
}
