section.artists-full .container-fixed {
    padding: var(--spacing-md) var(--site-padding);
}

section.artists-full h2 {
    text-align: center;
    max-width: 768px;
    margin: auto;
}

section.artists-full .artists {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    mix-blend-mode: screen;
    margin: var(--spacing-md) 0;
}

section.artists-full .artists img {
    max-width: 250px;
    max-height: 125px;
    margin: 1rem 2rem;
}

@media screen and (max-width: 768px) {
    section.artists-full .artists img {
        max-width:50%;
    }

    section.artists-full h2 {
        font-size: 1rem;
    }
}


