
  /* ── Shared ── */
  .hcp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-cyan);
    margin-bottom: 14px;
  }

  .hcp-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 1.5px;
    background: var(--brand-cyan);
    flex-shrink: 0;
  }

  .hcp-eyebrow--light { color: var(--brand-teal); }
  .hcp-eyebrow--light::before { background: var(--brand-teal); }

  .hcp-section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: -0.4px;
    margin: 0;
  }

  .hcp-section-title em { font-style: italic; color: var(--brand-teal); }

  .hcp-section-header {
    margin-bottom:40px;
  }

  /* ── Buttons ── */
  .hcp-btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: white;
    background: var(--brand-teal);
    border-radius: 8px;
    padding: 13px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.22s, transform 0.18s;
    border: none;
    white-space: nowrap;
  }

  .hcp-btn-primary:hover { background: var(--brand-cyan); transform: translateY(-1px); color: white; }

  .hcp-btn-ghost {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 13px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.22s, color 0.22s;
    white-space: nowrap;
  }

  .hcp-btn-ghost:hover { border-color: var(--brand-navy); }

  .hcp-btn-whatsapp {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: #25d366;
    border-radius: 8px;
    padding: 13px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.22s, transform 0.18s;
    white-space: nowrap;
  }

  .hcp-btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

  /* ═══════════════
     HERO
  ═══════════════ */
  .hcp-hero {
    background: var(--white);
    padding: 30px 0 20px;
    border-bottom: 1px solid var(--border);
  }

