/* Full-width carousel container */
.home-carousel {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    overflow: hidden;
    padding: 4rem 0; /* bigger row */
    min-height: 220px; /* ensure minimum height */
}

/* Fixed galaxy background */
.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/img/base/galaxy_background.jpg') center/cover fixed;
    opacity: 1;
    z-index: 0;
}

/* Swiper container above background */
.swiper.committees-swiper {
    position: relative;
    z-index: 1;
    height: 100%; /* take full height of the carousel section */
}

/* Logo slides */
.logo-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.logo-slide img {
    height: 140px;
    width: auto;
    object-fit: contain;
    margin: 0 3%; /* spacing between logos as % of width */
    filter: drop-shadow(0 2px 6px var(--color-shadow-strong));
}
