/* Premium service photographs used on the services overview page. */
.service-card-thumb {
  width: 100%;
  height: 280px !important;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px 16px 0 0;
  background: #0e0e1d;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.service-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease, filter 220ms ease;
}

.service-card:hover .service-card-thumb img,
.service-card:focus-visible .service-card-thumb img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

@media (max-width: 700px) {
  .section { padding-left: 16px !important; padding-right: 16px !important; }
  .services-grid { grid-template-columns: minmax(0, 1fr) !important; gap: 18px; }
  .service-card-thumb {
    height: 220px;
    margin: 0;
    width: 100%;
  }
}
