.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}

@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr }
}

.svc-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, .08);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
}

.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, .09) }

.svc-img {
  aspect-ratio: 16/9;
  background: var(--light);
  overflow: hidden;
}

.svc-img video, .svc-img img { width: 100%; height: 100%; object-fit: cover; display: block }

.svc-body {
  padding: clamp(16px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 5px;
}

.svc-name {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 6px;
}

.svc-desc {
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--gray);
  line-height: 1.6;
  word-break: keep-all;
  flex: 1;
}

.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-top: 16px;
  text-decoration: none;
  transition: gap .2s;
}

.svc-more:hover { gap: 9px }

.svc-more svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
