/** absolute positioning of caption in frontend, display on hover **/

:not(.block-editor-page *) .kratzen-merch figure {
    position: relative;
}

:not(.block-editor-page *) .kratzen-merch figure figcaption {
    display: none;
}
:not(.block-editor-page *) .kratzen-merch figure:hover figcaption {
    display: block;
}
:not(.block-editor-page *) .kratzen-merch figure:hover img {
    opacity: 0.2;
}

:not(.block-editor-page *) .kratzen-merch figure figcaption {
    position: absolute;
    bottom: 1rem;
    text-align: center;
    padding-inline: 1rem;
}

.kratzen-merch figure figcaption {
    font-weight: bold;
}

/** less columns on smaller devices */
@media (max-width: 1024px) {
    .kratzen-merch {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}
@media (max-width: 640px) {
    .kratzen-merch {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
