.albums-container { display:flex; flex-wrap:wrap; gap:18px; }
.album-card { width:220px; text-align:center; }
.album-card img { width:100%; height:auto; border-radius:6px; display:block; }
.album-card .album-link { text-decoration:none; color:inherit; display:block; }

.album-thumbs { display:flex; flex-wrap:wrap; gap:10px; }
.album-thumb img { display:block; width:140px; height:auto; border-radius:6px; }

/* Lightbox */
#album-lightbox { position:fixed; top:0; left:0; width:100%; height:100%; z-index:99999; display:flex; align-items:center; justify-content:center; }
#album-lightbox .alb-mask { position:absolute; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.85); }
.alb-close, .alb-prev, .alb-next { position:absolute; z-index:100000; background:transparent; border:0; color:#fff; font-size:30px; cursor:pointer; }
.alb-close { top:24px; right:24px; }
.alb-prev { left:24px; top:50%; transform:translateY(-50%); }
.alb-next { right:24px; top:50%; transform:translateY(-50%); }
.alb-img { max-width:90%; max-height:85%; z-index:100000; border-radius:6px; box-shadow:0 10px 30px rgba(0,0,0,.6); }
