/*
 * PageBuilder — scoped styles for the Fluid section types rendered by
 * contentzsystem/user/templates/exida/_partials/PAR_PAGE_BUILDER.html.
 *
 * All selectors are namespaced under .pb-* so this file is safe to load
 * alongside the 4,000+ line site stylesheet at 2016/assets/css/style.css.
 *
 * exida style guide (May 2026) — token map:
 *   --pb-dark-grey   #45484f  Dark Grey — titles
 *   --pb-red         #ff5533  Red — titles & accents (style guide “Red”)
 *   --pb-gold        #f5c450  Gold — accents / optional band fill
 *   --pb-light-grey  #edeeed  Light Grey — backgrounds
 *   --pb-grey-text   #4e4c4c  Grey Text — body copy
 *   --pb-primary     alias → --pb-red (CTA/button hooks elsewhere in site CSS)
 */

:root {
  --pb-dark-grey: #45484f;
  --pb-red: #ff5533;
  --pb-red-hover: #e84928;
  --pb-gold: #f5c450;
  --pb-light-grey: #edeeed;
  --pb-grey-text: #4e4c4c;
  --pb-white: #fff;
  --pb-primary: var(--pb-red);
  --pb-primary-hover: var(--pb-red-hover);
  /* Default stripe: white / Light Grey */
  --pb-band-bg: var(--pb-white);
  --pb-band-bg-alt: var(--pb-light-grey);
}

/* Stripe `.pb-band` siblings; skip `.pb-hero` (not `.pb-band`) and `.pb-cta-band`
   (full-width brand fill — stripe backgrounds would override and hide white type). */
.pb-pagebuilder > section.pb-band:nth-child(odd):not(.pb-cta-band) {
  background-color: var(--pb-band-bg-alt);
}

.pb-pagebuilder > section.pb-band:nth-child(even):not(.pb-cta-band) {
  background-color: var(--pb-band-bg);
}

.pb-pagebuilder {
  font-size: 16px;
}

.pb-band {
  padding: 60px 0;
  color: var(--pb-grey-text);
}

/* D-08 section spacing overrides */
.pb-band-spacing--none {
  padding-top: 0;
  padding-bottom: 0;
}

.pb-band-spacing--small {
  padding: 30px 0;
}

.pb-band-spacing--normal {
  padding: 60px 0;
}

.pb-band-spacing--large {
  padding: 90px 0;
}

/* D-07 shared section background (`pb_pagebuilder_section_bg`) — style guide fills */
.pb-band-bg--white,
.pb-hero.pb-band-bg--white {
  background-color: var(--pb-white) !important;
  color: var(--pb-grey-text);
}

.pb-band-bg--light-grey,
.pb-hero.pb-band-bg--light-grey {
  background-color: var(--pb-light-grey) !important;
  color: var(--pb-grey-text);
}

.pb-band-bg--dark-grey,
.pb-hero.pb-band-bg--dark-grey {
  background-color: var(--pb-dark-grey) !important;
  color: var(--pb-white);
}

.pb-band-bg--red,
.pb-hero.pb-band-bg--red {
  background-color: var(--pb-red) !important;
  color: var(--pb-white);
}

.pb-band-bg--gold,
.pb-hero.pb-band-bg--gold {
  background-color: var(--pb-gold) !important;
  color: var(--pb-grey-text);
}

/* Light canvas — Dark Grey titles, Grey Text body (style guide) */
.pb-band-bg--white .pb-band-heading,
.pb-band-bg--light-grey .pb-band-heading,
.pb-band:not([class*="pb-band-bg--"]) .pb-band-heading {
  color: var(--pb-dark-grey);
}

.pb-band-bg--white .pb-band-intro,
.pb-band-bg--light-grey .pb-band-intro,
.pb-band:not([class*="pb-band-bg--"]) .pb-band-intro {
  color: var(--pb-grey-text);
}

.pb-band-bg--gold .pb-band-heading {
  color: var(--pb-dark-grey);
}

