.topnavl-wrapper {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
}
.topnavl-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
.topnavl-item {
    width: 132px;
    margin: 0 10px 20px 10px;
    text-align: center;
    box-sizing: border-box;
}
.topnavl-img-wrap {
    width: 132px;
    height: 132px;
    overflow: hidden;
    margin: 0 auto 8px auto;
    border-radius: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topnavl-img {
    width: 132px;
    height: 132px;
    object-fit: cover;
    transition: filter 0.2s, box-shadow 0.2s;
    border-radius: 10px;
}
.topnavl-item a {
    text-decoration: none;
    color: inherit;
}
.topnavl-name {
    font-size: 1em;
    font-weight: 500;
    margin-top: 2px;
    word-break: break-word;
}
@media (max-width: 1400px) {
    .topnavl-row { flex-wrap: wrap; }
    .topnavl-item { margin: 0 5px 15px 5px; }
}
@media (max-width: 1100px) {
    .topnavl-item { width: 11vw; min-width: 90px; max-width: 132px; }
    .topnavl-img, .topnavl-img-wrap { width: 100%; height: auto; max-width: 132px; }
}
@media (max-width: 600px) {
    .topnavl-row { flex-wrap: wrap; }
    .topnavl-item { width: 45vw; min-width: 80px; max-width: 132px; }
} 