/* Fonts */
.item .name {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 10px;
}
.item .subtitle {
}
.item .theme,
.item .more .short {
    display: none;
}
.item .description {
    font-family: 'NotoSerif-Regular';
    font-size: 12px;
    line-height: 15px;
}
.results_section_title {
    font-size: 36px;
    line-height: 36px;
}

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


/* Items */
.items {
    padding: var(--default-spacing) 0;
}
.item {
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}
.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: contain;
    object-position: left bottom;
}
.item .thumbnail .wrapper svg rect {
    fill: #f2f2f2;
}
@media only screen and (min-width: 768px) {
    .item {
        width: 50%;
    }
    .item .details {
        margin-top: 20px;
    }
    .item .details {
        visibility: visible;
        /*position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: rgba(255,255,255, 0.9);*/
    }
    .item:hover .details {
        visibility: visible;
    }
    /*.item .details .wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .item:hover .details {
        display: block;
    }*/
    .item .thumbnail .wrapper img {
        object-position: left bottom;
    }
}
@media only screen and (min-width: 1024px) {
    .item {
        width: 33.33%;
    }
}
@media only screen and (min-width: 1280px) {
    .item {
        width: 25%;
    }
}

/* Grid */
.grid .item {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    .grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 30px;
        /*grid-auto-rows: minmax(100px, auto);*/
    }
    .grid .results_section_title {
        grid-column: span 2;
    }
}
@media only screen and (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 40px;
    }
    .grid .results_section_title {
        grid-column: span 3;
    }
}
@media only screen and (min-width: 1280px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 40px;
    }
    .grid .results_section_title {
        grid-column: span 4;
    }
}
/*@media only screen and (min-width: 1900px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 40px;
    }
    .grid .results_section_title {
        grid-column: span 5;
    }
}*/