.pb-band-bg--gold .pb-band-intro {
  color: var(--pb-grey-text);
}

/* Dark canvas — white type on Dark Grey / Red bands */
.pb-band-bg--dark-grey .pb-band-heading,
.pb-band-bg--dark-grey .pb-band-intro,
.pb-band-bg--dark-grey .pb-band-eyebrow,
.pb-band-bg--red .pb-band-heading,
.pb-band-bg--red .pb-band-intro,
.pb-band-bg--red .pb-band-eyebrow {
  color: var(--pb-white);
}

.pb-band-bg--dark-grey .pb-band-intro,
.pb-band-bg--red .pb-band-intro {
  color: rgba(255, 255, 255, 0.92);
}

.pb-band-bg--dark-grey .pb-band-eyebrow,
.pb-band-bg--red .pb-band-eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

/* Gold canvas — keep Red eyebrow accent */
.pb-band-bg--gold .pb-band-eyebrow {
  color: var(--pb-red);
}

/* Dark / Red canvas — prose inside bands (not cards) */
.pb-band-bg--dark-grey .pb-band-inner,
.pb-band-bg--red .pb-band-inner {
  color: rgba(255, 255, 255, 0.92);
}

.pb-band-bg--dark-grey .pb-band-inner h2,
.pb-band-bg--dark-grey .pb-band-inner h3,
.pb-band-bg--dark-grey .pb-band-inner h4,
.pb-band-bg--red .pb-band-inner h2,
.pb-band-bg--red .pb-band-inner h3,
.pb-band-bg--red .pb-band-inner h4 {
  color: var(--pb-white);
}

.pb-band-bg--dark-grey .pb-band-inner a,
.pb-band-bg--red .pb-band-inner a {
  color: var(--pb-white);
}

.pb-band-bg--dark-grey .pb-nl-item-heading,
.pb-band-bg--red .pb-nl-item-heading {
  color: var(--pb-white);
}

.pb-band-bg--dark-grey .pb-nl-item-body,
.pb-band-bg--red .pb-nl-item-body {
  color: rgba(255, 255, 255, 0.88);
}

.pb-band-bg--gold .pb-band-inner h2,
.pb-band-bg--gold .pb-band-inner h3,
.pb-band-bg--gold .pb-band-inner h4 {
  color: var(--pb-dark-grey);
}

/* Single trailing arrow on primary CTAs (label text must not include an arrow) */
.pb-btn-with-arrow::after {
  content: " \2192";
  font-weight: 700;
}

.pb-pullquote-accent {
  color: var(--pb-primary);
}

.pb-band-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.pb-band-heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--pb-dark-grey);
}

.pb-band-intro {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 40px;
  color: var(--pb-grey-text);
  max-width: 760px;
}

/* 1. Text Band ------------------------------------------------------------- */

.pb-text-band .pb-band-inner {
  max-width: 820px;
}

.pb-text-band p {
  font-size: 18px;
  line-height: 1.65;
}

/* Text style variants (pb_text_style select — add matching --style-* rules for new values) */
.pb-text-band--style-lead .pb-band-inner p,
.pb-text-band--style-lead .pb-band-inner li {
  font-size: 22px;
  line-height: 1.55;
}

.pb-text-band h2 {
  font-size: 28px;
  margin-top: 32px;
}

.pb-text-band h3 {
  font-size: 22px;
  margin-top: 24px;
}

/* Wygwam lists — arrow bullets (SIL Verification intro style) */
.pb-text-band .pb-band-inner ul {
  list-style: none;
  margin: 1.25em 0;
  padding: 0;
  max-width: 680px;
}

.pb-text-band .pb-band-inner ul li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 17px;
  line-height: 1.65;
  color: #4e4c4c;
}

.pb-text-band .pb-band-inner ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 6px;
  font-weight: 700;
  color: var(--pb-primary);
}

.pb-text-band .pb-band-inner ul ul {
  margin-top: 0.5em;
}

/* Section eyebrows (SILstat baseline — Plain Text CP fields rendered as capped labels) */
.pb-band-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pb-primary);
}

