.alma-collections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}
.collection-item {
    position: relative;
    text-align: center;
    background: white;
    padding: 5px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
    width: 32%; /* Fixed width */
}
.collection-item img {
    width: 100%;
    height: 175px; /* Fixed height */
    object-fit: cover;
}
.collection-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 5px;
}

@media screen and (max-width: 548px) {
    .collection-item {
        width: 100%;
    }
}