.hcp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

  .hcp-hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    color: var(--black);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .hcp-hero-title em { font-style: italic; color: var(--brand-teal); }

  .hcp-hero-sub {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 18px;
  }

  .hcp-hero-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 32px;
  }

  .hcp-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  /* Embed visual card */
  .hcp-embed-visual {
    background: var(--bg-subtle);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 32px;
  }

  .hcp-embed-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  .hcp-embed-list {
        display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* display: flex;
    flex-direction: column; */
    gap: 14px;
  }

  .hcp-embed-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 5px 5px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: border-color 0.22s, transform 0.22s;
  }

  .hcp-embed-item:hover { border-color: rgba(62,207,170,0.3); transform: translateX(4px); }

  .hcp-embed-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .hcp-icon--teal   { background: rgba(62,207,170,0.10); }
  .hcp-icon--cyan   { background: rgba(41,174,230,0.10); }
  .hcp-icon--navy   { background: rgba(13,31,45,0.07);   }
  .hcp-icon--warm   { background: rgba(245,166,35,0.10); }

  .hcp-embed-item span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
  }

  /* ═══════════════
     RESEARCH
  ═══════════════ */
  .hcp-research {
    background: var(--bg-subtle);
    padding: 30px 0;
    border-top: 1px solid var(--border);
  }

  .hcp-research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hcp-research-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  }

  .hcp-research-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    transform: translateY(-3px);
    border-color: rgba(62,207,170,0.25);
  }

  .hcp-rc--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    justify-content: space-between;
  }

  .hcp-rc-wide-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
  }

  .hcp-rc-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--bg-subtle);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .hcp-rc-title {
    font-family: 'DM Serif Display', serif;
    font-size: 19px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
  }

  .hcp-rc-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
  }

  .hcp-rc-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-silver);
    background: rgba(143,168,184,0.12);
    border-radius: 4px;
    padding: 3px 10px;
    align-self: flex-start;
    margin-top: auto;
    white-space: nowrap;
  }

  .hcp-rc-tag--teal {
    color: var(--brand-teal);
    background: rgba(62,207,170,0.10);
    align-self: center;
    flex-shrink: 0;
  }

  /* ═══════════════
     GLIMPSE
  ═══════════════ */
  .hcp-glimpse {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid var(--border);
  }

  .hcp-glimpse-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 560px;
  }

  /* 4 equal cards in a row */
  .hcp-glimpse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: start;
  }

  /* Unwrap col — all 4 cards sit directly in the grid */
  .hcp-glimpse-col { display: contents; }

  /* Base card */
  .hcp-glimpse-card {
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.26s ease;
    display: flex;
    flex-direction: column;
  }

  .hcp-glimpse-card:hover {
    border-color: rgba(62,207,170,0.28);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-4px);
  }

  /* Compact image — shorter ratio */
  .hcp-gc-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-subtle);
    flex-shrink: 0;
  }

  .hcp-gc--tall .hcp-gc-img { aspect-ratio: 4/3; }

  .hcp-gc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
  }

  .hcp-glimpse-card:hover .hcp-gc-img img { transform: scale(1.03); }

  /* Label area */
  .hcp-gc-label {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }

  .hcp-gc-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-teal);
    background: rgba(62,207,170,0.09);
    border-radius: 4px;
    padding: 3px 9px;
    align-self: flex-start;
  }

  .hcp-gc-caption {
    font-family: 'DM Serif Display', serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.3;
  }

  .hcp-gc-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
  }

  /* Drive CTA bar */
  .hcp-glimpse-cta {
    margin-top: 32px;
    background: var(--bg-subtle);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hcp-glimpse-cta span {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    flex: 1;
    min-width: 200px;
  }

  .hcp-glimpse-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--brand-navy);
    border-radius: 8px;
    padding: 9px 18px;
    transition: background 0.22s, color 0.22s;
    white-space: nowrap;
  }

  .hcp-glimpse-link:hover {
    background: var(--brand-navy);
    color: #fff;
  }

  /* ═══════════════
     HOW IT SHOWS UP
  ═══════════════ */
  .hcp-shows {
    background: var(--white);
    padding: 30px 0;
    border-top: 1px solid var(--border);
  }

  .hcp-shows-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }

  .hcp-shows-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin: 16px 0 28px;
  }

  .hcp-shows-quote {
    background: rgba(62,207,170,0.07);
    border-left: 3px solid var(--brand-teal);
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--black);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    /* flex-direction: column; */
    gap: 10px;
  }

  .hcp-shows-quote strong { font-style: normal; color: var(--brand-navy); }
  .hcp-shows-quote svg { flex-shrink: 0; margin-top: 3px; }

  /* Pathway list */
  .hcp-pathway-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hcp-pathway {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 19px 20px;
    background: var(--bg-subtle);
    border: 1.5px solid transparent;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
  }

  .hcp-pathway:hover {
    background: var(--white);
    border-color: rgba(62,207,170,0.28);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  }

  .hcp-pathway-num {
    font-family: 'DM Serif Display', serif;
    font-size: 13px;
    color: rgba(13,31,45,0.25);
    font-weight: 400;
    flex-shrink: 0;
    width: 24px;
  }

  .hcp-pathway-icon {
    width: 44px; height: 54px;
    border-radius: 12px;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.22s;
  }

  .hcp-pathway:hover .hcp-pathway-icon { box-shadow: 0 4px 14px rgba(62,207,170,0.18); }

  .hcp-pathway-text { flex: 1; min-width: 0; }

  .hcp-pathway-title {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 3px;
  }

  .hcp-pathway-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.5;
  }

  .hcp-pathway-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.22s;
  }

  .hcp-pathway:hover .hcp-pathway-arrow { background: var(--brand-teal); }
  .hcp-pathway:hover .hcp-pathway-arrow svg { stroke: var(--brand-navy); }

  /* ═══════════════
     WHO
  ═══════════════ */
  .hcp-who {
    background: var(--bg-subtle);
    padding: 30px 0;
    border-top: 1px solid var(--border);
  }

  .hcp-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hcp-who-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  }

  .hcp-who-card:hover {
    border-color: rgba(62,207,170,0.28);
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    transform: translateY(-3px);
  }

  /* Left accent bar on hover */
  .hcp-who-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--brand-teal), var(--brand-cyan));
    opacity: 0;
    transition: opacity 0.25s;
  }

  .hcp-who-card:hover::before { opacity: 1; }

  .hcp-who-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--bg-subtle);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s;
  }

  .hcp-who-card:hover .hcp-who-icon { transform: scale(1.06); }

  .hcp-who-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
    margin: 0;
  }

  .hcp-who-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
  }

  .hcp-who-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, gap 0.2s;
    margin-top: auto;
  }

  .hcp-who-link:hover { color: var(--brand-teal); gap: 9px; }

  /* ═══════════════
     CTA
  ═══════════════ */
  .hcp-cta {
    background: url('./bg6.png');
    padding: 30px 0;
  }

  .hcp-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
  }

  .hcp-cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
  }

  .hcp-cta-title em { font-style: italic; color: var(--brand-teal); }

  .hcp-cta-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 460px;
  }

  .hcp-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

  /* Stats visual */
  .hcp-cta-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 160px;
  }

  .hcp-cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .hcp-cta-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    letter-spacing: -1.5px;
  }

  .hcp-cta-stat-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }

  .hcp-cta-divider {
    width: 1px; height: 24px;
    background: rgba(255,255,255,0.12);
  }

  /* ═══════════════
     SCROLL REVEAL
  ═══════════════ */
  .hcp-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .hcp-reveal.hcp-visible { opacity: 1; transform: translateY(0); }

  /* ═══════════════
     RESPONSIVE
  ═══════════════ */
  @media (max-width: 960px) {
    .hcp-glimpse-grid { grid-template-columns: 1fr 1fr; }

    .hcp-hero-inner,
    .hcp-shows-inner { grid-template-columns: 1fr; gap: 40px; }
    .hcp-cta-inner { grid-template-columns: 1fr; gap: 40px; }
    .hcp-cta-visual { flex-direction: row; min-width: unset; }
    .hcp-cta-divider { width: 24px; height: 1px; }
    .hcp-research-grid { grid-template-columns: 1fr 1fr; }
    .hcp-rc--wide { grid-column: 1 / -1; flex-direction: column; gap: 16px; }
    .hcp-rc-tag--teal { align-self: flex-start; }
    .hcp-who-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 640px) {
    .hcp-hero { padding: 30px 0; }
    .hcp-research,
    .hcp-shows,
    .hcp-who,
    .hcp-glimpse,
    .hcp-cta { padding: 30px 0; }
    .hcp-research-grid,
    .hcp-who-grid,
    .hcp-glimpse-grid { grid-template-columns: 1fr; }
    .hcp-hero-btns,
    .hcp-cta-btns { flex-direction: column; align-items: flex-start; }
  }





  /* ── Hero image card ── */
  .clh-hero-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 5/3;
    background: var(--bg-subtle);
    border: 1.5px solid var(--border);
  }

  .clh-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .clh-img-fallback {
    background: linear-gradient(135deg, #eaf6fd, #c8ecf9) !important;
  }

  .clh-hero-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(13,31,45,0.85);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
  }

  .clh-badge-num {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--brand-teal);
    line-height: 1;
    display: block;
  }

  .clh-badge-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    display: block;
  }

  /* ── Image grid in origin story ── */
