/* ── Services List ────────────────────────────────────────────── */
.cew-services-list {
  width: 100%;
}

.cew-sl-grid {
  display: grid;
  grid-template-columns: repeat(var(--cew-sl-cols, 3), minmax(0, 1fr));
  gap: 20px;
}

/* ── Card ────────────────────────────────────────────────────── */
.cew-sl-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background-color: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cew-sl-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  transform: translateY(-2px);
}

/* ── Image ───────────────────────────────────────────────────── */
.cew-sl-image {
  position: relative;
  height: 256px;
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 31, 110, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.cew-sl-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 31, 110, 0.12);
}

/* ── Body ────────────────────────────────────────────────────── */
.cew-sl-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
}

/* ── Text ────────────────────────────────────────────────────── */
.cew-sl-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  max-width: 185px;
}

/* ── Title ───────────────────────────────────────────────────── */
.cew-sl-title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.32px;
  color: #141414;
  margin: 0;
}

/* ── Description ─────────────────────────────────────────────── */
.cew-sl-description {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
  letter-spacing: 0;
  color: rgba(20, 20, 20, 0.50);
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ── CTA Button ──────────────────────────────────────────────── */
.cew-sl-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 100px;
  background-color: rgba(255, 31, 110, 0.08);
  color: #FF1F6E;
  transition: background-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.cew-sl-cta svg {
  width: 16px;
  height: 16px;
}

.cew-sl-card:hover .cew-sl-cta {
  background-color: #FF1F6E;
  color: #ffffff;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cew-sl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cew-sl-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .cew-sl-grid {
    grid-template-columns: 1fr;
  }
}
