/* =====================================
   LOGO STRIP CONTAINER
===================================== */

.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

/* =====================================
   LOGO WRAPPER (CONSTANT SIZE)
===================================== */

.logo-wrapper {
    width: 100px;              /* Desktop width */
    height: 40px;             /* Desktop height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;            /* Prevent resizing */
    overflow: hidden;
    position: relative;
}

/* =====================================
   LOGO IMAGE
===================================== */

.logo-item {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;       /* Prevent distortion */
    transition: opacity 0.4s ease;
    display: block;
}

/* Optional subtle hover effect */
.logo-wrapper:hover .logo-item {
    transform: scale(1.05);
    transition: transform 0.3s ease, opacity 0.4s ease;
}

/* =====================================
   TABLET RESPONSIVE
===================================== */

@media (max-width: 1024px) {

    .logo-strip {
        gap: 2rem;
    }

    .logo-wrapper {
        width: 100px;
        height: 25px;
    }
}

/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 767px) {

    .logo-strip {
        gap: 1rem;
    }

    .logo-wrapper {
        width: 125px;            /* 2 per row */
        height: 35px;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

    .logo-wrapper {
        width: 50px;           /* 1 per row */
        height: 35px;
    }
}
