@charset "UTF-8";

.artist {
    font-size: 1.1rem;
    color: var(--colour_text_body);
    font-weight: 100;
    width: calc((100% - (var(--column-count) - 1) * 20px) / var(--column-count));
}

.stock-gap {
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.artist-header .title {
    margin-bottom: 20px;
}

.artist__soled, .artist__reserved, .artist_out-of-stock {
    z-index: 20;
    font-size: 0.8rem;
    padding: 0 10px;
    top: -5px;
    color: #ffffff;
}

.artist__soled {
    background: #be5754;
}

.artist__reserved {
    background: #0f1d56cc;
}

.artist_out-of-stock {
    background-color: #7e7e7e;
}

.artist__image {
    padding-top: 100%;
    margin-bottom: 5px;
    background: var(--items-bg);
}

.artist__image figure {
    top: 0;
    left: 0;
}

.artist__image figure.hover-image,
.artist__image figure.static-image {
    transition: all 1.3s;
}

.artist__image figure img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.artist__title {
    font-size: 1.1rem;
    margin: 0 0 5px;
    color: var(--colour_text_body);
}

.artist__price {
    font-size: 1rem;
    margin-bottom: 20px;
}

.artist:hover {
    color: inherit;
}

.artist__btn-container {
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
}

.artist__btn-container *,
.artist__btn-container .btn {
    color: var(--colour_text_body)
}

.artist:hover .artist__btn-container {
    opacity: 1;
}

.second-image-template .artist:hover figure.static-image {
    opacity: 0;
}

.second-image-template .artist:hover figure.hover-image {
    opacity: 1;
}


figure.static-image {
    opacity: 1;
}

figure.hover-image {
    left: 0;
    top: 0;
    opacity: 0;
}

.modal-content {
    background: var(--body-bg);
}

.modal .close {
    font-size: 4.5rem;
    opacity: 1;
    color: var(--colour_text_body)
}

.modal-subtitle {
    font-size: 1.4rem;
}

.modal-body {
    padding: 0 80px 50px;
}

.stock-video-container {
    top: 0;
    left: 0;
}

@media all and (max-width: 992px) {
    .artist {
        width: calc((100% - 2 * 20px) / 3);
    }
}

@media all and (max-width: 567px) {
    .artist {
        width: calc((100% - 20px) / 2);
    }
}
