.fg-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    --thumbnail-size: 150px; /* Default size, overridden by inline CSS */
}

.fg-gallery .fg-thumbnail {
    width: var(--thumbnail-size);
    height: var(--thumbnail-size);
    object-fit: cover;
    display: block; /* Ensure images behave as block elements */
    max-width: 100%; /* Prevent overflow on smaller screens */
}