:root {

  /* colors */
  --denim-blue: #153b56;
  --cobalt-blue: #0086d1;
  --marigold: #ffa100;
  --corazon: #da291c;
  --body-copy-gray: #4d4d4f;
  --color-white: #fff;
  --color-black: #000;
  --footer-background: rgba(21, 59, 86, 0.10);
  --marigold-tint: #fefbf2;

  /* tints */
  --denim-blue-25: rgba(21, 59, 86, 0.25);
  --cobalt-blue-30: rgba(0, 134, 209, 0.30);
  --marigold-7: rgba(255, 161, 0, 0.07);

  /* gradients */
  --blue-gradient: linear-gradient(90deg, var(--denim-blue, #153B56) 4.33%, var(--cobalt-blue, #0086D1) 67.79%);
  --marigold-gradient: linear-gradient(90deg, #FFA100 0%, #FEE6B9 30%, var(--marigold-tint, #FEFBF2) 50%, #FEE6B9 70%, #FFA100 100%);
  --header-gradient: linear-gradient(0deg, #DCDCDC 7.78%, #FFF 38.95%);
  --banner-gradient: linear-gradient(90deg, var(--denim-blue, #153B56) 0%, #2C7CB5 20%, #2C7CB5 80%, #153B56 100%);

  /* fonts */
  --default-font-family: 'Plus Jakarta Sans', plus-jakarta-sans-fallback, sans-serif;
  --roboto-font-family: roboto, roboto-fallback, sans-serif;

  /* font-weights */
  --font-weight-thin: 100;
  --font-weight-extralight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  /* sizes (desktop) */
  --display-header-1-size: 2.9375rem; /* 47px */
  --display-header-2-size: 2.375rem;  /* 38px */
  --heading-h1-size: 2.5rem;          /* 40px */
  --heading-h2-size: 2rem;            /* 32px */
  --heading-h3-size: 1.75rem;         /* 28px */
  --heading-h4-size: 1.5rem;          /* 24px */
  --heading-h5-size: 1.25rem;         /* 20px */
  --eyebrow-size: 1rem;               /* 16px */
  --default-size: 1rem;               /* 16px */
  --bodycopy-size: 1rem;              /* 16px */
  --footnote-size: 0.8125rem;         /* 13px */
  --formcopy-size: 1rem;              /* 16px */
  --errormessage-size: 1rem;          /* 16px */
  --button-size: 1rem;                /* 16px */
  --navigationlink-size: 1rem;        /* 16px */
  --banner-1-size: 1.4375rem;         /* 23px */
  --banner-2-size: 1.4375rem;         /* 23px */
  --disclaimer-1-size: 0.875rem;      /* 14px */
  --disclaimer-2-size: 0.875rem;      /* 14px */
  --call-to-action-size: 1.5rem;      /* 24px */
  --callout-size: 1.75rem;            /* 28px */
  --banner-3-size: 1.0625rem;         /* 17px */
  --banner-4-size: 1rem;              /* 16px */

}

@media (width < 1200px) {
  :root {

    /* sizes (mobile) */
    --display-header-1-size: 2.5625rem;   /* 41px */
    --display-header-2-size: 1.9375rem;   /* 31px */
    --heading-h1-size: 2rem;              /* 32px */
    --heading-h2-size: 1.75rem;           /* 28px */
    --heading-h3-size: 1.5rem;            /* 24px */
    --heading-h4-size: 1.25rem;           /* 20px */
    --heading-h5-size: 1.125rem;          /* 18px */
    --eyebrow-size: 1rem;                 /* 16px */
    --default-size: 1rem;                 /* 16px */
    --bodycopy-size: 1rem;                /* 16px */
    --footnote-size: 0.8125rem;           /* 13px */
    --formcopy-size: 1rem;                /* 16px */
    --errormessage-size: 1rem;            /* 16px */
    --button-size: 1rem;                  /* 16px */
    --navigationlink-size: 1rem;          /* 16px */
    --banner-1-size: 1.5625rem;           /* 25px */
    --banner-2-size: 1.125rem;            /* 18px */
    --disclaimer-1-size: 0.625rem;        /* 10px */
    --disclaimer-2-size: 0.875rem;        /* 14px */
    --call-to-action-size: 1.5rem;        /* 24px */
    --callout-size: 1.125rem;             /* 18px */
    --banner-3-size: 1rem;                /* 16px */
    --banner-4-size: 1rem;                /* 16px */
  }
}

/* fallback fonts */
@font-face {
  font-family: plus-jakarta-sans-fallback;
  size-adjust: 112%;
  src: local('Arial');
}

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

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  word-break: break-word;
}

body {
  display: none;
  margin: 0;
  background-color: var(--color-white);
  color: var(--body-copy-gray);
  font-family: var(--default-font-family);
  font-size: var(--default-size);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset, 0);
}

body.appear {
  display: block;
}

main {
  padding-top: var(--header-offset, 0);
}

.display-header-1 {
  font-family: var(--default-font-family);
  font-size: var(--display-header-1-size);
  font-weight: var(--font-weight-extrabold);
}

.display-header-2 {
  font-family: var(--default-font-family);
  font-size: var(--display-header-2-size);
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-family: var(--default-font-family);
  font-size: var(--heading-h1-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-family: var(--default-font-family);
  font-size: var(--heading-h2-size);
  font-weight: var(--font-weight-semibold);
}

h3 {
  font-family: var(--default-font-family);
  font-size: var(--heading-h3-size);
  font-weight: var(--font-weight-medium);
}

h4 {
  font-family: var(--default-font-family);
  font-size: var(--heading-h4-size);
  font-weight: var(--font-weight-medium);
}

h5 {
  font-family: var(--default-font-family);
  font-size: var(--heading-h5-size);
  font-weight: var(--font-weight-medium);
}

#isi-section ul ul > li::marker {
    content: "- ";
    font-weight: var(--font-weight-bold);
}

#isi-section ul ol > li::marker {
  content: "- ";
  font-weight: var(--font-weight-bold);
}

.eyebrow {
  font-family: var(--default-font-family);
  font-size: var(--eyebrow-size);
  font-weight: var(--font-weight-bold);
}

.bodycopy {
  font-family: var(--default-font-family);
  font-size: var(--bodycopy-size);
  font-weight: var(--font-weight-regular);
}

.footnote {
  font-family: var(--default-font-family);
  font-size: var(--footnote-size);
  font-weight: var(--font-weight-regular);
}

.formcopy {
  font-family: var(--default-font-family);
  font-size: var(--formcopy-size);
  font-weight: var(--font-weight-regular);
}

.errormessage {
  font-family: var(--default-font-family);
  font-size: var(--errormessage-size);
  font-weight: var(--font-weight-regular);
  color: var(--corazon);
}

.button {
  font-family: var(--default-font-family);
  font-size: var(--button-size);
  font-weight: var(--font-weight-bold);
}

.link {
  font-family: var(--default-font-family);
  font-size: var(--navigationlink-size);
  font-weight: var(--font-weight-medium);
}

.banner-1 {
  font-family: var(--default-font-family);
  font-size: var(--banner-1-size);
  font-weight: var(--font-weight-extrabold);
}

.banner-2 {
  font-family: var(--default-font-family);
  font-size: var(--banner-2-size);
  font-weight: var(--font-weight-medium);
}

.disclaimer-1 {
  font-family: var(--default-font-family);
  font-size: var(--disclaimer-1-size);
  font-weight: var(--font-weight-semibold);
}

.disclaimer-2 {
  font-family: var(--default-font-family);
  font-size: var(--disclaimer-2-size);
  font-weight: var(--font-weight-bold);
}

.call-to-action {
  font-family: var(--default-font-family);
  font-size: var(--call-to-action-size);
  font-weight: var(--font-weight-medium);
}

.callout {
  font-family: var(--default-font-family);
  font-size: var(--callout-size);
  font-weight: var(--font-weight-bold);
}

.banner-1 {
  font-family: var(--default-font-family);
  font-size: var(--banner-1-size);
  font-weight: var(--font-weight-extrabold);
}

.banner-2 {
  font-family: var(--default-font-family);
  font-size: var(--banner-2-size);
  font-weight: var(--font-weight-medium);
}

.banner-3 {
  font-family: var(--default-font-family);
  font-size: var(--banner-3-size);
  font-weight: var(--font-weight-bold);
}

.banner-4 {
  font-family: var(--default-font-family);
  font-size: var(--banner-4-size);
  font-weight: var(--font-weight-extrabold);
}

/* sections */
main > .section > div {
  max-width: 1100px;
  margin: auto;
}

main > .section.marigold {
  background: var(--marigold-gradient);
  text-align: center;
  font-size: 23px;
  color: var(--denim-blue);
}

main > .section.marigold p{
  padding: 4px 0;
  font-weight: 700;
}

main > .section.marigold p strong{
  font-weight: 800;
}

main > .section.banner-gradient {
  background: var(--banner-gradient);
  text-align: center;
  color: white;
  font-size: 17px;
  padding: 10px 0;
  font-weight: 500;
}

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

/* =========  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, rgba(21, 59, 86, 0.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: 1100px;
  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-expandable > .section-expand-body > div {
  max-width: 1100px;
  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;
}

/* =========  ISI Section – text styling by ID  ========= */
#isi-section {
  font-family: var(--default-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--body-copy-gray, #4d4d4f);
}

#isi-section h4 {
  margin-bottom: 4px;
  color: var(--denim-blue, #153b56);
  font-size: 16pt;
  font-weight: var(--font-weight-bold);
}

#isi-section h4:nth-of-type(n + 2) {
  margin-top: 10px;
}

#isi-section h5 {
  margin-bottom: 19px;
  color: var(--denim-blue, #153b56);
  font-size: 14pt;
  font-weight: var(--font-weight-bold);
}

#isi-section p {
  font-size: 12pt;
  font-weight: 400;
  line-height: normal;
  color: var(--body-copy-gray, #4d4d4f);
  margin-top: 0;
  margin-bottom: 19px;
}

#isi-section p:has(> strong:first-child) {
  margin-top: 5px;
}

#isi-section p a:any-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: var(--denim-blue);
  font-weight: var(--font-weight-semibold);
} 

