.youth-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.6rem;
    margin-top: 1.5rem;
}

.youth-gallery figure {
    margin: 0;
    padding: 0;
    aspect-ratio: 1 / 1;
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.10);
    transition: transform .25s, box-shadow .25s;
}

.youth-gallery figure:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgb(0 0 0 / 0.15);
}

.youth-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s, filter .3s;
}

.youth-gallery figure:hover img {
    transform: scale(1.04);
    filter: brightness(1.05);
}

@media (max-width: 480px) {
    .youth-gallery {
        gap: 1.2rem;
    }
}

.youth-gallery figure {
  pointer-events: none;
}

.youth-gallery figure a {
  pointer-events: auto;
  display: block;
  width: 100%;
  height: 100%;
}

/* KĽÚČOVÝ FIX */
.youth-gallery img {
  pointer-events: none;
}