/*
 * SurinNet mega-menu uniform grid fix — 2026-09-02
 *
 * Short category branches previously allowed their inner flex list to shrink
 * to the width of its contents. That made cards and images collapse together.
 * Keep every desktop branch on the same four-column grid while preserving the
 * existing mobile menu behavior.
 */
@media (min-width: 992px) {
    .sub-sub-megaMenu > .navbar-nav {
        width: 100%;
        align-content: flex-start;
    }

    .sub-sub-megaMenu > .navbar-nav > .nav-item {
        box-sizing: border-box;
        flex: 0 0 24%;
        min-width: 0;
    }

    .navbar .sub-sub-megaMenu img {
        width: 64px;
        min-width: 64px;
        height: auto;
        margin-left: 10px;
    }
}
