:root {
    --color-cyan: #05f9ff;
    --color-graphite: #1e222a;
    --color-charcoal: #050506;
    --color-yellow: #d9ff40;
    --color-gray: #1e222a;
    --color-gray-l: #bbbbbb;
    --font-monserrat: "Montserrat", sans-serif;
    --font-oswald: "Oswald", sans-serif;
}


/* Main wrapper inside your swiper section */

.swiper-brands-section .wrapper {
    display: block;
    margin-inline: auto;
    width: 100%;
    max-width: 1280px;
    padding-inline: 20px;
}


/* Preview overlay */

.swiper-brands-section .preview {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.swiper-brands-section .preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Content wrapper */

.swiper-brands-section .swiper-brands-section__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(80dvh - 160px);
}

.swiper-brands-section .swiper-brands-section__content {
    position: relative;
    z-index: 1;
}


/* Heading */

.swiper-brands-section .swiper-brands-section__heading {
    flex: 1;
    z-index: 1;
}

.swiper-brands-section .swiper-brands-section__heading .swiper-brands-section__text,
.swiper-brands-section .swiper-brands-section__heading .swiper-brands-section__title {
    text-align: left;
}


/* Title */

.swiper-brands-section .swiper-brands-section__title {
    display: block;
    margin: 0 0 30px;
    font-family: var(--font-oswald);
    font-weight: 400;
    font-size: 48px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.15;
    transition: color 0.4s;
}


/* Text */

.swiper-brands-section .swiper-brands-section__text {
    display: block;
    margin-bottom: 80px;
    font-weight: 300;
    text-align: center;
    line-height: 1.35;
    color: var(--color-gray-l);
    transition: color 0.4s;
}


/* List */

.swiper-brands-section .swiper-brands-section__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px 90px;
    max-width: 100%;
    margin-inline: auto;
}


/* MOBILE FIXES — fully scoped */

@media screen and (max-width: 767.9px) {
    .swiper-brands-section .swiper-brands-section__heading {
        align-items: center;
    }
    .swiper-brands-section .swiper-brands-section__heading .swiper-brands-section__text,
    .swiper-brands-section .swiper-brands-section__heading .swiper-brands-section__title {
        text-align: center;
    }
    .swiper-brands-section .swiper-brands-section__title {
        font-size: 32px;
    }
}