.artists {
    padding: 8rem 0;
    position: relative;
    background-color: #F2F2F2;
}

.artists .title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 75%;
    margin: 0 auto 8rem;
}

.artists .title-wrapper h3 {
    margin: 0 0 2rem;
}

.artists .title-wrapper p {
    margin: 0;
}

.artists .feature-wrapper {
    margin: 0 auto 8rem;
    max-width: 75%;
}

.artists .icon-wrapper {
    display: flex;
    justify-content: center;
    border-radius: 50%;
    max-width: 200px;
    margin: 0 auto 4rem;
    overflow: hidden;
}

.artists .icon-wrapper img {
    max-width: 200px;
    object-fit: cover;
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    border-radius: 50%;
    background-color: #fff;
    transition: transform .3s ease;
}

.artists .feature-wrapper:hover .icon-wrapper img {
    transform: scale(1.05);
}

.artists .feature-title h4 {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0 0 2rem;
}

.artists .feature-description p {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.artists .feature-description p:not(:last-child) {
    margin-bottom: 1.5rem;
}

@media (max-width:1199px) {

    .artists .title-wrapper {
        max-width: 100%;
        margin-bottom: 5rem;
    }

    .artists .feature-wrapper {
        margin: 0 auto 5rem;
        max-width: 100%;
    }

    .artists::before {
        background-position: 50% 50%;
    }
}