@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::before {
    background: var(--bg) no-repeat center;
    opacity: 1;

}
.second-image-template .artist__image figure::after {
    background: var(--bg-hover) no-repeat center;
    opacity: 0;

}
.artist__image figure::before,
.artist__image figure::after {
    content: '';
    transition: all 1.3s;
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
}

.artist__title {
    font-size: 1.1rem;
    margin: 0 0 5px;
    color: #000;
}

.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 .artist__image figure::before {
    opacity: 0;
}
.second-image-template .artist:hover .artist__image figure::after {
    opacity: 1;
}
