.collection-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 0;
}

.collection-item {
    width: 33.3333%;
    padding: 0 5px;
    box-sizing: border-box;
}

.collection-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 556 / 816;
    overflow: hidden;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collection-img-title {
    display: inline-block;
    margin-top: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    color: #000000;
}

@media (max-width: 900px) {
    .collection-item {
        width: 50%;
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .collection-item {
        width: 50%;
        margin-top: 40px;
    }
}