.clh-img-grid {
    display: flex;
    flex-wrap: wrap;
    /* grid-template-columns: 1fr 1fr; */
    gap: 10px;
}

.clh-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 7 / 3;
    background: var(--bg-subtle);
    border: 1.5px solid var(--border);
}

  .clh-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }

  .clh-img-wrap:hover img { transform: scale(1.04); }

  /* ── GBG section ── */
  .clh-gbg-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .clh-gbg-intro {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .clh-gbg-intro strong { font-weight: 500; color: var(--black); }

  .clh-gbg-outcome-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-navy);
    margin-bottom: 14px;
  }

  .clh-outcome-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .clh-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    line-height: 1.5;
  }

  .clh-outcome-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(62,207,170,0.10);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* Principles */
  .clh-principle-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .clh-principles {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .clh-principle {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 14px;
    border: 1.5px solid transparent;
    transition: border-color 0.22s, box-shadow 0.22s;
  }

  .clh-principle:hover {
    border-color: rgba(62,207,170,0.25);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  }

  .clh-principle-num {
    font-family: 'DM Serif Display', serif;
    font-size: 13px;
    color: rgba(13,31,45,0.2);
    flex-shrink: 0;
    width: 20px;
    margin-top: 2px;
  }

  .clh-principle-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .clh-principle-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0px;
  }

  .clh-principle-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
  }

  /* ── Structure grid ── */
  .clh-structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .clh-structure-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
  }

  .clh-structure-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-cyan));
    opacity: 0;
    transition: opacity 0.25s;
  }

  .clh-structure-card:hover {
    border-color: rgba(62,207,170,0.25);
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
    transform: translateY(-3px);
  }

  .clh-structure-card:hover::before { opacity: 1; }

  .clh-sc-icon {
    width: 48px; height: 48px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .clh-sc-title {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
  }

  .clh-sc-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
  }

  /* Toolkit wrap */
  .clh-toolkit-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
  }

  .clh-toolkit-img {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-subtle);
  }

  .clh-toolkit-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .clh-toolkit-text {
    padding: 28px 28px 28px 0;
    flex: 1;
  }

