/* WTC Capital — Deals Page Photo Styles */
.wtc-deal-photo {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.wtc-deal-photo-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.service-card:hover .wtc-deal-photo-inner {
  transform: scale(1.04);
}
/* Dark gradient overlay at bottom of photo for blending */
.wtc-deal-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(255,255,255,0.04), transparent);
  pointer-events: none;
}