#isi-section p a:any-link:hover {
  text-decoration: none;
} 

#isi-section ul {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: var(--body-copy-gray, #4d4d4f);
  margin-bottom: 5px;
  padding-left: 20px;
}

#isi-section ul ul {
  margin-bottom: 0;
}

#isi-section ul ol {
  margin-bottom: 0;
  padding-left: 20px;
  list-style: disc;
}

#isi-section li {
  margin-bottom: 5px;
}

@media (width >= 1200px) {
  #isi-section .section-expand-body .default-content-wrapper > ul.isi-list-multi-column {
    max-width: 600px;
    column-count: var(--isi-list-columns, 2);
    column-gap: 48px;
    column-fill: balance;
  }

  #isi-section .section-expand-body .default-content-wrapper > ul.isi-list-multi-column > li {
    break-inside: avoid;
  }

  #isi-section .section-expand-body ul > li:not(:first-child) > ul:has(> li:nth-child(4):last-child) {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 0;
    margin-bottom: 0;
  }

  #isi-section .section-expand-body ul > li:not(:first-child) > ul:has(> li:nth-child(4):last-child) > li {
    margin-bottom: 0;
  }

  #isi-section .section-expand-body ul > li:not(:first-child) > ul:has(> li:nth-child(4):last-child).isi-ul-four-columns-two-by-two {
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #isi-section .section-expand-body ul > li:not(:first-child) > ul:has(> li:nth-child(4):last-child).isi-ul-four-columns-two-by-two > li {
    max-width: 350px;
  }

  #isi-section .section-expand-body ul > li > ol.isi-ol-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, auto));
    grid-template-columns: var(--isi-ol-grid-template-columns, repeat(var(--isi-ol-grid-columns, 1), minmax(0, 1fr)));
    column-gap: 48px;
    row-gap: 5px;
    margin-bottom: 0;
  }

  #isi-section .section-expand-body ul > li > ol.isi-ol-grid > li {
    margin-bottom: 0;
    max-width: 270px;
  }

  #isi-section .section-expand-body ul > li > ol.isi-ol-grid > li.isi-ol-grid-item-span-2 {
    grid-row: span 2;
  }
}

