/* Item thumbnail */
.item_thumbnail {
}
.item_thumbnail .wrapper {
    background: #ddd;
}
.item_thumbnail .wrapper img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.item_thumbnail .wrapper img.portrait {
    object-fit: contain;
}


/* Item details */
.item_details {
    padding-right: var(--default-spacing);
}
.item_description,
.item_name {
    margin-top: calc(var(--default-spacing) / 2);
}

/* Grid */
.items.grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px var(--default-spacing);
}
.grid_section {
}

@media only screen and (min-width: 768px) {
    .items.grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid_section {
        grid-column: span 2;
    }
}
@media only screen and (min-width: 1024px) {
    .items.grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid_section {
        grid-column: span 3;
    }
}
@media only screen and (min-width: 1280px) {
    .items.grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid_section {
        grid-column: span 4;
    }
}
