.cm-svc-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .cm-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  }
  .cm-svc-card:hover .cm-svc-card__img img {
    transform: scale(1.04);
  }
}

.cm-svc-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f4f0;
  flex-shrink: 0;
}

.cm-svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.cm-svc-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f1 100%);
}

.cm-svc-card__body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .cm-svc-card__body {
    padding: 12px 14px 16px;
    gap: 8px;
  }
}

.cm-svc-card__title {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
  line-height: 1.35;
}

.cm-svc-card__title a {
  color: inherit;
  text-decoration: none;
}

.cm-svc-card__title a:hover {
  color: #2e7d32;
}

.cm-svc-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cm-svc-card__price-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.cm-svc-card__price-val {
  font-size: 18px;
  font-weight: 700;
  color: #2e7d32;
}

.cm-svc-card__desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cm-svc-card__cta {
  display: inline-block;
  margin-top: auto;
  padding: 8px 16px;
  background: #2e7d32;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: background .2s ease;
}

.cm-svc-card__cta:hover {
  background: #1b5e20;
}

@media (max-width: 768px) {
  .cm-svc-card__cta {
    width: 100%;
    text-align: center;
    align-self: stretch;
    box-sizing: border-box;
  }
}
