@charset "UTF-8";

.artist {
    font-size: 1.1rem;
    color: var(--colour_text_body);
    font-weight: 100;
    padding-bottom: 20px;
}
.artist-header .title {
    margin-bottom: 20px;
}
.artist__soled, .artist__reserved {
    z-index: 20;
    font-size: 0.8rem;
    padding: 0 10px;
    top: -5px;
}

.artist__soled{
    background: #be5754;
}

.artist__reserved {
    background: #0f1d56cc;
}

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

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

.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: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;
}

.featured{
    z-index: 450;
    top: 0;
    right: 0;
    color: var(--colour_button_normal_text);
    padding: 5px 15px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    background: var(--colour_button_normal);;
}
