/* =========================================================
ICT / FPT Brands

Purpose:
- Display supported ICT / FPT equipment brands.
- Keep the section compact and expandable.

Dependencies:
- brands.blade.php
========================================================= */


/* =========================================================
Brands Section
========================================================= */

.ict-fpt-brands {

    width: 100%;

    padding: 70px 0;

    border-top: 1px solid
        rgba(255, 255, 255, 0.08);

    border-bottom: 1px solid
        rgba(255, 255, 255, 0.08);

}


.ict-fpt-brands-inner {

    width: min(
        1200px,
        calc(100% - 80px)
    );

    margin: 0 auto;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 28px;

    text-align: center;

}


/* =========================================================
Brands Heading
========================================================= */

.ict-fpt-brands-heading {

    max-width: 520px;

}


.ict-fpt-brands-eyebrow {

    display: block;

    margin-bottom: 12px;

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    opacity: 0.6;

}


.ict-fpt-brands-description {

    margin: 0;

    font-size: 1.1rem;

    line-height: 1.6;

    opacity: 0.7;

}


/* =========================================================
Brand List
========================================================= */

.ict-fpt-brand-list {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

}


.ict-fpt-brand-item {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px 30px;

    transition:
        transform 220ms ease;

}

.ict-fpt-brand-logo {

    display: block;

    width: 100%;

    max-width: 320px;

    max-height: 110px;

    object-fit: contain;

    opacity: 0.85;

    transition:
        opacity 220ms ease,
        transform 220ms ease;

}

.ict-fpt-brand-logo {

    opacity: 1;

    transform: scale(1.03);

}


/* =========================================================
Responsive
========================================================= */

@media (max-width: 700px) {

    .ict-fpt-brands {

        padding: 55px 0;

    }


    .ict-fpt-brands-inner {

        width: min(
            100% - 36px,
            1200px
        );

        flex-direction: column;

        align-items: stretch;

        gap: 30px;

    }


    .ict-fpt-brands-heading {

        max-width: none;

        text-align: center;

    }


    .ict-fpt-brand-list {

        justify-content: center;

    }


    .ict-fpt-brand-item {

        width: min(
            220px,
            100%
        );

    }

}