/* ===========================
   AC CUSTOM MASONRY UNIQUE
=========================== */

.ac-masonry-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Default: 1 column (mobile + tablet) */
.ac-masonry-grid {
    column-count: 1;
    column-gap: 60px;
}

/* Each card */
.ac-masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px 15px;
    box-shadow: 0 2px 5px 3px #e9ebf0;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
}
/* Artist Alt Wrapper */
.ac-artist-alt-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

/* Each artist alt item (50% width on desktop, 100% mobile) */
.ac-artist-alt-item {
    width: 100%; /* mobile default */
    box-sizing: border-box;
}

/* Inner flex for image + name */
.ac-artist-alt-inner {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Artist image */
.ac-artist-alt-pic {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Artist name block */
.ac-artist-alt-name {
    flex: 1;
}


/* Desktop: 2 columns */
@media (min-width: 992px) {
    .ac-masonry-grid {
        column-count: 2;
    }
     .ac-artist-alt-item {
        width: calc(50% - 7.5px); /* subtract half gap */
    }
}