/**
 * "What our customers say" horizontal / grid layout.
 * Imported by home.css; also loaded on service detail for the same section.
 */
.banner-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem;
    scrollbar-width: none;
}

.banner-scroll::-webkit-scrollbar {
    display: none;
}

@media (min-width: 992px) {
    .banner-scroll {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        padding: 0;
    }
}
