/* HCP 5-FU or Capecitabine Overdose redesign (SERB-271)
   Self-contained styles for /Professional/Overdose. Loaded only on this page.
   Mirrors hcp_dosing_redesign.css conventions (design tokens, container,
   non-interactive blue sup, yellow-triangle bullets). 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-red: #F81437;
  --vg-light-gray: #D1D1D1;
  --vg-table-gray: #e2e2e7;
  --vg-border: #979797;
  --vg-font-black: 'Gotham-Black', Arial, sans-serif;
  --vg-font-bold: 'Gotham-Bold', 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). */
.vg-hcp sup {
  font-size: 0.645em; /* 10.32px against 16px body */
  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 4px;
}

/* ---------- SUBTITLE ---------- */
.vg-hcp__subtitle {
  font-family: var(--vg-font-book);
  font-size: 24px;
  line-height: 1.2;
  font-weight: normal;
  color: var(--vg-dark-blue);
  margin: 0 0 28px;
}
.vg-hcp__subtitle .vg-hcp__dontwait {
  font-family: var(--vg-font-bold);
  font-weight: 700; /* SERB-318: keep "Don't wait" bold even on the Arial fallback (Gotham-Bold absent), matching Figma node 4051:4286 */
  color: var(--vg-red);
}
/* Subtitle sup sits at the smaller Figma ratio (15.48px against 24px). */
.vg-hcp__subtitle sup { font-size: 0.645em; }

/* ---------- BODY BLOCKS ---------- */
.vg-hcp__block {
  font-family: var(--vg-font-book);
  font-size: 16px;
  line-height: 1.3125; /* 21px */
  color: var(--vg-text);
  margin: 0 0 32px;
}

/* ---------- BULLET LISTS — yellow right-pointing triangle markers ---------- */
.vg-hcp__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 28px;
}
/* Yellow triangle as native list marker (SERB-316). */
.vg-hcp__list > li {
  list-style-image: url('/img/redesign/yellow-triangle.svg');
  list-style-position: outside;
  padding-left: 11px;
  margin: 0 0 20px;
}
.vg-hcp__list > li:last-child { margin-bottom: 0; }

/* Indented sub-points — yellow en-dash markers (SERB-316). */
.vg-hcp__sublist {
  list-style: none;
  margin: 14px 0 0;
  padding: 0 0 0 22px;
}
/* Yellow en-dash native list marker (SERB-316). */
.vg-hcp__sublist li {
  list-style-image: none;
  list-style-type: "\2013"; /* en dash */
  margin: 0 0 14px;
}
.vg-hcp__sublist li::marker {
  color: var(--vg-yellow);
  font-weight: 700;
}
.vg-hcp__sublist li:last-child { margin-bottom: 0; }

/* ---------- YELLOW BUTTONS ---------- */
.vg-hcp__btn {
  display: inline-block;
  background: var(--vg-yellow);
  color: var(--vg-darkest-blue);
  font-family: var(--vg-font-medium);
  font-size: 14px;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  padding: 16px 22px;
  margin: 0 0 32px;
}
.vg-hcp__btn:hover,
.vg-hcp__btn:focus {
  color: var(--vg-darkest-blue);
  text-decoration: none;
}

/* ---------- ABBREVIATION FOOTNOTE ---------- */
.vg-hcp__abbr {
  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__h1 { font-size: 30px; }
  .vg-hcp__subtitle { font-size: 20px; }
}
