/* Items */
.items {
}
.item {
    position: relative;
}
.item .thumbnail {
    position: relative;
    padding-top: 65%;
}
.item .thumbnail .wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.item .thumbnail .wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item .details {
    box-sizing: border-box;
    height: 70px;
    padding-top: 8px;
}
.item .details .name {
    color: var(--grey);
}
.item:hover .details .name {
    color: #000;
}


/* Grid */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0 var(--grid-gap);
}
@media only screen and (min-width: 768px) {
    /*.grid {
        grid-template-columns: repeat(2, 1fr);
    }*/
}
@media only screen and (min-width: 1024px) {
    /*.grid {
        grid-template-columns: repeat(2, 1fr);
    }*/
}
@media only screen and (min-width: 1280px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
