.album-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin: 1rem 0;
}
.album-gallery a {
    display: block;
}
.album-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s;
}
.album-gallery img:hover {
    transform: scale(1.05);
}