.category-wall__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Allinea il contenuto verso il basso */
    height: 100%;
    padding: 15px;
    position: relative;
    width: 100%;
    margin: 0 0 20px !important;
}

.category-wall__title {
    text-align: center;
    font-weight: 700;
    word-wrap: break-word;
    margin-bottom: 10px; /* Distanza dal titolo */
}

.category-wall__image {
    display: flex;
    align-items: flex-end; /* Allinea l'immagine in basso */
    justify-content: center; /* Centra l'immagine orizzontalmente */
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.category-wall__image img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Fa sì che l'immagine riempia il box */
    object-position: bottom; /* Allinea l'immagine verso il basso */
    transform: translateY(25%); /* Sposta l'immagine verso il basso */
}



.category-wall__ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    width: 100%;
}

.category-wall__li {
    margin: 0 0 5px;
    font-size: .95em;
}

.category-wall__li a {
    display: flex;
    color: #555;
    justify-content: center;
}

.category-wall__li a:hover {
    color: #222;
}

.category-wall__more {
    font-size: .9em;
    text-decoration: underline;
}

/* Adatta le immagini ai dispositivi mobili */
@media (max-width: 575px) {
    .category-wall__image.child.type2 {
        flex: 0 0 33%;
    }
    
    .category-wall__image img {
        object-fit: cover; /* Evita il taglio delle immagini su schermi più piccoli */
    }
}
