/* HCP Mechanism of Action redesign (SERB-266)
   Self-contained styles for /Professional/About-Vistogard/Mechanism-of-Action-MOA.
   Loaded only on this page. Mirrors hcp_dosing_redesign.css conventions (design
   tokens, container, non-interactive blue sup). The HCP section loads
   main_style.css, so typography is pinned explicitly rather than inherited. */

.vg-hcp {
  --vg-darkest-blue: #08213D;
  --vg-dark-blue: #12365E;
  --vg-yellow: #EDDD24;
  --vg-text: #333333;
  --vg-link: #337AB7;
  --vg-font-black: 'Gotham-Black', Arial, sans-serif;
  --vg-font-medium: 'Gotham-Medium', Arial, sans-serif;
  --vg-font-book: 'Gotham-Book', Arial, sans-serif;
  color: var(--vg-text);
}

.vg-hcp * { box-sizing: border-box; }

.vg-hcp__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 42px;
}

.vg-hcp__section { padding: 48px 0 64px; }

/* Superscript reference markers — non-interactive, inherit copy color so they
   match surrounding text (SERB-310). Figma sup is 0.645em of its parent
   (15.48/24 in intro, 10.32/16 in bullets), kept page-specific. */
.vg-hcp sup {
  font-size: 0.645em;
  vertical-align: super;
  top: 0;
  color: inherit;
}

/* ---------- H1 ---------- */
.vg-hcp__h1 {
  font-family: var(--vg-font-black);
  font-size: 40px;
  line-height: 1.575;
  font-weight: normal;
  text-transform: uppercase;
  color: var(--vg-dark-blue);
  margin: 0 0 20px;
}

/* ---------- INTRO ---------- */
.vg-hcp__intro {
  font-family: var(--vg-font-book);
  font-size: 24px;
  line-height: 1.0833;
  font-weight: normal;
  color: var(--vg-dark-blue);
  margin: 0 0 36px;
}

/* ---------- TWO-COLUMN ROW: video + pathway figure ---------- */
.vg-hcp__moa-row {
  display: grid;
  grid-template-columns: 747px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 44px;
}

.vg-hcp__moa-video { min-width: 0; }

.vg-hcp__moa-figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vg-hcp__moa-figure img {
  display: block;
  width: 446px;
  max-width: 100%;
  height: auto;
}

/* ---------- TWO-COLUMN BULLET LIST ---------- */
.vg-hcp__moa-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  margin-bottom: 36px;
}

.vg-hcp__moa-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 28px;
  font-family: var(--vg-font-book);
  font-size: 16px;
  line-height: 1.3125;
  color: var(--vg-text);
}
/* Yellow triangle as native list marker (SERB-316). */
.vg-hcp__moa-list > li {
  list-style-image: url('/img/redesign/yellow-triangle.svg');
  list-style-position: outside;
  padding-left: 11px;
  margin: 0 0 20px;
}
.vg-hcp__moa-list > li:last-child { margin-bottom: 0; }

/* ---------- ABBREVIATION FOOTNOTE ---------- */
.vg-hcp__moa-foot {
  font-family: var(--vg-font-book);
  font-size: 16px;
  line-height: 1.3125;
  color: var(--vg-text);
  margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .vg-hcp__container { padding: 0 24px; }
  .vg-hcp__moa-row { grid-template-columns: 1fr; gap: 32px; }
  .vg-hcp__moa-figure img { width: 100%; max-width: 380px; }
  .vg-hcp__moa-cols { grid-template-columns: 1fr; gap: 20px; }
  .vg-hcp__h1 { font-size: 30px; }
  .vg-hcp__intro { font-size: 20px; }
}
