/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 15 2026 | 05:42:31 */
/* Artist profile gallery — fix smushed thumbnails on desktop */
#profile-gallery-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 30px;
}
#profile-gallery-wrapper .profile-gallery-image img {
    display: block !important;
    height: 260px !important;   /* thumbnail height — adjust to taste */
    width: auto !important;     /* keeps each image's real proportions */
    max-width: 100% !important;
    padding: 0 !important;
}

/* Mobile: stack full-width (keeps the current phone look) */
@media (max-width: 767px) {
    #profile-gallery-wrapper {
        flex-direction: column !important;
        align-items: center !important;
    }
    #profile-gallery-wrapper .profile-gallery-image img {
        height: auto !important;
        width: 100% !important;
    }
}