.cabb-block.featured-artists {
    flex-direction: column;
}

.cabb-block.featured-artists .title {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.cabb-block.featured-artists .lead {
    text-align: center;
    margin-top: calc(var(--wp--preset--spacing--small) / 2);
    margin-bottom: 0;
}

.cabb-block.featured-artists .artists {
    --gap: var(--wp--preset--spacing--small);
    --columns: 4;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    margin-top: var(--wp--preset--spacing--small);
}

.cabb-block.featured-artists .col-2 {
    --columns: 2;
}

.cabb-block.featured-artists .col-3 {
    --columns: 3;
}

.cabb-block.featured-artists .col-4 {
    --columns: 4;
}

.cabb-block.featured-artists .col-5 {
    --columns: 5;
}

.cabb-block.featured-artists .artist {
    width: calc((100% / var(--columns)) - var(--gap) + var(--gap) / var(--columns));
}

.cabb-block.featured-artists .artist .link {
    display: block;
    text-decoration: none;
}

.cabb-block.featured-artists .artist .link * {
    transition: all 0.15s;
}

.cabb-block.featured-artists .artist .image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.1);
}

.cabb-block.featured-artists .artist .name {
    font-family: var(--wp--preset--font-family--roboto-condensed);
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
}

.cabb-block.featured-artists .artist .link:hover img {
    background-color: var(--wp--preset--color--black);
    opacity: 0.75;
}

.cabb-block.featured-artists .artist .link:hover .name {
    color: var(--wp--preset--color--orange);
}

.cabb-block.featured-artists .btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cabb-block.featured-artists .btn-primary {
    margin-top: var(--wp--preset--spacing--medium);
    align-self: center;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .cabb-block.featured-artists .artists {
        --gap: calc(var(--wp--preset--spacing--small) / 2);
    }

    .cabb-block.featured-artists .col-4,
    .cabb-block.featured-artists .col-5 {
        --columns: 3;
    }
}

@media screen and (max-width: 768px) {
    .cabb-block.featured-artists .col-3,
    .cabb-block.featured-artists .col-4,
    .cabb-block.featured-artists .col-5 {
        --columns: 2;
    }
}

@media  (min-width: 1024px) {
    .cabb-block.featured-artists .title{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}