/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

:root {
  /* colors */
  --background-color: white;
  --light-color: #f8f8f8;
  --dark-color: #505050;
  --text-color: #131313;
  --link-color: #3b63fb;
  --link-hover-color: #1d3ecf;

  /* fonts */
  --body-font-family: roboto, roboto-fallback, sans-serif;
  --heading-font-family: roboto-condensed, roboto-condensed-fallback, sans-serif;

  /* body sizes */
  --body-font-size-m: 22px;
  --body-font-size-s: 19px;
  --body-font-size-xs: 17px;

  /* heading sizes */
  --heading-font-size-xxl: 55px;
  --heading-font-size-xl: 44px;
  --heading-font-size-l: 34px;
  --heading-font-size-m: 27px;
  --heading-font-size-s: 24px;
  --heading-font-size-xs: 22px;

  /* nav height */
  --nav-height: 64px;

  /* ============================================================
   * RVMD Design Tokens (source: Figma node 3973-87737)
   * ============================================================ */

  /* RVMD colors */
  --color-denim-blue: #153b56;
  --color-corazon: #da291c;
  --color-cobalt-blue: #0087D1;
  --color-80-black: #0D0D0D;
  --color-white: #fff;
  --color-magenta: #F0F;
  --color-cobalt: #0087d1;
  --color-dark-teal: #014d47;
  --color-lime-border: #dde575;
  --color-lime-bg: rgb(221 229 117 / 10%);
  --color-marigold-gradient: linear-gradient(90deg, #FFA100 -11.21%, #FFCD00 90.13%, #FE0 172.7%, #FE0 176.45%);
  --color-marigold-gradient-mobile: linear-gradient(90deg, #FFA100 0%, #FE0 100%);
  --color-cobalt-gradient: linear-gradient(0deg, rgb(0 135 209 / 5%) 0%, rgb(0 135 209 / 5%) 100%), var(--color-white, #FFF);

  /* RVMD font family */
  --font-family-brand: 'IBM Plex Sans', sans-serif;
  --font-family-figtree: 'Figtree', sans-serif;
  --font-family-rubik: 'Rubik', sans-serif;

  /* RVMD font sizes */
  --font-size-h2: 2rem;           /* 32px – Desktop/H2 Desk */
  --font-size-h3: 1.75rem;        /* 28px – Desktop/H3 Desk */
  --font-size-h5: 1.25rem;        /* 20px – Desktop/H5 Desk */
  --font-size-chart-header: 1.125rem; /* 18px – Desktop/Chart Header */
  --font-size-body: 1rem;         /* 16px – Desktop/Body Desk */
  --font-size-text-link: 1rem;    /* 16px – Desktop/Text Link Desk */
  --font-size-button: 1.25rem;    /* 20px – Desktop/Button Desk */
  --font-size-button-md: 1rem;    /* 16px – HCP/Desktop/Button Medium 16 */
  --font-size-footnote: 0.75rem;  /* 12px – Desktop/Footnote Desk & Mobile/Footnote Mobile */

  /* RVMD font weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* RVMD line heights */
  --line-height-h5: 1.4375rem;        /* 23px – Desktop/H5 Desk */
  --line-height-chart-header: 1.4375rem; /* 23px – Desktop/Chart Header */
  --line-height-text-link: 1.1875rem; /* 19px – Desktop/Text Link Desk */
}

/* fallback fonts */
@font-face {
  font-family: roboto-condensed-fallback;
  size-adjust: 88.82%;
  src: local('Arial');
}

@font-face {
  font-family: roboto-fallback;
  size-adjust: 99.529%;
  src: local('Arial');
}

@media (width >= 900px) {
  :root {
    /* body sizes */
    --body-font-size-m: 18px;
    --body-font-size-s: 16px;
    --body-font-size-xs: 14px;

    /* heading sizes */
    --heading-font-size-xxl: 45px;
    --heading-font-size-xl: 36px;
    --heading-font-size-l: 28px;
    --heading-font-size-m: 22px;
    --heading-font-size-s: 20px;
    --heading-font-size-xs: 18px;
  }
}

body {
  display: none;
  margin: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family-brand);
  font-variant-ligatures: none;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: var(--body-font-size-m);
  line-height: 1.6;
}

body.appear {
  display: block;
}

header {
  height: auto;
}

header .header,
footer .footer {
  visibility: hidden;
}

header .header[data-block-status="loaded"],
footer .footer[data-block-status="loaded"] {
  visibility: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0.8em;
  margin-bottom: 0.25em;
  font-family: var(--heading-font-family);
  font-weight: 600;
  line-height: 1.25;
  scroll-margin: 40px;
}

h1 { font-size: var(--heading-font-size-xxl); }
h3 { font-size: var(--heading-font-size-l); }
h4 { font-size: var(--heading-font-size-m); }
h6 { font-size: var(--heading-font-size-xs); }

h2 {
  color: var(--color-corazon, #DA291C);

  /* Desktop/H2 Desk */
  font-family: var(--font-family-brand);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
    margin-top: 0;
}

sup {
  font-size: 60%;          /* Reduces size by 40% */
  line-height: 0;          /* Prevents the superscript from adding extra vertical height to the line */
  position: relative;      /* Allows stable positioning */
  vertical-align: baseline; /* Resets the default browser vertical alignment */
  top: -0.5em;             /* Shifts the baseline up by exactly half an em space (approx. 33-50%) */
}

/* Safari/WebKit fix: a <sup>/<sub> inside a gradient-/color-clipped heading (background-clip: text
   + transparent fill) inherits the transparent fill but has no background of its own to clip, so
   WebKit paints it invisible; Blink paints it through the ancestor. Reset every footnote marker to
   the element's solid currentcolor so it renders in all engines. Clipped elements carry a solid
   `color` fallback (see h5, #sub-hero h3, .hcp-contact-description) that currentcolor resolves to. */
sup,
sub {
  -webkit-text-fill-color: currentcolor;
}

@media (width <= 1309px) {
  h2 {
    font-size: 28px;
  }
}

h5 {
  /* Desktop/H5 Desk */
  font-family: var(--font-family-brand);
  font-size: 20px;
  font-style: normal;
  line-height: 23px; /* 115% */
  color: var(--color-denim-blue, #153b56);
  background: var(--color-denim-blue, linear-gradient(90deg, #213E58 -1.51%, #35586F 98.5%));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0;
  margin-bottom: 0;
}

p {
  color: var(--color-80-black, #0D0D0D);

  /* Desktop/Body Desk */
  font-family: var(--font-family-brand);
  font-size: var(--font-size-body);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  line-height: normal;
  margin-top: 0.8em;
  margin-bottom: 0.25em;
}

dl,
ol,
ul,
pre,
blockquote {
  margin-top: 0.8em;
  margin-bottom: 0.25em;
}

code,
pre {
  font-size: var(--body-font-size-s);
}

pre {
  padding: 16px;
  border-radius: 8px;
  background-color: var(--light-color);
  overflow-x: auto;
  white-space: pre;
}

main > div {
  margin: 40px 16px;
}

/* Sentinel div inserted by floating-isi JS — must have no margin to avoid phantom space */
#isi-floating-sentinel {
  margin: 0;
  scroll-margin-top: 90px;
}



input,
textarea,
select,
button {
  font: inherit;
}

/* links */
a:any-link {
  color: var(--color-corazon, #DA291C);
}

a:hover {
  text-decoration: underline;
}

/* buttons */
a.button:any-link,
button {
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
  margin: 12px 0;
  border: 2px solid transparent;
  border-radius: 2.4em;
  padding: 0.5em 1.2em;
  font-family: var(--body-font-family);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  background-color: var(--link-color);
  color: var(--background-color);
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.button:hover,
a.button:focus,
button:hover,
button:focus {
  background-color: var(--link-hover-color);
  cursor: pointer;
}

button:disabled,
button:disabled:hover {
  background-color: var(--light-color);
  cursor: unset;
}

a.button.primary{
  display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.625rem 0.625rem 1.25rem;
    font-family: var(--font-family-brand);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold, 600);
    color: var(--color-corazon, #da291c);
    background-color: #fff;
    border: 3px solid var(--color-corazon, #da291c);
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    margin: 0;
    filter: drop-shadow(4px 4px 0 var(--color-denim-blue, #153b56));
}

a.button.secondary,
button.secondary {
  background-color: unset;
  border: 2px solid currentcolor;
  color: var(--text-color);
}

main img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.icon {
  display: inline-block;
  height: 24px;
  width: 24px;
}

.icon img {
  height: 100%;
  width: 100%;
}

/* sections */
main > .section {
  margin: 0;
  padding: 50px 0;
}

main > .section:first-of-type {
  margin-top: 0;
}

main > .section:last-child:not(#isi) {
  margin: 0;
  padding: 0 0 50px;
}

main > .section.callout-banner-container {
  padding-bottom: 0;
}

main > .section > div {
  max-width: 930px;
  margin: auto;
  padding: 0 24px;
}

main > .section.blank {
  margin: 0;
  padding: 0;
}

@media (width >= 900px) {
  main > .section > div {
    padding: 0 32px;
  }
}

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
  margin: 0;
  padding: 40px 0;
}

main .section.marigold {
  background: var(--color-marigold-gradient);
  margin: 0;
  padding: 0;
  display: flex;

  /* width: 1366px; */
  height: 53px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main .section.marigold h2{
  color: var(--color-denim-blue, #153b56);
text-align: center;

/* Desktop/H2 Desk */
font-family: "IBM Plex Sans", sans-serif;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: normal;
align-self: stretch;
padding: 0;
margin: 0;
}


main .section.cobalt {
  background: var(--color-cobalt-gradient);
  margin: 0;
  padding: 10px 0;
}

@media (width <= 1309px) {
  main .section.marigold {
    background: var(--color-marigold-gradient-mobile);
    display: flex;
    width: auto;
    height: 34px;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
  }
  
  main .section.marigold h2{
    color: var(--color-denim-blue, #153b56);
    text-align: center;

    /* Mobile/H2  */
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 114.286% */
    padding: 0;
    margin: 0;
  }

    main > .section > div {
      padding: 0 20px;
  }
}

/* =========  Expandable Section (ISI Tray)  ========= */
main > .section.section-expandable {
  position: relative;
  background: var(--color-white);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 6.3px 0 var(--denim-blue-25, rgb(21 59 86 / 25%));
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0 0;
  overflow: hidden;
}

/* Override inner wrapper width inside expandable sections */
main > .section.section-expandable > div {
  max-width: 930px;
  margin: auto;
}

/* --- Toggle button (absolute top-right corner of tray) --- */
main > .section.section-expandable > .section-expand-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

main > .section.section-expandable > .section-expand-toggle:hover {
  opacity: 0.85;
}

/* Expand label text (e.g. "Expand") */
main > .section.section-expandable > .section-expand-toggle .section-expand-label {
  font-family: var(--default-font-family);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--cobalt-blue);
  white-space: nowrap;
  line-height: normal;
}

/* Icon wrapper (blue rounded square) */
main > .section.section-expandable > .section-expand-toggle .section-expand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  background: var(--cobalt-blue);
  border-radius: 0 20px 0 10px;
  flex-shrink: 0;
}

main > .section.section-expandable > .section-expand-toggle .toggle-icon {
  width: 22px;
  height: 22px;
}

/* + becomes âˆ’ when expanded */
main > .section.section-expandable > .section-expand-toggle .toggle-v {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

main > .section.section-expanded > .section-expand-toggle .toggle-v {
  transform: rotate(90deg);
  opacity: 0;
}

/* Once expanded: remove shadow, border-radius, and tray appearance */
main > .section.section-expanded {
  box-shadow: none;
  border-radius: 0;
}

/* --- Expandable body (content below peek) --- */
main > .section.section-expandable > .section-expand-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

main > .section.section-expanded > .section-expand-body {
  padding-bottom: 13px;
  overflow: visible;
}

main > .section.section-expanded > .section-expand-peek {
  display: none;
}

main > .section.section-expandable > .section-expand-body > div {
  max-width: 930px;
  margin: auto;
}

/* ISI tray text content styling */
main > .section.section-expandable .section-expand-peek,
main > .section.section-expandable .section-expand-body {
  font-family: var(--default-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--body-copy-gray, #4d4d4f);
}

main > .section.section-expandable .section-expand-peek p,
main > .section.section-expandable .section-expand-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--body-copy-gray, #4d4d4f);
  margin-top: 0;
  margin-bottom: 19px;
}

main > .section.section-expandable .section-expand-peek h4,
main > .section.section-expandable .section-expand-body h4 {
  margin-bottom: 19px;
  color: var(--denim-blue, #153b56);
  font-weight: var(--font-weight-bold);
}

main > .section.section-expandable .section-expand-peek h4 {
  margin-bottom: 0;
}

main > .section.section-expandable .section-expand-peek ul,
main > .section.section-expandable .section-expand-body ul {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--body-copy-gray, #4d4d4f);
  margin-bottom: 19px;
  padding-left: 20px;
}

main > .section.section-expandable .section-expand-peek li,
main > .section.section-expandable .section-expand-body li {
  margin-bottom: 19px;
}

/* =========  Floating ISI  =========
   Section is moved to <body> by JS so position:fixed is never blocked.
   All base styles are re-declared here since main > selectors no longer match.
   ========= */

/* Reserve space so page content is never hidden behind the tray */
body.isi-floating-active {
  padding-bottom: 290px;
}

/* Reserve space so page content is never hidden behind the tray */
body.isi-floating-compact-active {
  padding-bottom: 0;
}

/* Compact floating: show title + 2 lines, auto-sized (no hardcoded height) */
body > .section.isi-floating.isi-floating-compact > .section-expand-body {
  max-height: none;
}

/* Compact: clamp paragraph to 2 lines */
body > .section.isi-floating.isi-floating-compact > .section-expand-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Compact: hide everything after the first paragraph */
body > .section.isi-floating.isi-floating-compact > .section-expand-body p ~ * {
  display: none;
}

@media (width <= 1309px) {

  /* Mobile compact: clamp to 2 lines */
  body > .section.isi-floating.isi-floating-compact > .section-expand-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Mobile compact: hide everything after the first paragraph */
  body > .section.isi-floating.isi-floating-compact > .section-expand-body p ~ * {
    display: none;
  }

  /* Mobile collapsed: hide everything after the second paragraph */
  body > .section.section-collapsed.isi-floating > .section-expand-body p ~ p ~ * {
    display: none;
  }
}

/* â”€â”€ Base tray â€” always fixed at bottom â”€â”€ */
body > .section.isi-floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0;
  background: var(--denim-blue, #153b56);
  box-shadow: none;
  overflow: hidden;
  z-index: 2000;
  font-family: var(--font-family-brand);
  view-transition-name: isi-tray;
  transition: padding 0.3s ease;
}

/* Inner div wrappers */
/* stylelint-disable-next-line no-descending-specificity */
body > .section.isi-floating > div {
  max-width: 930px;
  margin: 0 auto;
}

body .section-expand-icon {
  width: 16px;
  height: 16px;
}

/* â”€â”€ Toggle button â”€â”€ */
/* stylelint-disable-next-line no-descending-specificity */
body > .section.isi-floating .section-expand-toggle {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
}

body > .section.isi-floating .section-expand-toggle:hover {
  opacity: 0.85;
}

body > .section.isi-floating .section-expand-toggle .section-expand-label {
  font-family: var(--default-font-family);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
  line-height: normal;
  margin-top: 1px;
}

body > .section.isi-floating > .section-expand-toggle .section-expand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
}

body > .section.isi-floating .section-expand-toggle .toggle-icon {
  width: 16px;
  height: 16px;
}

body > .section.isi-floating .section-expand-toggle .toggle-v {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

body > .section.section-expanded.isi-floating .section-expand-toggle .toggle-v {
  transform: rotate(90deg);
  opacity: 0;
}

/* â”€â”€ Peek (always-visible summary row) â”€â”€ */
body > .section.isi-floating > .section-expand-peek {
  display: flex;
  align-items: center;
  padding: 4px 16px;
  min-height: 36px;
  font-family: var(--font-family-brand);
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: padding 0.3s ease;

}

body > .section.isi-floating > .section-expand-peek h3,
body > .section.isi-floating > .section-expand-peek h4 {
  margin: 0;
  color: #fff;
  font-family: var(--font-family-brand);
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: 28px;
  text-transform: uppercase;
  font-feature-settings: 'liga' off;
}

/* ID-specificity override: ensure peek heading is white over dark tray */
#isi.isi-floating .section-expand-peek h3,
#isi.isi-floating .section-expand-peek h4 {
  color: #fff;
  margin: 0;
  font-family: var(--font-family-brand);
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: 28px;
  text-transform: uppercase;
  font-feature-settings: 'liga' off;
}

/* stylelint-disable-next-line no-descending-specificity */
body > .section.isi-floating > .section-expand-peek p {
  display: none;
}


/* Hide peek when expanded â€” full content is visible in body */

/* =========  Inline ISI (scrolled to ISI position, part of page)  ========= */
main > .section.isi-inline {
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  scroll-margin-top: calc(var(--nav-height) + 50px);
}

/* stylelint-disable-next-line no-descending-specificity */
main > .section.isi-inline > .section-expand-toggle {
  display: none;
}

main > .section.isi-inline > .section-expand-peek {
  display: none;
}

body > .section.section-expanded.isi-floating > .section-expand-peek {
  display: none;
}

/* stylelint-disable-next-line no-descending-specificity */
main > .section.isi-inline > .section-expand-body {
  overflow: visible;
  padding: 16px;
  scroll-margin-top: calc(var(--nav-height) + 50px);
}

main > .section.isi-inline > .section-expand-body a:any-link {
  color: var(--color-colbalt-blue, #0087D1);
}

/* â”€â”€ Expand body â”€â”€ */
/* stylelint-disable-next-line no-descending-specificity */
body > .section.isi-floating > .section-expand-body {
  max-width: 100%;
  overflow: hidden;
  background: var(--color-white, #fff);
  padding: 10px 0 0;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
  font-family: var(--font-family-brand);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-copy-gray, #4d4d4f);
  opacity: 1;
}

/* stylelint-disable no-descending-specificity, custom-property-pattern, font-family-no-missing-generic-family-keyword */
body > .section.isi-floating > .section-expand-body > .fragment-wrapper > .fragment > .default-content-wrapper h4 {
  color: var(--color-denim-blue, #153b56) !important;
  font-family: "IBM Plex Sans", sans-serif !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 28px !important;
}

body > .section.isi-floating > .section-expand-body > .default-content-wrapper h4 {
  margin-bottom: 4px;
  color: var(--color-denim-blue, #153b56);
  font-family: var(--font-family-brand);
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  line-height: 28px;
}

body > .section.isi-floating > .section-expand-body > .default-content-wrapper h5 {
  margin-bottom: 6px;
  color: var(--color-denim-blue, #153b56);
  font-family: var(--font-family-brand);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
}

body > .section.isi-floating > .section-expand-body > .default-content-wrapper p {
  font-family: var(--font-family-brand);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: normal;
  color: var(--color-80-black, #0D0D0D);
  margin-top: 0;
  margin-bottom: 10px;
}

body > .section.isi-floating > .section-expand-body > .default-content-wrapper a:any-link {
  font-family: var(--font-family-brand);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-semibold);
  line-height: 20px;
  color: var(--color-cobalt-blue, #0087d1);
  text-decoration: underline;
}

body > .section.isi-floating > .section-expand-body > .default-content-wrapper ul {
  font-family: var(--font-family-brand);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: normal;
  color: var(--color-80-black, #0D0D0D);
  margin-bottom: 19px;
  padding-left: 20px;
}

body > .section.isi-floating > .section-expand-body > .default-content-wrapper li {
  margin-bottom: 19px;
}
/* stylelint-enable no-descending-specificity, custom-property-pattern, font-family-no-missing-generic-family-keyword */



body > .section.isi-floating > .section-expand-body > div {
  max-width: 930px;
  margin: 0 auto;
  padding: 0 24px;
}

body > .section.section-expanded.isi-floating > .section-expand-body {
  max-height: min(60vh, 550px);
  overflow: hidden auto;
  padding: 10px 24px 16px;
  opacity: 1;
}

/* stylelint-disable-next-line no-descending-specificity */
body > .section.isi-floating > .section-expand-body p {
  margin: 0 0 12px;
}

/* stylelint-disable-next-line no-descending-specificity */
body > .section.isi-floating > .section-expand-body h4 {
  margin-bottom: 12px;
  color: var(--denim-blue, #153b56);
  font-weight: var(--font-weight-bold, 700);
}

body > .section.isi-floating > .section-expand-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

body > .section.isi-floating > .section-expand-body li {
  margin-bottom: 8px;
}

/* Scrollbar */
body > .section.isi-floating > .section-expand-body::-webkit-scrollbar { width: 6px; }

body > .section.isi-floating > .section-expand-body::-webkit-scrollbar-thumb {
  background: var(--denim-blue-25, rgb(21 59 86 / 25%));
  border-radius: 3px;
}

/* Equivalents for #isi overrides (floating tray has no id) */
body > .section.isi-floating > .section-expand-body a:any-link:hover {
  text-decoration: none;
}

/* Hide duplicate ISI heading in tray body (JS also skips it — CSS safety net) */
body > .section.isi-floating > .section-expand-body .default-content-wrapper:not(.section-expand-peek) > h4#important-safety-information {
  display: none;
}

@media (width <= 1309px) {
  body > .section.section-collapsed.isi-floating > .section-expand-body p ~ p ~ * {
    display: none;
  }
  
  body > .section.section-collapsed.isi-floating > .section-expand-body p {
    display: block;
    -webkit-line-clamp: initial;
    line-clamp: initial;
    -webkit-box-orient: initial;
    overflow: visible;
  }
}

@media (width < 1200px) {
  body > .section.isi-floating {
    max-width: 100%;
  }

  body > .section.isi-floating > .section-expand-peek {
      padding: 4px 12px 8px;
      gap: 8px;
  }

  body > .section.section-expanded.isi-floating > .section-expand-body {
    max-height: min(50vh, 400px);
  }

  /* body > .section.isi-floating .section-expand-toggle .section-expand-icon {
    width: 34px;
    height: 34px;
    border-radius: 0 20px 0 8px;
  } */

  body > .section.isi-floating .section-expand-toggle .toggle-icon {
    width: 18px;
    height: 18px;
  }

  /* Limit peek text to heading + 2 lines on mobile */
  body > .section.isi-floating > .section-expand-peek {
    padding: 4px 12px 8px;
    gap: 8px;
  }

  body > .section.isi-floating > .section-expand-peek h4 {
    color: #fff;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    line-height: 28px;
    text-transform: uppercase;
    font-feature-settings: 'liga' off;
  }

  body > .section.isi-floating > .section-expand-peek p {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    /* Mobile/Bodycopy */
    font-family: var(--font-family-brand);
    font-size: 16px;
    font-weight: 400;
    font-feature-settings: 'liga' off;
    line-height: normal;
    color: #fff;
  }


  /* Mobile/ISI Header for expand body */
  body > .section.isi-floating > .section-expand-body h4 {
    font-family: var(--font-family-brand);
    font-size: 19px;
    font-weight: 800;
    font-feature-settings: 'liga' off;
    line-height: normal;
    margin-top: 0;
  }

  /* Mobile/Bodycopy for expand body */
  body > .section.isi-floating > .section-expand-body p,
  body > .section.isi-floating > .section-expand-body li {
    font-family: var(--font-family-brand);
    font-size: 16px;
    font-weight: 400;
    font-feature-settings: 'liga' off;
    line-height: normal;
  }

  main .section.cobalt {
    padding-bottom: 30px;
  }
}

/* Cobalt section p margin reset must precede #isi p (ID specificity wins). */
/* stylelint-disable-next-line no-descending-specificity */
main .section.cobalt .default-content-wrapper p {
  margin-top: 0;
  margin-bottom: 0;
}

/* =========  ISI Section - text styling by ID  =========
   Placed after floating/inline ISI selectors so #isi (ID specificity)
   does not trigger no-descending-specificity against body > selectors.
   ========= */
#isi,
#site-map {
  max-width: 100%;
  padding: 0 0 20px;
  font-family: var(--font-family-brand);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--color-80-black, #0D0D0D);
}

/* Override: when floating, compact the padding to match Figma 36px bar */
#isi.isi-floating {
  padding: 0;
}

/* stylelint-disable no-descending-specificity */
#isi h3,
#site-map h3 {
  margin-bottom: 6px;
  color: var(--color-denim-blue, #153b56);
  font-family: var(--font-family-brand);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
}

#isi h4,
#site-map h4 {
  margin-bottom: 6px;
  color: var(--color-denim-blue, #153b56);
  font-family: var(--font-family-brand);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
}

#isi h4{
  font-size: 25px;
}
/* stylelint-enable no-descending-specificity */

#isi p,
#site-map p {
  font-family: var(--font-family-brand);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: normal;
  color: var(--color-80-black, #0D0D0D);
  margin-top: 0;
  margin-bottom: 10px;
}

#isi a:any-link,
#site-map a:any-link {
  font-family: var(--font-family-brand);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-semibold);
  line-height: 20px;
  color: var(--color-cobalt-blue, #0087d1);
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
  text-decoration-skip-ink: auto;
}

#isi a:any-link:hover, 
#site-map a:any-link:hover {
  text-decoration: none;
}

#isi ul,
#site-map ul {
  font-family: var(--font-family-brand);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: normal;
  color: var(--color-80-black, #0D0D0D);
  margin-bottom: 19px;
  padding-left: 20px;
}

#isi li {
  margin-bottom: 2px;
}

#isi li {
  margin-bottom: 2px;
}

/* Override for peek/body nested contexts: higher specificity, must follow base rules */
/* stylelint-disable no-descending-specificity */
#isi .section-expand-peek h4,
#site-map .section-expand-peek h4 {
  margin-bottom: 4px;
}

#isi .section-expand-peek p,
#site-map .section-expand-peek p {
  margin-top: 0;
}

#isi .section-expand-body h4,
#site-map .section-expand-body h4,
#isi .section-expand-body h5,
#site-map .section-expand-body h5 {
  margin-bottom: 4px;
  font-family: var(--font-family-brand);
}

#isi .section-expand-body p,
#site-map .section-expand-body p {
  margin-top: 0;
}

#isi .section-expand-body p:has(strong),
#site-map .section-expand-body p:has(strong) {
  margin-bottom: 4px;
}
/* stylelint-enable no-descending-specificity */

/* Hide the first "IMPORTANT SAFETY INFORMATION" title heading in the page body —
   it only needs to show in the floating tray peek, not in the expanded content.
   :not(.section-expand-peek) ensures the tray heading stays visible. */
#isi .default-content-wrapper:not(.section-expand-peek) > h4#important-safety-information,
div#site-map .default-content-wrapper:not(.section-expand-peek) > h4#important-safety-information {
  display: none;
}

#sitemap-links h3 {
  font-family: var(--font-family-brand);
  margin-top: 0;
}

#tablet-table {
  padding: 50px 0;
}

#ordering-section .default-content-wrapper h2 {
  text-align: center;
}

@media (width < 600px){
  #ordering-section .default-content-wrapper h2 {
    margin-bottom: 0;
  }
}

@media (max-width: 682px) {
  body > .section.isi-floating > .section-expand-peek h4 {
    line-height: 20px;
  }

  body > .section.isi-floating > .section-expand-peek {
    padding: 0 5px;
    padding-bottom: 4px;
    padding-top: 4px;
    gap: 8px;
  }
  body > .section.isi-floating > .section-expand-body {
    padding-top: 0;
  }

  body > .section.isi-floating > .section-expand-body > div {
      padding: 0 5px;
  }

  body > .section.isi-floating > .section-expand-body > .default-content-wrapper h4 {
    margin: 0;
  }

  body > .section.section-collapsed.isi-floating > .section-expand-body p {
    margin: 0;
  }

  body > .section.isi-floating > .section-expand-body {
    max-height: none;
  }
}

#ordering-section .cards-wrapper ul li h3,
#ordering-section .cards-wrapper ul li h3 strong {
  color: var(--color-denim-blue, #153b56);
}

#ordering-section .cards-wrapper ul li h3 strong {
  font-weight: 500;
}

/* --- Responsive --- */
@media (width < 1200px) {
  main > .section.section-expandable {
    border-radius: 20px 20px 0 0;
    max-width: 100%;
    padding: 0 0 20px 20px;
    gap: 5px;
  }

  main > .section.section-expandable > div {
  max-width: 930px;
  margin: auto;
  }

  main > .section.section-expandable > .section-expand-toggle .section-expand-icon {
    width: 34px;
    height: 34px;
    border-radius: 0 20px 0 8px;
  }

  main > .section.section-expandable > .section-expand-toggle .toggle-icon {
    width: 18px;
    height: 18px;
  }

  main > .section.section-expandable .section-expand-peek,
  main > .section.section-expandable .section-expand-body {
    padding-right: 20px;
  }

  main > .section.section-expandable .section-expand-peek h2,
  main > .section.section-expandable .section-expand-body h2 {
    margin-bottom: 5px;
    color: var(--denim-blue, #153b56);
  }

  main > .section.section-expandable .section-expand-peek ul,
  main > .section.section-expandable .section-expand-body ul {
    font-size: 14px;
    margin-bottom: 5px;
  }

  main > .section.section-expandable .section-expand-peek li,
  main > .section.section-expandable .section-expand-body li {
    margin-bottom: 5px;
  }

  main > .section.section-expandable > .section-expand-body > div {
    max-width: 100%;
  }

  main > .section.section-expanded > .section-expand-body {
    padding-bottom: 20px;
    padding-top: 0;
  }

    main > .section.section-expandable .section-expand-peek h4 {
  padding: 15px 0 10px;
  }
}

/* =========  Page-specific overrides  =========
   Placed last so they descend from the base h2/p rules above.
   ========= */

/* Cobalt section: tight flex stack with gap to chart block below.
   Uses main prefix to reach specificity (0,3,2) so it sits after all ISI p rules. */
main .section.cobalt .default-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

/* Cobalt section bullet list: red » chevron bullets per Figma */
/* stylelint-disable-next-line no-descending-specificity */
main .section.cobalt .default-content-wrapper ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* stylelint-disable-next-line no-descending-specificity */
main .section.cobalt .default-content-wrapper ul li {
  position: relative;
  padding-left: 14px;
  font-family: var(--font-family-brand);
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  color: var(--color-80-black, #0D0D0D);
}

main .section.cobalt .default-content-wrapper ul li::before {
  content: '\00BB';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-corazon, #da291c);
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
}

main .section.cobalt .default-content-wrapper h2 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 40px;
}

/* Sub-hero section: gradient h3 and tight flex stack.
   #sub-hero specificity (1,x,x) must come after .section.cobalt above. */
/* stylelint-disable-next-line no-descending-specificity */
#sub-hero h3 {
  font-family: var(--font-family-brand);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  color: var(--color-denim-blue, #153b56);
  background: var(--eyedrop-denim, linear-gradient(90deg, #213e58 -1.51%, #35586f 98.5%));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#sub-hero .default-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* stylelint-disable no-descending-specificity */
#sub-hero .default-content-wrapper h2,
#sub-hero .default-content-wrapper h3,
#sub-hero .default-content-wrapper p {
  margin-top: 0;
  margin-bottom: 0;
}
/* stylelint-enable no-descending-specificity */

main > .section#footnote-section {
  padding: 20px 0 0;
}

main > .section#footnote-section p {
  margin: 0;
  font-size: 12px;
}