/* =========  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: 90px;
}

/* ── Base tray – always fixed at bottom ── */
body > .section.isi-floating {
  max-width: 1300px;
  margin: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  --isi-floating-peek-lines: 4;
  --isi-floating-peek-lines-with-blank: 8;
  --isi-floating-peek-gap: 4px;
  --isi-floating-peek-line-height: 24px;
  padding: 5px 0 0;
  background: var(--color-white, #fff);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 6.3px 0 var(--denim-blue-25, rgba(21, 59, 86, 0.25));
  overflow: hidden;
  z-index: 200;
  font-family: var(--default-font-family);
  transition: padding-top 0.28s ease, box-shadow 0.28s ease;
}

/* Inner div wrappers */
body > .section.isi-floating > div {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Toggle button ── */
body > .section.isi-floating > .section-expand-toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 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: 20px;
  font-weight: var(--font-weight-bold, 700);
  color: var(--cobalt-blue, #0086d1);
  white-space: nowrap;
  line-height: normal;
}

body > .section.isi-floating > .section-expand-toggle .section-expand-label:hover {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

body > .section.isi-floating > .section-expand-toggle .section-expand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  background: var(--cobalt-blue, #0086d1);
  border-radius: 0 20px 0 10px;
  flex-shrink: 0;
}

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

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;
  flex-direction: column;
  row-gap: var(--isi-floating-peek-gap);
  padding: 4px 80px 12px 16px;
  font-family: var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-copy-gray, #4d4d4f);
  transition: padding 0.28s ease;
}

body > .section.isi-floating > .section-expand-peek h1,
body > .section.isi-floating > .section-expand-peek h2,
body > .section.isi-floating > .section-expand-peek h3,
body > .section.isi-floating > .section-expand-peek h4, 
body > .section.isi-floating > .section-expand-peek h5,
body > .section.isi-floating > .section-expand-peek h6 {
  margin: 0;
  color: var(--denim-blue, #153b56);
  font-family: "Plus Jakarta Sans", var(--default-font-family);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  font-feature-settings: 'liga' off;
  transition: margin-bottom 0.28s ease, padding-right 0.28s ease;
}

body > .section.isi-floating > .section-expand-peek h4 {
  font-size: 16pt;
}

body > .section.isi-floating > .section-expand-peek h5 {
  font-size: 14pt;
}

body > .section.isi-floating > .section-expand-peek p {
  margin: 0;
  font-size: 12pt;
  line-height: var(--isi-floating-peek-line-height);
  transition: opacity 0.2s ease;
}

/* The second section's paragraph (the one following the next heading, e.g.
   "IMPORTANT SAFETY INFORMATION") is capped to 2 lines so it doesn't grow
   the peek indefinitely. */
body > .section.isi-floating > .section-expand-peek p.isi-peek-second-paragraph {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

/* The JS already trims peek content down to the first 4 lines in authored
   order (heading, then whatever mix of <p>/<li> lines follow), so the CSS
   no longer needs to clamp text or hide extra paragraphs — every block just
   flows in the order it was built, spaced by the wrapper's flex row-gap. */
body > .section.isi-floating > .section-expand-peek ul {
  margin: 0;
  padding-left: 20px;
  font-size: 12pt;
  line-height: var(--isi-floating-peek-line-height);
}

body > .section.isi-floating > .section-expand-peek li {
  margin: 0;
}

body > .section.isi-floating.isi-floating-compact {
  --isi-floating-peek-lines: 3;
  --isi-floating-peek-lines-with-blank: 4;
  --isi-floating-peek-gap: 0;
}

/* Override #isi-section h4/p margin (ID specificity) for the peek area */
#isi-section .section-expand-peek h1,
#isi-section .section-expand-peek h2,
#isi-section .section-expand-peek h3,
#isi-section .section-expand-peek h4,
#isi-section .section-expand-peek h5,
#isi-section .section-expand-peek h6 {
  margin: 0;
}

body > .section.isi-floating > .section-expand-peek h4:nth-of-type(n + 2) {
  margin-top: 10px;
}

#isi-section .section-expand-peek p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: var(--isi-floating-peek-line-height);
}

#isi-section .section-expand-peek p.isi-peek-second-paragraph {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

#isi-section .section-expand-peek ul {
  margin: 0;
  padding-left: 20px;
  line-height: var(--isi-floating-peek-line-height);
}

#isi-section .section-expand-peek li {
  margin: 0;
}