.pb-band-inner > .pb-band-eyebrow + .pb-band-heading {
  margin-top: 0;
}

.pb-html-eyebrow .pb-band-inner {
  padding-bottom: 8px;
}

/* Split Text Band (two-column editorial + optional pull-quote) ---------------- */

.pb-split-band .pb-band-inner {
  max-width: 1170px;
}

.pb-split-band > .pb-band-inner > .pb-band-eyebrow {
  max-width: 820px;
}

.pb-split-band .pb-band-heading {
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 820px;
}

.pb-split-columns {
  display: grid;
  gap: 32px;
  align-items: start;
}

.pb-split-columns--solo {
  grid-template-columns: minmax(0, 820px);
}

.pb-split-columns--dual {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.54fr);
}

.pb-split-main,
.pb-split-sidebar {
  font-size: 17px;
  line-height: 1.65;
  color: #4e4c4c;
}

/* Split main column on dark/red bands — prose must be light (sidebar pull-quote keeps light panel) */
.pb-band-bg--dark-grey .pb-split-main,
.pb-band-bg--red .pb-split-main {
  color: rgba(255, 255, 255, 0.92);
}

.pb-band-bg--dark-grey .pb-split-main a,
.pb-band-bg--red .pb-split-main a {
  color: var(--pb-white);
}

.pb-band-bg--dark-grey .pb-split-main strong,
.pb-band-bg--red .pb-split-main strong {
  color: var(--pb-white);
}

.pb-split-main p,
.pb-split-sidebar p {
  margin: 0 0 1em;
}

.pb-split-sidebar--pullquote {
  margin: 0;
  padding: 22px 24px;
  border-radius: 3px;
  background: var(--pb-light-grey);
  border-left: 5px solid var(--pb-primary);
}

.pb-split-sidebar--calm_panel {
  margin: 0;
  padding: 22px 24px;
  border-radius: 3px;
  background: #fafafa;
  border: 1px solid #e6e6e6;
  border-left: 4px solid #c8c8c8;
}

.pb-split-sidebar--pullquote em,
.pb-split-sidebar--calm_panel em {
  font-style: italic;
  color: #2d2d2d;
}

.pb-pullquote-accent {
  font-weight: 700;
  font-style: normal;
  color: var(--pb-primary);
}

@media (max-width: 991px) {
  .pb-split-columns--dual {
    grid-template-columns: 1fr;
  }
}

/* 2. Feature Grid ---------------------------------------------------------- */

.pb-feature-grid .pb-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.pb-feature-grid.pb-layout-2 .pb-card {
  flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
  box-sizing: border-box;
}

.pb-feature-grid.pb-layout-3 .pb-card {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  box-sizing: border-box;
}

/* 4 columns (e.g. 7-card SILstat grid — flex centers partial last row) */
.pb-feature-grid.pb-layout-4 .pb-card {
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
  box-sizing: border-box;
}

.pb-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.pb-feature-grid .pb-card:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transform: none;
  cursor: default;
}

.pb-feature-grid--icon img,
.pb-feature-grid:not(.pb-feature-grid--image) img {
  width: auto;
  height: 72px;
  max-width: 100%;
  margin: 0;
  object-fit: contain;
  display: block;
}

.pb-card-heading {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--pb-dark-grey);
  width: 100%;
  align-self: stretch;
  text-align: center;
}

.pb-card-body {
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
  color: #555;
  width: 100%;
  align-self: stretch;
  text-align: left;
}

/* Cards on white bands use gray fill; on gray bands use white (Todd contrast feedback) */
.pb-pagebuilder > section.pb-band:nth-child(even):not(.pb-cta-band) .pb-card {
  background: var(--pb-band-bg-alt);
}

.pb-pagebuilder > section.pb-band:nth-child(odd):not(.pb-cta-band) .pb-card {
  background: #fff;
}

/* D-07 card fill inverts band (white ↔ Light Grey); solid cards on dark/red/gold bands */
.pb-pagebuilder > section.pb-band.pb-band-bg--white:not(.pb-cta-band) .pb-card {
  background: var(--pb-light-grey);
}