.clh-toolkit-label {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-teal);
    margin-bottom: 10px;
}

  .clh-toolkit-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
  }

  /* ── Stats row ── */
  .clh-stats-row {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .clh-stat { display: flex; flex-direction: column; gap: 3px; }

  .clh-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--brand-navy);
    line-height: 1;
    letter-spacing: -1.5px;
  }

  .clh-stat-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ── Teacher leads ── */
  .clh-leads-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
  }

  .clh-leads-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
  }

  .clh-lead-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .clh-lead-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-subtle);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: var(--brand-navy);
    transition: border-color 0.22s, transform 0.22s;
  }

  .clh-lead-card:hover .clh-lead-avatar {
    border-color: var(--brand-teal);
    transform: scale(1.06);
  }

  .clh-lead-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .clh-lead-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--muted);
    text-align: center;
  }

  .clh-foundation-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    padding: 14px 16px;
    background: rgba(41,174,230,0.06);
    border-left: 3px solid var(--brand-cyan);
    border-radius: 0 8px 8px 0;
  }

  .clh-foundation-note svg { flex-shrink: 0; margin-top: 2px; }

  /* ── Film section ── */
  .clh-film-section {
    background: url(./bg6.png);
    padding: 30px 0;
        background-size: cover;
    margin: 0px 40px;
    border-radius: 20px;
  }

  .clh-film-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .clh-film-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
  }

  .clh-film-title em { font-style: italic; color: var(--brand-teal); }

  .clh-film-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 14.5px;
    font-weight: 300;
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
    margin-bottom: 12px;
  }

  .clh-film-btn {
    margin-top: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-navy);
    background: var(--brand-teal);
    border-radius: 8px;
    padding: 13px 26px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.22s, transform 0.18s;
  }

  .clh-film-btn:hover { background: var(--brand-cyan); transform: translateY(-1px); }

  .clh-film-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.10);
  }

  .clh-film-placeholder {
    background: linear-gradient(135deg, rgba(62,207,170,0.15), rgba(41,174,230,0.10)) !important;
  }

  .clh-film-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .clh-film-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13,31,45,0.35);
    transition: background 0.25s;
  }

  .clh-film-img-wrap:hover .clh-film-play-overlay {
    background: rgba(13,31,45,0.50);
  }

  .clh-play-btn {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--brand-teal);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: transform 0.25s, background 0.25s;
    padding-left: 4px;
  }

  .clh-play-btn:hover { transform: scale(1.10); background: var(--brand-cyan); }

  /* ── Responsive ── */
  @media (max-width: 960px) {
    .clh-gbg-inner,
    .clh-film-inner { grid-template-columns: 1fr; gap: 40px; }
    .clh-structure-grid { grid-template-columns: 1fr 1fr; }
    .clh-toolkit-wrap { flex-direction: column; }
    .clh-toolkit-img { width: 100%; }
    .clh-toolkit-text { padding: 0 24px 24px; }
  }

  @media (max-width: 640px) {
    .clh-structure-grid { grid-template-columns: 1fr; }
    .clh-img-grid { grid-template-columns: 1fr; }
    .clh-film-section,
    .hcp-cta { padding: 30px 0; }
  }













  /* ── Impact Hero numbers ── */
.nei-hero {
  background: var(--white);
  padding: 30px 0 30px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.nei-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(13,31,45,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.nei-hero-top {
  text-align: left;
  margin-bottom: 64px;
  position: relative; z-index: 1;
}

/* Big numbers grid */
.nei-numbers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  position: relative; z-index: 1;
}
.nei-num-item {
  padding: 28px 20px 26px;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.25s;
}
.nei-num-item:last-child { border-right: none; }
.nei-num-item:hover { background: rgba(62,207,170,0.04); }
.nei-num-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-cyan));
  opacity: 0;
  transition: opacity 0.25s;
}
.nei-num-item:hover::before { opacity: 1; }

