.artists  {
    margin-bottom: 60px;
}

.main-artists>.artists:not(:first-child) {
    border-top: 1px solid #d7dcde;
    margin-top: 40px;
    padding-top: 40px;
}

.artists-container {
    display: grid;
    grid-template-columns: repeat(4, calc((100% - 30px) / 4));
    grid-gap: 10px;
}

.artists-container__item__info {
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.artists-container__item__info__title {
    line-height: 16px;
    font-weight: normal;
    font-size: 1.2rem;
    margin: 10px 0 20px;
}

.artists-container__item__info__image {
    margin-bottom: 10px;
    padding-top: 100%;
    line-height: 0;
    background: var(--card-bg-color);
}

.artists-container__item__info__image img {
    max-width: 100%;
    max-height: 100%;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
}
.categories-container{
    padding-bottom: 50px !important;
}
.artist-page__image>img {
    max-height: 350px;
    -o-object-fit: contain;
       object-fit: contain;
}
@media all and (max-width: 1024px) {
    .artists-container {
        grid-template-columns: repeat(3, calc((100% - 20px) / 3));
    }
}

@media all and (max-width: 767px) {
    .artists-container {
        grid-template-columns: repeat(2, calc((100% - 10px) / 2));
    }
}

@media screen and (max-width: 767px) {
    .artist-page__info {
        padding:20px 0 0;
    }
}
