/* Brands Carousel block */
.home-brands { 
    /* padding: 3rem 0;  */
    overflow-x: clip; 
}
.home-brands__head { text-align: center; margin-bottom: 0.8rem; }
.home-brands__viewport { position: relative; }
.home-brands__swiper { overflow: visible; }
.home-brands__slide {
    display: flex; align-items: center; justify-content: center;
    position: relative; height: 220px; 
    /* border-radius: 8px;  */
    overflow: hidden;
    background-size: cover; background-position: center;
    background-color: #1f2937; /* fallback when no thumbnail */
}
.home-brands__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15)); }
.home-brands__name {
    position: relative; color: #fff; font-weight: 700; letter-spacing: 1px;
    font-size: 1.25rem; text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.home-brands__arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(255,255,255,.92); color: #1f2937; font-size: 1.5rem; line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.home-brands__arrow:hover { background: #fff; }
.home-brands__arrow--prev { left: 14px; }
.home-brands__arrow--next { right: 14px; }
@media (max-width: 768px) {
    .home-brands__slide { height: 140px; }
}