body > .section#isi-section.isi-floating.isi-floating-compact > .section-expand-peek h1,
body > .section#isi-section.isi-floating.isi-floating-compact > .section-expand-peek h2,
body > .section#isi-section.isi-floating.isi-floating-compact > .section-expand-peek h3,
body > .section#isi-section.isi-floating.isi-floating-compact > .section-expand-peek h4,
body > .section#isi-section.isi-floating.isi-floating-compact > .section-expand-peek h5,
body > .section#isi-section.isi-floating.isi-floating-compact > .section-expand-peek h6 {
  margin: 0;
}

/* Match same heading-to-text gap in expand body */
#isi-section .section-expand-body h4 {
  margin-bottom: 4px;
}

#isi-section .section-expand-body p {
  margin-top: 0;
  margin-bottom: 4px;
}

/* Hide peek when expanded – full content is visible in body */
body > .section.section-expanded.isi-floating > .section-expand-peek {
  display: none;
}

/* =========  Inline ISI (scrolled to ISI position, part of page)  ========= */
main > .section.isi-prelude,
main > .section#isi-section.isi-inline {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

main > .section.isi-inline {
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  padding: 0;
}

main > .section#isi-section.isi-inline {
  background: var(--color-white);
}

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

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

main > .section.isi-inline > .section-expand-body {
  overflow: visible;
  padding: 16px;
}

