.navigation-top__logo-container {
    max-height: 60px; /* Adjust based on your navbar height */
    display: flex;
    align-items: center;
}

.navigation-top__logo-img {
    max-height: 100%;
    width: auto;
    display: block;
}

.icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
}

.icons > li {
    float: none;              /* disable Foundation floats */
    list-style: none;
    width: 33.333%;           /* keeps 3-per-row on medium+ */
}

/* Responsive behavior */
@media screen and (max-width: 640px) {
    .icons > li {
        width: 100%;
    }
}