.gallery-album-list .event-thumbnail img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 1.5rem;
}
.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
}
.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}
.gallery-grid a:hover img {
    transform: scale(1.05);
}
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