.pb-pagebuilder > section.pb-band.pb-band-bg--light-grey:not(.pb-cta-band) .pb-card {
  background: var(--pb-white);
}

.pb-pagebuilder > section.pb-band.pb-band-bg--dark-grey .pb-card,
.pb-pagebuilder > section.pb-band.pb-band-bg--red .pb-card,
.pb-pagebuilder > section.pb-band.pb-band-bg--gold .pb-card {
  background: var(--pb-white);
}

.pb-card-body p:first-child {
  margin-top: 0;
}

.pb-card-body p:last-child {
  margin-bottom: 0;
}

/* D-10 barrier / card accent + eyebrow */
.pb-card-eyebrow {
  color: var(--pb-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.pb-feature-grid--accent-red-stripe .pb-card {
  border-top: 4px solid var(--pb-primary);
}

/* D-11 image card type */
.pb-feature-grid--image .pb-card {
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}

.pb-feature-grid--image img {
  display: block;
  height: 180px;
  object-fit: cover;
  order: 1;
  width: 100%;
}

.pb-feature-grid--image.pb-layout-3 img {
  height: 240px;
}

.pb-feature-grid--image.pb-layout-2 img {
  height: 280px;
}

.pb-feature-grid--image .pb-card-heading,
.pb-feature-grid--image .pb-card-body,
.pb-feature-grid--image .pb-card-link,
.pb-feature-grid--image .pb-card-eyebrow {
  padding-left: 24px;
  padding-right: 24px;
}

.pb-feature-grid--image .pb-card-eyebrow {
  order: 2;
  padding-top: 0;
}

.pb-feature-grid--image .pb-card-heading {
  order: 3;
  margin-top: 0;
  margin-bottom: 6px;
}

/* Image-type cards with no media — restore top breathing room */
.pb-feature-grid--image .pb-card:not(:has(img)) {
  padding-top: 28px;
}

.pb-feature-grid--image .pb-card:not(:has(img)) .pb-card-eyebrow {
  padding-top: 20px;
}

.pb-feature-grid--image .pb-card-body {
  order: 4;
  padding-bottom: 8px;
}

.pb-feature-grid--image .pb-card-link {
  order: 5;
  padding-bottom: 24px;
}

.pb-card-link {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  font-weight: 600;
  color: var(--pb-primary);
  text-decoration: none;
}

.pb-card-link:hover,
.pb-card-link:focus {
  color: var(--pb-primary-hover);
  text-decoration: underline;
}

/* 3. Numbered List --------------------------------------------------------- */

.pb-numbered-list-items {
  list-style: none;
  counter-reset: pb-step;
  margin: 0;
  padding: 0;
}

.pb-numbered-list-item {
  counter-increment: pb-step;
  position: relative;
  padding: 0 0 24px 76px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e6e6e6;
}

.pb-numbered-list-item:last-child {
  border-bottom: none;
}

.pb-numbered-list-item::before {
  content: counter(pb-step);
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pb-primary);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
}

.pb-numbered-list-item-heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--pb-dark-grey);
}

.pb-numbered-list-item-body {
  font-size: 16px;
  line-height: 1.6;
}

/* 4. CTA Band -------------------------------------------------------------- */

.pb-cta-band {
  background: var(--pb-primary);
  color: #fff;
  text-align: center;
}

.pb-cta-band .pb-cta-heading {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px;
}

.pb-cta-band .pb-cta-body {
  font-size: 18px;
  line-height: 1.55;
  margin: 0 auto 24px;
  max-width: 720px;
}

.pb-cta-band .pb-cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: #fff;
  color: var(--pb-primary);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
  box-shadow: none;
}

.pb-cta-band .pb-cta-button:hover,
.pb-cta-band .pb-cta-button:focus {
  transform: translateY(-2px);
  background: #f5f5f5;
  color: var(--pb-primary);
}

/* 5. Multi-Pathway --------------------------------------------------------- */

