.service-card {
  background: #ffffff;
  border: 1px solid #d4e4d7;
  border-radius: 26px;
  padding: 12px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.service-card__image {
  width: 100%;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
  background: #ddd;
}

.service-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 6px;
  height: 100%;
}

.service-card__title {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 1.08;
  color: #333;
}

.service-card__description {
  margin: 0;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.2;
  color: #161616;
  padding: 8px 0;
}

.service-card__details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.service-card__meta,
.service-card__price {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.1;
  color: #333;
}

.service-card__meta img,
.service-card__price img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(0%) saturate(0%) hue-rotate(7deg) brightness(91%) contrast(88%);
  object-fit: contain;
  flex-shrink: 0;
}

.service-card__button {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 220px;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background: #27a04d;
  color: #fff;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
  text-decoration: none;
}

.service-card__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.service-card__button:active {
  transform: translateY(0) scale(0.95);
}

@media (max-width: 900px) {
  .service-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .service-card__image {
    height: 150px;
  }
}

@media (max-width: 600px) {
  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__image {
    height: 210px;
  }

  .service-card__button {
    min-width: 0;
    width: 100%;
  }
}
