.contentSimpleGallery .item {
  --columns: 3;
  overflow: hidden;
}
.contentSimpleGallery .item { background-color: unset; }

.contentSimpleGallery .item img { transition: all var(--transition-time); }

.contentSimpleGallery .item:hover img { transform: scale(1.07, 1.07); filter: saturate(1.1) contrast(1.2); }

.contentSimpleGallery .item:hover a { text-decoration: none; }

.contentSimpleGallery .item .title, .contentSimpleGallery .item p {
  color: var(--font-color-light);
}

@media all and (max-width: 800px) { .contentSimpleGallery .item { --columns: 2; } }
@media all and (max-width: 500px) { .contentSimpleGallery .item { --columns: 1; } }
