/* Force wider album thumbnails for longer titles */
.album,
#main .album {
    width: 400px !important;   /* ← Change this value (e.g. 360px, 400px) */
    max-width: 100% !important;
    box-sizing: border-box;
}

#albums {
    justify-content: center;   /* or space-around / flex-start */
    gap: 2em;
}

/* Allow long titles to wrap */
.album h3 {
    white-space: normal !important;
    word-break: break-word !important;
    hyphens: auto;
}

/* Optional: bigger thumbs if you want */
.album.thumb img {
    width: 100% !important;
}