main > .section#isi-section.isi-inline > .section-expand-body {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Expand body ── */
body > .section.isi-floating > .section-expand-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-family: var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-copy-gray, #4d4d4f);
}

body > .section.section-expanded.isi-floating > .section-expand-body {
  max-height: min(50vh, 500px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 16px 16px;
}

body > .section.isi-floating > .section-expand-body p { margin: 0 0 12px; }
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, rgba(21, 59, 86, 0.25));
  border-radius: 3px;
}

@media (width < 1200px) {
  body > .section.isi-floating {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 5px;
    padding-bottom: 2px;
    --isi-floating-peek-line-height: normal;
  }

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

  /* body > .section.isi-floating > .section-expand-toggle{
    flex-direction: column-reverse;
    align-items: flex-end;
  } */

  body > .section.isi-floating > .section-expand-toggle .section-expand-label{

      font-size:10.4px;
      margin-right:4px;
  }

  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;
  }

  body > .section.isi-floating > .section-expand-peek {
    padding: 0px 6px 0px 6px !important;
  }

  body > .section.isi-floating > .section-expand-peek h1,
  body > .section.isi-floating > .section-expand-peek h2,
  body > .section.isi-floating > .section-expand-peek h3,
  body > .section.isi-floating > .section-expand-peek h4,
  body > .section.isi-floating > .section-expand-peek h5,
  body > .section.isi-floating > .section-expand-peek h6 {
    padding-right: 80px !important;
  }

  body > .section.isi-floating > .section-expand-peek p {
    font-size: 16px;
    font-weight: 500;
    font-feature-settings: 'liga' off;
    line-height: var(--isi-floating-peek-line-height);
  }

  body > .section.isi-floating > .section-expand-peek p.isi-peek-second-paragraph {
    display: block;
    -webkit-box-orient: initial;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }

  body > .section.isi-floating > .section-expand-peek p strong{
    font-weight: 800;
  }

  body > .section.isi-floating > .section-expand-peek ul {
    margin: 0;
    padding-left: 20px;
    font-size: 16px;
    font-weight: 500;
    font-feature-settings: 'liga' off;
    line-height: var(--isi-floating-peek-line-height);
  }

  body > .section.isi-floating > .section-expand-peek li {
    margin: 0;
  }

  body > .section.isi-floating > .section-expand-peek h1,
  body > .section.isi-floating > .section-expand-peek h2,
  body > .section.isi-floating > .section-expand-peek h3,
  body > .section.isi-floating > .section-expand-peek h4,
  body > .section.isi-floating > .section-expand-peek h5,
  body > .section.isi-floating > .section-expand-peek h6 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    font-feature-settings: 'liga' off;
    line-height: normal;
    text-transform: uppercase;
    color: var(--denim-blue, #153b56);
  }

  body > .section.isi-floating > .section-expand-peek h4 {
    font-size: 18px;
    /* position: relative;
    top:-8px; */
  }
  body > .section.isi-floating > .section-expand-peek h4:not(:first-child) {
    padding-right: 0px !important;
    /* position: relative;
    top:-8px; */
  }
  body > .section.isi-floating > .section-expand-peek {
    row-gap: var(--isi-floating-peek-gap);
  }

  body > .section.isi-floating > .section-expand-peek h5 {
    font-size: 14px;
  }

  body > .section.isi-floating > .section-expand-body h4 {
    font-size: 19px;
    font-weight: 800;
    font-feature-settings: 'liga' off;
    line-height: normal;
  }

  body > .section.isi-floating > .section-expand-body p,
  body > .section.isi-floating > .section-expand-body li {
    font-size: 16px;
    font-weight: 400;
    font-feature-settings: 'liga' off;
    line-height: normal;
  }

  main > .section.section-expandable.isi-inline {
    padding: 0;
  }

  main > .section#isi-section.isi-inline > .section-expand-body {
    padding: 16px;
  }
}

.primary-button-horizontal:hover {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* --- 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: 100%;
  }

  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;
  }

  main > .section.banner-gradient {
  background: var(--banner-gradient);
  font-family: var(--default-font-family);
  padding: 15px;
  color: #FFF;
  text-align: center;
  font-size: 14.5px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.16px;
}
}

@media (width < 1200px) {

  main>.section.marigold p {
    font-size: 17px;
    padding: 5.5px 0;
    font-weight: 700;
    line-height: 110%;
  }

  main>.section.marigold p strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
  }

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