#custom_category_widget-2 {
  list-style-type: none;
}
/* Estilos para pantallas más grandes */
 .custom-category-widget {
     display: none;
}
/* Estilos para pantallas más pequeñas (hasta 425px) */
 @media only screen and (max-width: 425px) {
     .custom-category-widget {
         display: flex;
         flex-wrap: wrap;
    }
     .category-item {
         width: 50%;
         padding: 10px;
         box-sizing: border-box;
    }
     .category-item img {
         max-width: 100%;
         height: 193px;
         margin-bottom: 5px;
         border-radius: 20px;
    }
}
 .category-item a {
     text-align: center;
     font-weight: bold;
     color: black;
}
 @media only screen and (max-width: 900px) and (min-width: 426px) {
     .custom-category-widget {
         display: flex;
         flex-wrap: wrap;
         justify-content: space-between;
    }
     .category-item {
         width: calc(33.333% - 10px);
        /* Calcula el ancho de 3 columnas con un pequeño espacio entre ellas */
         box-sizing: border-box;
         margin-bottom: 20px;
        /* Espacio entre las filas */
         padding: 25px;
    }
     .category-item img {
         max-width: 100%;
         height: 193px;
         margin-bottom: 5px;
         border-radius: 20px;
    }
}
 