.fc_display_images ul {
    list-style: none;
    margin: 0;
    padding: 0 15px var(--padding-l);
    display: flex;
    justify-content: center;
    gap: var(--gap-l);
    flex-wrap: wrap;
}

.fc_display_images ul a {
    text-decoration: none;
    color: #BBB;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: 'Catamaran', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1px;
}

.fc_display_images ul .current a {
    color: var(--Red);
    text-decoration: none;
    text-decoration: underline;
}

.the_gallery_loop {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
}

.the_gallery_loop a {
    aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
    .the_gallery_loop {
        grid-template-columns: repeat(3, 1fr);
    }
}