/* Fonts */
.item .name {
    margin-bottom: 5px;
}
.item .type {
    margin-bottom: 15px;
}
.item .subtitle {
}
.item .surtitle {
    font-size: 14px;
}
.item .theme,
.item .more .short {
    display: none;
}

/* Flex */
@media only screen and (min-width: 768px) {
    .flex {
        display: flex;
        column-gap: 10px;
        flex-wrap: nowrap;
    }
}

/* Grid */
.grid .item {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
        grid-auto-rows: minmax(100px, auto);
    }
}
@media only screen and (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 20px;
    }
}
@media only screen and (min-width: 1280px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-gap: 30px;
    }
}

/* Items */
.item {
    width: 100%;
}
.item .remove {
    display: none;
}
.item .thumbnail {
    position: relative;
    padding-top: 100%;
    margin-bottom: 10px;
}
.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 .thumbnail .wrapper svg rect {
    fill: var(--current-shape-color);
}
.item.closed {
    background: #f2f2f2;
}
.item.closed .details {
    padding: 0 5px 5px 5px;
}
@media only screen and (min-width: 768px) {
    .item {
        width: 50%;
    }
}
@media only screen and (min-width: 1024px) {
    .item {
        width: 33.33%;
    }
}
@media only screen and (min-width: 1280px) {
    .item {
        width: 25%;
    }
}