.map-sitemap_productlist-w5g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1440px;
    margin: 0 auto;
}

@media (max-width: 960px) {
    .map-sitemap_productlist-w5g {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .map-sitemap_productlist-w5g {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 414px) {
    .map-sitemap_productlist-w5g {
        grid-template-columns: repeat(1, 1fr);
    }
}