.pb-pathway-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 32px;
}

.pb-pathway {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pb-pathway:hover,
.pb-pathway:focus-within {
  border-color: var(--pb-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pb-pathway-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: block;
  object-fit: contain;
}

.pb-pathway-heading {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 12px;
  color: var(--pb-dark-grey);
}

.pb-pathway-body {
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}

.pb-pathway-link {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  text-indent: -9999px;
  overflow: hidden;
}

.pb-pathway-cta {
  text-align: center;
}

/* Multi-Pathway — canvas tokens via shared pb_pagebuilder_section_bg */
.pb-multi-pathway.pb-band-bg--dark-grey {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.pb-multi-pathway.pb-band-bg--dark-grey .pb-pathway {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.pb-multi-pathway.pb-band-bg--dark-grey .pb-pathway-heading {
  color: var(--pb-white);
}

.pb-multi-pathway.pb-band-bg--dark-grey .pb-pathway-body {
  color: rgba(255, 255, 255, 0.88);
}

.pb-multi-pathway.pb-band-bg--dark-grey .btn--primary {
  background: var(--pb-white);
  color: var(--pb-red);
  border-color: var(--pb-white);
}

.pb-multi-pathway.pb-band-bg--red {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.pb-multi-pathway.pb-band-bg--red .pb-pathway {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.pb-multi-pathway.pb-band-bg--red .pb-pathway-heading {
  color: var(--pb-white);
}

.pb-multi-pathway.pb-band-bg--red .pb-pathway-body {
  color: rgba(255, 255, 255, 0.9);
}

.pb-multi-pathway.pb-band-bg--red .btn--primary {
  background: var(--pb-white);
  color: var(--pb-red);
  border-color: var(--pb-white);
}

.pb-multi-pathway.pb-band-bg--gold .pb-pathway-heading {
  color: var(--pb-dark-grey);
}

.pb-multi-pathway.pb-band-bg--gold .pb-pathway-body {
  color: var(--pb-grey-text);
}

/* 5b. Media Promo (infographic + sidebar) ---------------------------------- */

.pb-media-promo .pb-band-inner {
  max-width: 1170px;
}

.pb-media-promo-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.15fr minmax(0, 1fr);
  align-items: center;
}

.pb-media-promo-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid #e6e6e6;
}

.pb-media-promo-heading {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--pb-dark-grey);
}

.pb-media-promo-body {
  font-size: 16px;
  line-height: 1.65;
  color: #555;
  margin: 0 0 20px;
}

.pb-media-promo-body p:first-child {
  margin-top: 0;
}

.pb-media-promo-body p:last-child {
  margin-bottom: 0;
}

.pb-media-promo-cta {
  display: inline-block;
}

@media (max-width: 991px) {
  .pb-media-promo-grid {
    grid-template-columns: 1fr;
  }
}

/* 6. Resource Grid --------------------------------------------------------- */

.pb-resource-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pb-resource-cards--align-start {
  justify-content: flex-start;
}

.pb-resource-card {
  flex: 0 0 calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  box-sizing: border-box;
  padding: 24px 22px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: box-shadow 0.15s ease;
}

.pb-resource-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.pb-resource-icon img {
  display: block;
  max-width: 112px;
  width: 100%;
  height: auto;
}

.pb-resource-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
}

.pb-resource-card .pb-resource-type {
  margin-bottom: 0;
}

.pb-resource-type {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  color: var(--pb-primary);
  background: rgba(255, 85, 51, 0.14);
}

.pb-resource-card .pb-resource-title,
.pb-resource-card .pb-resource-description {
  text-align: center;
  align-self: stretch;
  width: 100%;
}

.pb-resource-title {
  font-size: .9em;
  font-weight: 700;
  margin: 4px 0 8px;
  line-height: 1.35;
}

.pb-resource-title a {
  color: var(--pb-dark-grey);
  text-decoration: none;
}

.pb-resource-title a:hover,
.pb-resource-title a:focus {
  color: var(--pb-primary);
  text-decoration: underline;
}

.pb-resource-description {
  font-size: 14px;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

/* Resource cards sit on white fill inside dark/red bands — override band h3/a color */
.pb-band-bg--dark-grey .pb-resource-card .pb-resource-title,
.pb-band-bg--dark-grey .pb-resource-card .pb-resource-title a,
.pb-band-bg--red .pb-resource-card .pb-resource-title,
.pb-band-bg--red .pb-resource-card .pb-resource-title a {
  color: var(--pb-dark-grey);
}

.pb-band-bg--dark-grey .pb-resource-card .pb-resource-description,
.pb-band-bg--red .pb-resource-card .pb-resource-description {
  color: #555;
}

/* 7. Download -------------------------------------------------------------- */

.pb-download {
  background: var(--pb-light-grey);
  text-align: center;
}

.pb-download .pb-band-inner {
  max-width: 720px;
}

.pb-download-heading {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
}

.pb-download-body {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.pb-download-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--pb-primary);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.pb-download-button:hover,
.pb-download-button:focus {
  background: var(--pb-primary-hover);
  color: #fff;
  text-decoration: none;
}

/* 8. Raw HTML -------------------------------------------------------------- */

.pb-html .pb-band-inner {
  max-width: 980px;
}

.pb-html .pb-html-scope {
  box-sizing: border-box;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heroes / full-width embeds can break out via markup inside pb-html-scope or scoped CSS */

/* Hero partials (pb-hero-silstat, pb-hero-sil-verification) ---------------- */

.pb-hero {
  box-sizing: border-box;
  padding: 72px 0 64px;
  color: var(--pb-dark-grey);
  background: var(--pb-light-grey);
}

.pb-hero-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}

.pb-hero-placeholder {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #777;
}

.pb-hero--dark {
  color: #fff;
  background: #1e1e1e;
}

.pb-hero--dark .pb-hero-placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.pb-hero-copy {
  max-width: 720px;
}

.pb-hero-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pb-primary);
}

.pb-hero-title {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--pb-dark-grey);
}

