/* Original yellow strip, centered after removing the floating blue badge. */
.brand-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-left: max(44px, calc((100vw - 1380px) / 2 + 44px));
    padding-right: max(44px, calc((100vw - 1380px) / 2 + 44px));
}

@media (max-width: 980px) {
    .brand-strip { padding: 30px 35px; }
}

@media (max-width: 680px) {
    .brand-strip {
        min-height: 82px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        padding: 14px 10px;
    }

    .brand-strip span {
        min-width: 0;
        min-height: 52px;
        padding: 0 8px;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        border-right: 1px solid rgba(43, 36, 23, .2);
        text-align: center;
        font-size: 10px;
        line-height: 1.35;
    }

    .brand-strip span:last-child {
        border-right: 0;
    }

    .brand-strip i {
        font-size: 10px;
        line-height: 1;
    }
}
