/*
 Theme Name:  Divi Child
 Theme URI:   https://example.com/
 Author:      You
 Template:    Divi
 Description: Lightweight child theme for Divi with enqueue and starter files.
 Version:     1.0.0
 Text Domain: divi-child
*/

/* Example: image-only hover with curved shadow */
.card-hover img{
  transition: transform .45s ease, box-shadow .35s ease, filter .35s ease;
  box-shadow: 0 14px 36px rgba(0,0,0,.20);
  border-radius: 18px;
}
.card-hover:hover img{
  transform: scale(1.06);
  box-shadow: 0 28px 70px rgba(0,0,0,.30);
  filter: saturate(1.05);
}
