/**
 * CUTIS Theme — Service "Hair transplant cost guide" section
 * Classes kept identical to _design-reference/style.css (cost-panel,
 * list-heading, cost-row/num, graft-card/graft-thumb/graft-count, cost-cta)
 * since none of them collide with anything in header.css/layout.css.
 *
 * .container-cutis, .eyebrow, .section-head, .row/.g-4 are already defined in
 * single-service-types.css; .col-lg-6 is already defined in
 * single-service-candidate.css. Both are enqueued alongside this file on
 * every service singular page (all conditioned on is_singular('service') in
 * functions.php) — not redeclared here to avoid duplicate/conflicting rules.
 *
 * The reference's grey section wash (.section-bg-grey utility, background:
 * var(--grey-050)) is reproduced the same way single-service-types.css scopes
 * it — directly on this section's own wrapper class rather than as a reusable
 * utility class — using the same color-mix formula for visual consistency.
 *
 * Colors/fonts/spacing are pulled from the CSS custom properties defined in
 * assets/css/header.css :root and from the Theme Settings design tokens
 * (inc/theme-settings.php -> cutis_output_theme_css_vars()). Values with no
 * matching token (card radius, "slate-soft"/grey-050 tones, the reference's
 * cream gradient) are derived via color-mix() from the closest token, same
 * technique used throughout single-service-introduction.css /
 * single-service-risks.css. The reference's --font-mono is dropped — the
 * theme has no monospace token, so .num/.list-heading/.graft-count fall back
 * to the body font.
 */

/* ------------------------------------------------------------------ */
/* Section shell — grey wash, scoped like .service-types */
/* ------------------------------------------------------------------ */
.service-cost {
  background: color-mix(in srgb, var(--cutis-color-border) 30%, white);
}

/* ------------------------------------------------------------------ */
/* Panel shell shared by both columns */
/* ------------------------------------------------------------------ */
.cost-panel {
  background: var(--cutis-color-surface);
  border: 1px solid var(--cutis-color-border);
  border-radius: 28px;
  padding: 36px;
  height: 100%;
}

.list-heading {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--cutis-color-text) 65%, white);
  margin-bottom: 6px;
}

/* ------------------------------------------------------------------ */
/* Left panel — numbered cost factor rows */
/* ------------------------------------------------------------------ */
.cost-row {
  display: flex;
  gap: 16px;
  padding-block: 18px;
  border-bottom: 1px solid var(--cutis-color-border);
}
.cost-row:last-child {
  border-bottom: none;
}
.cost-row .num {
  font-size: 13px;
  color: color-mix(in srgb, var(--cutis-color-text) 65%, white);
  width: 24px;
  flex-shrink: 0;
}
.cost-row h4 {
  font-size: 15px;
  color: var(--cutis-color-heading);
  margin-bottom: 4px;
}
.cost-row p {
  font-size: 13.5px;
  color: var(--cutis-color-text);
  margin: 0;
}

/* ------------------------------------------------------------------ */
/* Right panel — graft guide cards */
/* ------------------------------------------------------------------ */
.graft-card {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--cutis-color-border);
  border-radius: 20px;
  padding: 16px 18px;
  margin-bottom: 14px;
  background: color-mix(in srgb, var(--cutis-color-border) 30%, white);
}
.graft-card:last-child {
  margin-bottom: 0;
}
.graft-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.graft-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.graft-count {
  font-size: 12px;
  color: var(--cutis-color-primary);
  font-weight: 700;
}
.graft-card h4 {
  font-size: 14.5px;
  color: var(--cutis-color-heading);
  margin: 2px 0 3px;
}
.graft-card p {
  font-size: 12.5px;
  color: var(--cutis-color-text);
  margin: 0;
}

/* ------------------------------------------------------------------ */
/* CTA note, below the graft guide */
/* ------------------------------------------------------------------ */
.cost-cta {
  margin-top: 24px;
  background: var(--cutis-color-cream);
  border-radius: 20px;
  padding: 22px 24px;
}
.cost-cta p {
  font-size: 13.5px;
  color: var(--cutis-color-heading);
  margin: 0;
}
