/**
 * @file        services.css
 * @description Services page — the reverse funnel bands
 *
 * @author      Thomas Dobler - SYNTHETIXMIND LTD
 * @email       tom@synthetixmind.com
 * @company     SYNTHETIXMIND LTD, Paphos, Cyprus
 * @url         https://synthetixmind.com
 *
 * @uid         9b04e7c3-5f28-4d16-a790-2c85f1d63b4e
 * @version     0.0.0.1
 * @created     2026-09-11
 * @updated     2026-09-11
 *
 * @copyright   (c) 2026 by SYNTHETIXMIND LTD
 * @license     Proprietary — All rights reserved
 */

.services__intro {
  font-size: var(--text-lg);
  max-width: var(--measure);
}

/* Kind label. Weight and letter-spacing carry the distinction, not colour
 * alone (NFR21) - gold_text is used at meta size where it still clears 4.5:1. */
.service__kind {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-gold-text);
  margin-bottom: var(--space-2);
}

.service__summary {
  font-size: var(--text-lg);
  max-width: var(--measure);
}

.service__description {
  max-width: var(--measure);
}

/* --- The reverse funnel (FR29, R01) --------------------------------------
 * The evidence list is the whole point of the page: it lets a visitor verify
 * expertise before booking. It is given real weight rather than being a
 * footnote under the CTA. */

.service__evidence {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
}

.service__evidence > h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.service__books {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}

.service__books > li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2);
}

.service__book-author {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.service__cta {
  margin-top: var(--space-5);
}

/* --- Suggested service on the book page (Band 5) ------------------------- */

.recirc__service {
  max-width: var(--measure);
}

.recirc__service > h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

@media (min-width: 1024px) {
  .service__books {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}