.nei-num-val {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--brand-navy);
  letter-spacing: -2px;
  line-height: 1;
}
.nei-num-val span {
  color: var(--brand-teal);
  font-size: 0.7em;
  letter-spacing: -1px;
}
.nei-num-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ── MAP section ── */
.nei-map-section {
  background: var(--bg-subtle);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.nei-map-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.nei-map-img-wrap {
  position: relative;
}
.nei-map-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: linear-gradient(135deg, #eaf6f0, #d4ece0);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.nei-map-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
}
/* Floating state chips on the map */
.nei-map-chip {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 4px 16px rgba(13,31,45,0.10);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  animation: nei-float 3s ease-in-out infinite;
}
.nei-map-chip--assam  { top: 28%; right: -32px; animation-delay: 0s; }
.nei-map-chip--mega {
    bottom: 22%;
    left: -28px;
    animation-delay: 1.5s;
    flex-direction: row-reverse;
}
.nei-map-chip-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.nei-map-chip-dot--teal { background: var(--brand-teal); }
.nei-map-chip-dot--cyan { background: var(--brand-cyan); }

@keyframes nei-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* Map summary text */
.nei-map-summary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.82;
  margin: 16px 0 28px;
}
.nei-map-summary strong { font-weight: 500; color: var(--black); }

/* State pill badges */
.nei-state-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 24px;
}
.nei-state-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px; padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500; color: var(--black);
  box-shadow: 0 2px 8px rgba(13,31,45,0.05);
  transition: border-color 0.22s, transform 0.22s;
}
.nei-state-pill:hover { border-color: var(--brand-teal); transform: translateY(-2px); }
.nei-state-pill-flag {
  font-size: 16px; line-height: 1;
}

/* ── Chapter section wrapper ── */
.nei-chapter {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.nei-chapter--assam  { background: var(--white); }
.nei-chapter--mega   { background: var(--bg-subtle); }

/* Chapter header with map thumbnail */
.nei-ch-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px; align-items: start;
  margin-bottom: 48px;
}
.nei-ch-map {
  width: 220px; 
  /* height: 160px; */
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: linear-gradient(135deg, #eaf6f0, #d4ece0);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.nei-ch-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* padding: 12px; */
}
/* Chapter meta row */
.nei-ch-meta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px;
}
.nei-ch-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 6px; padding: 4px 12px;
}
.nei-ch-badge--loc  { color: var(--brand-teal); background: rgba(62,207,170,0.10); }
.nei-ch-badge--year { color: var(--muted); background: var(--bg-subtle); border: 1px solid var(--border); }
.nei-ch-badge--type { color: var(--brand-navy); background: rgba(13,31,45,0.06); }

/* Chapter stat strip */
.nei-ch-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.nei-ch-stat {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 5px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.nei-chapter--assam .nei-ch-stat { background: var(--bg-subtle); }
.nei-chapter--mega  .nei-ch-stat { background: var(--white); }
.nei-ch-stat:hover { border-color: rgba(62,207,170,0.30); transform: translateY(-2px); }
.nei-ch-stat::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-cyan));
}
.nei-ch-stat-n {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; letter-spacing: -1.5px; line-height: 1;
  color: var(--brand-navy);
}
.nei-ch-stat-l {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}

/* MPOWER letter card */
.nei-letter-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  transition: border-color 0.25s, box-shadow 0.25s;
  margin-top: 20px;
}
.nei-letter-card:hover {
  border-color: rgba(62,207,170,0.30);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}