.pb-hero-title em {
  font-style: normal;
  color: var(--pb-primary);
}

/* SILstat landing hero (~HTML Fluid block seeded by migration 2026_05_13…) */

.pb-hero--split .pb-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pb-hero--split .pb-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.pb-hero--split .pb-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.pb-hero--split .pb-hero-buttons .pb-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

.pb-hero--split .pb-hero-buttons .pb-hero-btn-arrow {
  font-weight: 700;
  font-size: 1.05em;
  line-height: 1;
  transform: translateY(-0.03em);
}

.pb-hero--split .pb-hero-accentbar {
  display: block;
  width: 200px;
  height: 14px;
  margin: 18px 0 4px;
  opacity: 0.66;
  background: repeating-linear-gradient(
    -55deg,
    var(--pb-primary) 0px,
    var(--pb-primary) 3px,
    transparent 3px,
    transparent 9px
  );
}

.pb-hero-description {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.6;
  max-width: 640px;
  color: inherit;
}

/* Hero — shared pb_pagebuilder_section_bg tokens (style guide fills) */
.pb-hero.pb-band-bg--light-grey {
  color: var(--pb-grey-text);
}

.pb-hero.pb-band-bg--light-grey .pb-hero-accentbar {
  opacity: 0.4;
}

.pb-hero.pb-band-bg--dark-grey .pb-hero-title {
  color: var(--pb-white);
}

.pb-hero.pb-band-bg--dark-grey .pb-hero-title em {
  color: var(--pb-red);
}

.pb-hero.pb-band-bg--dark-grey .pb-hero-description {
  color: rgba(255, 255, 255, 0.92);
}

/* Primary default only: red outline on #45484f is ~2.9:1 (fails AA). White outline
   keeps the hollow → solid hover pattern; fill matches global .btn--primary:hover. */
.pb-hero.pb-band-bg--dark-grey .btn--primary {
  color: var(--pb-white);
  border-color: var(--pb-white);
  background: none;
}

