/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 30 2026 | 15:28:07 */
.selector img {
  filter: grayscale(70%) contrast(90%) brightness(0.9);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.selector img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}