/* =====================================================
   HEALTH SYSTEMS / PAYERS / ORGANIZATIONS WE SERVE
   Page-specific styles using the .hs-* and .org-* prefixes.
   Loaded via <link> on:
     - /health-systems/
     - /payers/
     - /organizations-we-serve/
   These pages do not load Avada's dynamic CSS, so
   !important is not needed — specificity handles cascade.
   ===================================================== */


/* =====================================================
   LAYOUT & FORMAT
   ===================================================== */

.hs-page {
  font-family: 'Source Sans 3', sans-serif;
}

.hs-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Hero ─────────────────────────────────────────── */
.hs-hero {
  padding: 60px 0 80px;
}

.hs-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hs-h1 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
}

.hs-subtitle {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 24px;
}

.hs-body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
}

.hs-hero-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* ── Feature sections ─────────────────────────────── */
.hs-section {
  padding: 56px 0;
}

.hs-h2 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 36px;
}

.hs-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
}

.hs-feature-item {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  border-left-style: solid;
  border-left-width: 3px;
  padding-left: 14px;
}

/* ── Pull quote ───────────────────────────────────── */
.hs-quote-section {
  padding: 72px 0;
}

.hs-quote {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
}

/* ── CTA section ──────────────────────────────────── */
.hs-cta-section {
  padding: 72px 0 80px;
}

.hs-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hs-cta-h2 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 32px;
}

.hs-btn {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-style: solid;
  border-width: 2px;
  border-radius: 6px;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.hs-cta-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

/* ── Organizations We Serve overrides ────────────── */
.org-hero {
  padding-bottom: 100px;
}

.org-h1 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 40px;
}

.org-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}

.org-link-row a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 150ms ease;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 860px) {
  .hs-container { padding: 0 24px; }
  .hs-hero-inner,
  .hs-cta-inner { grid-template-columns: 1fr; }
  .hs-hero-img { order: -1; }
  .hs-h1 { font-size: 38px; }
  .org-h1 { font-size: 44px; }
  .hs-feature-grid { grid-template-columns: 1fr; }
  .hs-quote { font-size: 20px; }
  .hs-cta-h2 { font-size: 28px; }
}


/* =====================================================
   COLORS & THEME
   ===================================================== */

.hs-h1 {
  color: #ffffff;
}

.hs-subtitle {
  color: var(--senseye-teal);
}

.hs-body {
  color: rgba(255, 255, 255, 0.88);
}

.hs-h2 {
  color: #ffffff;
}

.hs-feature-item {
  color: var(--senseye-teal);
  border-left-color: var(--senseye-teal);
}

.hs-quote {
  color: var(--senseye-teal);
}

.hs-cta-h2 {
  color: #ffffff;
}

/* Button colors */
.hs-btn {
  color: var(--senseye-navy-deep);
  background: var(--senseye-teal);
  border-color: var(--senseye-teal);
}
.hs-btn:hover {
  background: transparent;
  color: var(--senseye-teal);
}

.org-h1 {
  color: #ffffff;
}

.org-link-row a {
  color: var(--senseye-teal);
}
.org-link-row a:hover {
  opacity: 0.75;
}