.pb-hero.pb-band-bg--dark-grey .btn--primary:hover,
.pb-hero.pb-band-bg--dark-grey .btn--primary:focus {
  color: var(--pb-white);
  background-color: var(--pb-red);
  border-color: var(--pb-red);
}

.pb-hero.pb-band-bg--red .pb-hero-title {
  color: var(--pb-white);
}

.pb-hero.pb-band-bg--red .pb-hero-title em {
  color: var(--pb-white);
  font-weight: 800;
}

.pb-hero.pb-band-bg--red .pb-hero-description {
  color: rgba(255, 255, 255, 0.95);
}

.pb-hero.pb-band-bg--red .pb-hero-accentbar {
  opacity: 1;
  background: repeating-linear-gradient(
    -55deg,
    rgba(255, 255, 255, 0.35) 0px,
    rgba(255, 255, 255, 0.35) 3px,
    transparent 3px,
    transparent 9px
  );
}

.pb-hero.pb-band-bg--red .btn--primary {
  background: var(--pb-white);
  color: var(--pb-red);
  border-color: var(--pb-white);
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.pb-hero.pb-band-bg--red .btn--primary:hover,
.pb-hero.pb-band-bg--red .btn--primary:focus {
  background: var(--pb-light-grey);
  border-color: var(--pb-light-grey);
  color: var(--pb-red);
}

.pb-hero.pb-band-bg--red .btn--secondary {
  background: transparent;
  color: var(--pb-white);
  border-color: rgba(255, 255, 255, 0.65);
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.pb-hero.pb-band-bg--red .btn--secondary:hover,
.pb-hero.pb-band-bg--red .btn--secondary:focus {
  background: var(--pb-white);
  color: var(--pb-red);
  border-color: var(--pb-white);
}

.pb-hero.pb-band-bg--gold .pb-hero-title {
  color: var(--pb-dark-grey);
}

.pb-hero.pb-band-bg--gold .pb-hero-title em {
  color: var(--pb-red);
}

.pb-hero.pb-band-bg--gold .pb-hero-description {
  color: var(--pb-grey-text);
}

/* SILstat hero — progressively taller shell + denser hero image on wider viewports */
@media (min-width: 992px) {
  .pb-hero.pb-hero--split {
    padding: 84px 0 72px;
  }

  .pb-hero--split .pb-hero-split {
    gap: 50px;
  }
}

@media (min-width: 1200px) {
  .pb-hero.pb-hero--split {
    padding: 92px 0 78px;
  }

  .pb-hero--split .pb-hero-split {
    gap: 52px;
  }
}

@media (max-width: 991px) {
  .pb-hero--split .pb-hero-split {
    grid-template-columns: 1fr;
  }

  .pb-hero--split .pb-hero-media {
    order: -1;
  }
}

/* SILstat XL — capped image column; padding + caps scale up again on very wide monitors */
@media (min-width: 1400px) {
  .pb-hero.pb-hero--split {
    padding: 100px 0 88px;
  }

  .pb-hero--split .pb-hero-inner {
    max-width: 1240px;
  }

  .pb-hero--split .pb-hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 560px);
    gap: clamp(54px, 4.75vw, 84px);
    align-items: center;
  }

  .pb-hero--split .pb-hero-media {
    justify-self: end;
    width: 100%;
    max-width: 560px;
  }

  .pb-hero--split .pb-hero-media img {
    width: 100%;
  }
}

@media (min-width: 1800px) {
  .pb-hero.pb-hero--split {
    padding: 112px 0 96px;
  }

  .pb-hero--split .pb-hero-inner {
    max-width: 1320px;
  }

  .pb-hero--split .pb-hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 620px);
    gap: clamp(60px, 5vw, 96px);
  }

  .pb-hero--split .pb-hero-media {
    max-width: 620px;
  }
}

.pb-hero-lead {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(30, 30, 30, 0.88);
}

.pb-hero-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(30, 30, 30, 0.55);
}

.pb-hero--dark .pb-hero-lead {
  color: rgba(255, 255, 255, 0.82);
}

