.blc-wrap {
    position: relative;
    width: 100%;
}

/* Critical: Swiper must clip slides */
.blc-wrap .blc-carousel.swiper {
    overflow: hidden;
    width: 100%;
}

.blc-wrap .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.blc-wrap .swiper-slide {
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}

.blc-grid {
    display: grid;
    gap: 20px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.blc-item {
    text-align: center;
}

.blc-item img {
    max-width: 100%;
    height: auto;
    transition: filter 0.3s;
}

/* Navigation arrows */
.blc-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.blc-prev,
.blc-next {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
}

.blc-prev:hover,
.blc-next:hover {
    background: #f0f0f0;
    border-color: #aaa;
}

/* Pagination dots */
.blc-wrap .swiper-pagination {
    position: relative;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.blc-wrap .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s;
}

.blc-wrap .swiper-pagination-bullet-active {
    background: #333;
}

@media (max-width: 767px) {
    .blc-grid {
        gap: 12px;
    }
}