.nei-letter-img {
    /* width: 220px; */
    height: 229px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f0f5f1, #e0ecf0);
    overflow: hidden;
}
.nei-letter-img img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}
.nei-letter-body {
  padding: 28px 28px 28px;
  flex: 1; display: flex; flex-direction: column; gap: 10px;
}
.nei-letter-from {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-cyan);
}
.nei-letter-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--black); line-height: 1.3;
}
.nei-letter-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px; font-weight: 300;
  color: var(--muted); line-height: 1.65;
}
.nei-letter-ref {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  color: var(--muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 5px 12px;
  align-self: flex-start; margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .nei-numbers { grid-template-columns: repeat(3, 1fr); }
  .nei-numbers .nei-num-item:nth-child(3) { border-right: none; }
  .nei-numbers .nei-num-item:nth-child(4),
  .nei-numbers .nei-num-item:nth-child(5),
  .nei-numbers .nei-num-item:nth-child(6) { border-top: 1px solid var(--border); }
  .nei-ch-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nei-map-inner  { grid-template-columns: 1fr; gap: 40px; }
  .nei-ch-header  { grid-template-columns: 1fr; }
  .nei-ch-map     { width: 100%; height: 200px; }
  .nei-letter-card { flex-direction: column; }
  .nei-letter-img { width: 100%; height: 180px; }
  .nei-map-chip--assam { left: 8px; }
  .nei-map-chip--mega  { right: 8px; }
}
@media (max-width: 540px) {
  .nei-numbers   { grid-template-columns: repeat(2, 1fr); }
  .nei-numbers .nei-num-item:nth-child(2) { border-right: none; }
  .nei-numbers .nei-num-item:nth-child(3),
  .nei-numbers .nei-num-item:nth-child(4) { border-top: 1px solid var(--border); }
  .nei-ch-stats  { grid-template-columns: 1fr 1fr; }
}






















  .ivr-wrap {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 24px;
    align-items: start;
  }

  /* ── Image col ── */
  .ivr-img-col { position: relative; }

  .ivr-img-inner {
    position: sticky;
    top: 100px;
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--border, #e8edf1);
    background: var(--bg-subtle, #f5f7f9);
  }

  .ivr-img-inner img {
    width: 100%;
    height: 100%;
    height: 395px;
    object-fit: contain;
    object-position: center top;
    display: block;
    border-radius: 18px;
  }

  .ivr-img-badge {
    position: absolute;
    bottom: 14px; left: 14px; right: 14px;
    background: rgba(13,31,45,0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 9px;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .ivr-img-badge span {
    font-family: 'DM Sans', sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.82);
  }

  /* ── Cards col ── */
  .ivr-cards-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* ── Card ── */
.ivr-card {
    background: var(--white, #fff);
    border: 1.5px solid var(--border, #e8edf1);
    border-radius: 16px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.24s, box-shadow 0.24s, transform 0.24s;
    position: relative;
    overflow: hidden;
}

 .ivr-card .hcp-rc-icon {
    width: 80px;
    height: 80px;
  }
  .ivr-card .hcp-rc-icon i{
    font-size: 25px;
    color: #3ECFAA;
  }

  .ivr-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--brand-teal, #3ecfaa), var(--brand-cyan, #29aee6));
    opacity: 0;
    transition: opacity 0.24s;
  }

  .ivr-card:hover {
    border-color: rgba(62,207,170,0.28);
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
    transform: translateX(3px);
  }

  .ivr-card:hover::before { opacity: 1; }

  /* Icon */
  .ivr-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.24s;
  }

  .ivr-card:hover .ivr-icon { transform: scale(1.07); }

  .ivr-icon--teal { background: rgba(62,207,170,0.10); }
  .ivr-icon--cyan { background: rgba(41,174,230,0.10); }
  .ivr-icon--navy { background: rgba(13,31,45,0.07);   }

  /* Text */
  .ivr-card-text { flex: 1; min-width: 0; }

  .ivr-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--black, #0d1f2d);
    line-height: 1.25;
    margin-bottom: 5px;
  }

  .ivr-card-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--muted, #6b7f8e);
    line-height: 1.65;
    margin: 0 0 8px;
  }

  .ivr-card-body strong { font-weight: 500; color: var(--black, #0d1f2d); }

  .ivr-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-silver, #8fa8b8);
    background: rgba(143,168,184,0.12);
    border-radius: 4px;
    padding: 2px 8px;
    display: inline-block;
  }

  .ivr-tag--teal { color: var(--brand-teal, #3ecfaa); background: rgba(62,207,170,0.10); }
  .ivr-tag--cyan { color: var(--brand-cyan, #29aee6); background: rgba(41,174,230,0.10); }

  /* Quote */
  .ivr-quote {
    background: rgba(62,207,170,0.07);
    border-left: 3px solid var(--brand-teal, #3ecfaa);
    border-radius: 0 10px 10px 0;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
  }

  .ivr-quote svg { flex-shrink: 0; margin-top: 2px; }

  .ivr-quote p {
    font-family: 'DM Serif Display', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--black, #0d1f2d);
    line-height: 1.6;
    margin: 0;
  }

  /* ── Responsive ── */
  @media (max-width: 860px) {
    .ivr-wrap { grid-template-columns: 1fr; }
    .ivr-img-inner { min-height: 240px; position: static; }
  }



  .hcp-icon {
  font-size: 20px;
  line-height: 1;
  color: #57CFAA;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}