.pb-hero--dark .pb-hero-note {
  color: rgba(255, 255, 255, 0.55);
}

/* Jump Navigation — reuse site `.navbar-sub` pill nav (style.css); scoped overrides ---- */

.pb-jump-nav.navbar-sub {
  background-color: #f5f5f5;
  border: none;
  margin-bottom: 0;
  min-height: 0;
  padding: 15px 0;
  text-align: center;
  width: 100%;
}

.pb-pagebuilder > section.pb-jump-nav.navbar-sub {
  background-color: #f5f5f5;
}

.pb-jump-nav.navbar-sub.pb-band {
  padding: 15px 0;
}

.pb-jump-nav.navbar-sub .container {
  max-width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
}

.pb-jump-nav.navbar-sub .navbar-collapse {
  display: block !important;
  height: auto !important;
  overflow: visible;
  padding: 0;
}

.pb-jump-nav.navbar-sub .nav.navbar-nav {
  display: inline-block;
  float: none;
  margin: 0;
}

.pb-jump-nav.navbar-sub .nav.navbar-nav > li {
  display: inline-block;
  float: none;
}

/* Pill link styles mirror `.navbar-sub .navbar-nav > li > a` in style.css */
.pb-jump-nav.navbar-sub .nav.navbar-nav > li > a {
  background: #fff;
  border-radius: 16px;
  color: #687074;
  font-family: 'Circular Std Bold', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-right: 16px;
  padding: 8px;
  text-decoration: none;
  text-transform: capitalize;
}

.pb-jump-nav.navbar-sub .nav.navbar-nav > li > a:focus,
.pb-jump-nav.navbar-sub .nav.navbar-nav > li > a:hover {
  background-color: #ff5533;
  border-radius: 16px;
  color: #fff;
}

/* Back to top (D-06) ------------------------------------------------------- */

.pb-back-to-top {
  background: #45484f;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
  display: flex;
  height: 44px;
  opacity: 0.85;
  position: fixed;
  right: 24px;
  text-decoration: none;
  transition: background-color 0.15s ease, opacity 0.15s ease;
  width: 44px;
  z-index: 900;
  align-items: center;
  justify-content: center;
}

.pb-back-to-top:hover,
.pb-back-to-top:focus {
  background: var(--pb-primary);
  color: #fff;
  opacity: 1;
}

.pb-back-to-top-icon {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/* Responsive ---------------------------------------------------------------- */

@media (max-width: 991px) {
  .pb-band {
    padding: 48px 0;
  }
  .pb-band-heading {
    font-size: 26px;
  }
  .pb-feature-grid .pb-card-grid,
  .pb-feature-grid.pb-layout-3 .pb-card-grid,
  .pb-feature-grid.pb-layout-4 .pb-card-grid {
    justify-content: center;
  }

  .pb-feature-grid.pb-layout-2 .pb-card,
  .pb-feature-grid.pb-layout-3 .pb-card,
  .pb-feature-grid.pb-layout-4 .pb-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .pb-feature-grid--image.pb-layout-2 img,
  .pb-feature-grid--image.pb-layout-3 img {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .pb-band {
    padding: 40px 0;
  }
  .pb-band-heading {
    font-size: 24px;
  }
  .pb-feature-grid .pb-card-grid,
  .pb-feature-grid.pb-layout-2 .pb-card-grid,
  .pb-feature-grid.pb-layout-3 .pb-card-grid,
  .pb-feature-grid.pb-layout-4 .pb-card-grid,
  .pb-pathway-grid,
  .pb-resource-cards {
    flex-direction: column;
  }

  .pb-resource-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pb-feature-grid.pb-layout-2 .pb-card,
  .pb-feature-grid.pb-layout-3 .pb-card,
  .pb-feature-grid.pb-layout-4 .pb-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pb-feature-grid--image img {
    height: 200px;
  }
  .pb-numbered-list-item {
    padding-left: 64px;
  }
  .pb-numbered-list-item::before {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
