.ss {
  display: none;
}

/* Image */

h2.image-text {
  font-weight: 700;
  font-size: 56px;
  line-height: 61.6px;
}

.hero-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  left: 5%;
  color: white;
  max-width: 800px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    #ae7936 0%,
    /* fully solid left */ #ae7936 25%,
    /* solid through first 3 columns */ rgba(174, 121, 54, 0.85) 45%,
    /* start fading */ rgba(174, 121, 54, 0.6) 55%,
    rgba(174, 121, 54, 0.3) 65%,
    rgba(174, 121, 54, 0) 75% /* fully transparent */
  );
}

/* ====== TUNABLE RESPONSIVE VARIABLES ====== */

h2.occgov-hero__heading {
  font-family: "Merriweather Web";
  font-size: 56px;
  font-weight: 700;
  line-height: 61.6px;
}

.usa-hero__callout {
  padding: 1rem;
  background-color: transparent;
  width: 880px;
  max-width: none;
}

@media (max-width: 810px) {
  h2.occgov-hero__heading {
    font-family: "Merriweather Web";
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
  }

  .usa-hero__callout {
    padding: 1rem;
    background-color: transparent;
    width: 550px;
    max-width: none;
  }
}

.cbd-hero {
  /* overlap amount scales down on small screens automatically */
  --overlap: clamp(16px, 3vw, 32px);

  /* hero height scales with viewport but never gets too short/tall */
  --hero-h: clamp(320px, 48vw, 520px);

  /* top offset for headline area (also responsive) */
  --content-top: clamp(72px, 10vw, 120px);
  margin-bottom: 64px;
}

/* ====== HERO MEDIA ====== */
.cbd-hero__media {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.cbd-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: right 1%;
}

/* Gold overlay */
.cbd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #112e51 0%,
    #112e51 25%,
    rgba(17, 46, 81, 0.85) 45%,
    rgba(17, 46, 81, 0.6) 55%,
    rgba(17, 46, 81, 0.3) 65%,
    rgba(17, 46, 81, 0) 75%
  );
  pointer-events: none;
}

/* Text + CTA */
.cbd-hero__content {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 2;
}

.cbd-hero__title {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 0 24px;
}

.cbd-hero__cta {
  margin-top: 16px;
  padding-left: 36px;
  padding-right: 36px;
  font-size: 20px;
  font-weight: 600;
}

/* ====== BLUE BOX (NORMAL FLOW + NEGATIVE MARGIN) ====== */
.cbd-hero__cardWrap {
  /* Pull the card UP into the hero by --overlap */
  --overlap: 48px;
  margin-top: calc(var(--overlap) * -1);
}

.cbd-hero__card {
  background: #445366;
  color: #fff;
  border-radius: 8px;
  padding-left: 48px;
  padding-right: 48px;
  padding-top: 32px;
  padding-bottom: 80px;
}

.cbd-hero__cardTitle {
  font-size: 30px;
  margin-top: 0;
}

.cbd-hero__card p:last-child {
  font-size: 20px;
  margin-bottom: 0;
}

/* ====== OPTIONAL: tighten layout on very small screens ====== */
@media (max-width: 480px) {
  .cbd-hero {
    --hero-h: clamp(320px, 65vw, 420px);
    --content-top: 56px;
  }
}

:root {
  --navy: #0b2a4a;
  --gray-line: #dfe1e2;
  --link-blue: #1a4480;
  --pill-blue: #112e51;
}
/* ============================= */
/* SERIES HEADER */
/* ============================= */

.series-header {
  position: relative;
  margin: 0;
  padding-top: 64px;
}

.series-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #112e51;
}

.series-pill {
  position: relative;
  display: inline-block;
  background: #112e51;
  color: #fff;
  font-weight: 400;
  font-family: "Merriweather Web";
  font-size: 1.25rem;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 16px 24px;
}

.block {
  border-left: 0.5rem solid #112e51 !important;
}

/* ============================= */
/* WORKSHOP ROW */
/* ============================= */

.workshop-row {
  padding: 24px 0 0;
  margin: 0 0 64px 0;
  position: relative;
}

.workshop-row:last-child {
  margin-bottom: 0;
}

/* Keep usa-card margin rule (restored) */
@media (min-width: 40em) {
  .usa-card {
    margin-bottom: 0;
  }
}

@media (min-width: 40em) {
  .usa-card:last-child {
    margin-bottom: 0;
  }
}

/* Overlay Link (entire row clickable) */
.workshop-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
  background: transparent;
}

/* Keep standard content below overlay */
.workshop-row .usa-card,
.workshop-row .event-content,
.workshop-row .event-media {
  position: relative;
  z-index: 10;
}

/* If you ever add real buttons or links inside */
.workshop-row a:not(.workshop-overlay-link),
.workshop-row button {
  position: relative;
  z-index: 30;
}

/* Keyboard accessibility */
.workshop-overlay-link:focus-visible {
  outline: 3px solid #2491ff;
  outline-offset: 4px;
  border-radius: 6px;
}

/* ============================= */
/* FLEX LAYOUT */
/* ============================= */

.workshop-flex-row {
  display: flex;
  align-items: stretch;
}

.workshop-col {
  display: flex;
}

/* ============================= */
/* DATE */
/* ============================= */

.event-date {
  text-align: center;
  line-height: 1;
  padding: 0 !important;
}

.event-date__month {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Merriweather Web";
}

.event-date__day {
  font-size: 2.5rem;
  font-weight: 400;
  margin-top: 0.25rem;
  font-family: "Merriweather Web";
}

.sec-date__month {
  font-size: 14px;
  font-weight: 400;
  font-family: "Merriweather Web";
  color: #71767a;
}

.sec-date__day {
  font-size: 18px;
  font-weight: 400;
  margin-top: 0.25rem;
  font-family: "Merriweather Web";
  color: #71767a;
}

.custom-hr1 {
  border-style: none;
  background-color: #b2b2b2;
  height: 1px;
  width: 83px;
  margin: 8px 0 12px;
}

.custom-hr2 {
  border-style: none;
  background-color: #d9d9d9;
  height: 1px;
  width: 51px;
  margin: 8px auto;
}

/* ============================= */
/* IMAGE */
/* ============================= */

.event-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.event-media {
  padding: 0 !important;
}

.event-media__bar {
  position: relative;
  height: 8px;
  background: #d9d9d9;
  margin-top: 8px;
  overflow: hidden;
}

.event-media__bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 85px;
  background: var(--bar-color, green);
  transition: width 0.25s ease;
}

.workshop-1 {
  --bar-color: #59b9de;
}
.workshop-2 {
  --bar-color: #008480;
}
.workshop-3 {
  --bar-color: #914734;
}
.workshop-4 {
  --bar-color: #286846;
}
.workshop-5 {
  --bar-color: #face00;
}
.workshop-6 {
  --bar-color: #711e6c;
}
.workshop-7 {
  --bar-color: #fa9441;
}

/* ============================= */
/* CONTENT */
/* ============================= */

.event-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  padding-right: 6.5rem;
}

.event-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: #205493;
  transition: color 0.22s ease;
}

.event-desc {
  margin-top: 0.5rem;
}

/* ============================= */
/* BUTTONS */
/* ============================= */

.event-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-left: 4px;
}

.event-pill {
  background: #f0f0f0 !important;
  color: #1b1b1b !important;
  box-shadow: -4px 4px 0 0 var(--bar-color) !important;
  border: none !important;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 0;
  font-size: 14px;
  padding: 8px 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

/* ============================= */
/* ARROW */
/* ============================= */

.event-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #205493;
  border-radius: 4px;
  transition: color 0.22s ease;
}

.event-arrow svg {
  width: 124px;
  height: 124px;
  transition: transform 0.25s ease;
}

/* ============================= */
/* HOVER EFFECT */
/* ============================= */

.workshop-row:hover .event-arrow,
.workshop-row:focus-within .event-arrow {
  color: #0071bc;
  background: #ffffff;
}

.workshop-row:hover .event-arrow svg,
.workshop-row:focus-within .event-arrow svg {
  transform: translate(4px, -4px);
}

.workshop-row:hover .event-title,
.workshop-row:focus-within .event-title {
  color: #0071bc;
  text-decoration: underline;
}

.workshop-row:hover .event-media__bar::after,
.workshop-row:focus-within .event-media__bar::after {
  width: 100%;
}

.workshop-row:hover .event-pill,
.workshop-row:focus-within .event-pill {
  transform: translate(4px, -4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* ============================= */
/* REDUCED MOTION */
/* ============================= */

@media (prefers-reduced-motion: reduce) {
  .event-media__bar::after {
    transition: none;
  }
  .event-arrow svg {
    transform: none !important;
  }
  .event-pill {
    transition: none;
  }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 48rem) {
  .event-content {
    padding-right: 0;
  }

  .event-date {
    text-align: left;
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
  }

  .event-date__day {
    font-size: 1.75rem;
    margin-top: 0;
  }
}

/* ============================= */
/* MISC */
/* ============================= */

.hr-gray {
  background-color: #d9d9d9;
  margin-top: 24px;
}

.usa-accordion .usa-button-group {
  display: none;
}

/* === UPDATED CSS (no <span> needed for chevrons) === */

*,
*::before,
*::after {
  box-sizing: border-box;
}

.t-carousel {
  padding: 2rem 0 1rem;
}

/* VIEWPORT (hides overflow so sides peek) */
.t-carousel__viewport {
  overflow: hidden;
  /* adjust if you want more/less “peek” */
  padding-inline: clamp(24px, 6vw, 120px);
}

/* TRACK (flex row, creates real gap between cards) */
.t-carousel__track {
  display: flex;
  /* ~ 1 USWDS “column-ish” gap; if USWDS vars available this works nicely */
  gap: clamp(18px, 12.2vw, 132px);
  /* IMPORTANT: stretch makes all slides match the height of the tallest slide */
  align-items: stretch;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* SLIDE
   - Make the slide a flex container so it can vertically center its .t-card child.
   - Remove the large bottom margin so centering is visually consistent.
*/
.t-carousel__slide {
  display: flex; /* NEW: enable centering of the card within the slide */
  align-items: center; /* NEW: vertically center the card inside each slide */
  justify-content: center; /* keep card horizontally centered inside slide if narrow */
  flex: 0 0 auto;
  width: 616px;
  opacity: 1;
  border-radius: 8px;
  border-top: 8px solid;
  margin-bottom: 16px;
  margin-top: 16px;
}

/* CARD
   - Let card fill the slide height so its internal content can be centered.
   - Keep the card as a column flex and center its inner content.
*/
.t-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: clamp(1.25rem, 2.2vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers the content inside the card vertically */
  gap: 1rem;
  transition: opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  height: 100%;
  width: 100%;
  box-shadow: 0 0 8px 8px rgba(0, 0, 0, 0.1);
}

/* optional wrapper tweak if you use a visual offset for quotes */
.t-quotes {
  margin-top: -80px;
  padding-top: 160px;
}

/* active vs inactive */
.t-carousel__slide.is-active {
  opacity: 1;
}
.t-carousel__slide:not(.is-active) {
  opacity: 0.25;
}

/* content */
.t-quote {
  font-family: "Merriweather Web";
  font-size: 20px;
  line-height: 1.55;
  text-align: center;
  font-weight: 400;
  color: #1b1b1b;
}

.t-divider {
  width: 140px;
  height: 3px;
  margin: 0.25rem auto;
  background-color: #2f6f4e;
  border-radius: 999px;
}

.t-meta {
  text-align: center;
  color: #1b1b1b;
}
.t-meta strong {
  font-size: 18px;
  line-height: 31.5px;
}
.t-meta span {
  display: block;
  font-size: 18px;
  font-weight: 400;
}

/* NAV (arrows next to dots) */
.t-carousel__nav {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* Button shell */
.t-carousel__btn {
  width: 44px;
  height: 44px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative; /* needed for ::before chevron */
  border-radius: 50%;
}

.t-carousel__btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.t-carousel__btn:focus {
  outline: 0.25rem solid #2491ff;
  outline-offset: 2px;
}

/* === Chevron drawn with CSS (no <span> required) === */

.t-carousel__btn::before {
  content: "";
  width: 28px;
  height: 28px;
  border-right: 5px solid #71767a;
  border-bottom: 5px solid #71767a;
  display: block;
  border-radius: 5px;
}

.t-carousel__btn--prev::before {
  transform: rotate(135deg);
}

.t-carousel__btn--next::before {
  transform: rotate(-45deg);
}

/* Dots */
.t-carousel__dots {
  display: flex;
  gap: 0.55rem;
}
.t-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #71767a;
  cursor: pointer;
}
.t-dot[aria-current="true"] {
  background: #71767a;
}

/* Mobile */
@media (max-width: 640px) {
  .t-carousel__viewport {
    padding-inline: 16px;
  }
  .t-carousel__slide {
    width: 90vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .t-carousel__track {
    transition: none;
  }
  .t-card {
    transition: none;
  }
}

/* color utility classes */
.card--green {
  color: #286846;
}

.card--blue {
  color: #fa9441;
}

.card--yellow {
  color: #59b9de;
}

.card--pink {
  color: #286846;
}

/* small accordion tweaks you had */
.usa-accordion .usa-accordion__heading .occgov-accordion__button {
  background-color: #ffffff;
}
.usa-accordion .usa-accordion__heading .occgov-accordion__button:hover {
  background-color: #f0f0f0;
}

.usa-button--slide {
  background-color: #ae7936;
  color: #fff;
  background-image: radial-gradient(
    circle at center,
    #bd9a6e 50%,
    transparent 50%
  );
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: background-size 0.4s, color 0.4s;
  background-size: 0% 0%;
}

.usa-button--slide:hover {
  background-size: 200% 200%;
}

.usa-button--hero {
  background-color: #0071bc;
  color: #fff;
  background-image: radial-gradient(
    circle at center,
    #4d8db7 50%,
    transparent 50%
  );
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: background-size 0.4s, color 0.4s;
  background-size: 0% 0%;
}

.usa-button--hero:hover {
  background-size: 200% 200%;
  background-color: #0071bc;
}

:root {
  --occ-gold: #ae7936;
  --occ-beige: #f7f3ee;
  --occ-blue: #123854;
  --content-max: 760px;

  /* TOP rule settings (you can tweak these) */
  --rule-top-bar-thickness: 4px;
  --rule-top-bar-gap: 8px;
  --rule-top-width: 100%;
  --rule-top-max-width: var(--content-max);

  /* BOTTOM rule settings (you can tweak these) */
  --rule-bottom-bar-thickness: 3px;
  --rule-bottom-bar-gap: 6px;
  --rule-bottom-width: 85%;
  --rule-bottom-max-width: var(--content-max);

  /* --- Icon sizing: update these instead of hardcoding widths elsewhere --- */
  --quote-icon-box-width: 190px; /* width of .quote-icon-box */
  --quote-icon-box-height: 216px; /* height of .quote-icon-box (optional) */
  --quote-icon-frame-padding: 12px; /* padding on .quote-icon-frame (left + right used) */

  /* automatic computed gap used by the masks (icon width + left/right frame padding) */
  --icon-gap: calc(
    var(--quote-icon-box-width) + (var(--quote-icon-frame-padding) * 2) + 40px
  );
}

/* Pull quote section upward to overlap hero */
.quote-section {
  margin-top: -64px;
  position: relative;
  z-index: 2;
}

/* Generic base for both rules */
.occ-quote-rule {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

/* ============================
   TOP rule: ::before = top bar
             ::after  = bottom bar
   both use mask to create a center gap sized by --icon-gap
   ============================ */
.occ-quote-rule.top {
  width: var(--rule-top-width);
  margin-top: -64px;
  margin-bottom: 2.25rem;
  height: calc(var(--rule-top-bar-thickness) * 2 + var(--rule-top-bar-gap));
}

/* shared styling for top rule bars */
.occ-quote-rule.top::before,
.occ-quote-rule.top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: #112e51;
  box-sizing: border-box;

  /* cut a horizontal transparent hole in the middle equal to --icon-gap */
  -webkit-mask: linear-gradient(
    to right,
    black 0 calc(50% - (var(--icon-gap) / 2)),
    transparent calc(50% - (var(--icon-gap) / 2))
      calc(50% + (var(--icon-gap) / 2)),
    black calc(50% + (var(--icon-gap) / 2)) 100%
  );
  mask: linear-gradient(
    to right,
    black 0 calc(50% - (var(--icon-gap) / 2)),
    transparent calc(50% - (var(--icon-gap) / 2))
      calc(50% + (var(--icon-gap) / 2)),
    black calc(50% + (var(--icon-gap) / 2)) 100%
  );
}

/* top bar specifics (use variable for thickness) */
.occ-quote-rule.top::before {
  top: 150px;
  height: 8px;
  margin-bottom: 8px;
}

/* bottom bar specifics for top rule */
.occ-quote-rule.top::after {
  top: 162px;
  height: 4px;
}

/* ============================
   BOTTOM rule (separate element) — same approach but with bottom variables
   ============================ */
.occ-quote-rule.bottom {
  width: var(--rule-bottom-width);
  max-width: var(--rule-bottom-max-width);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  height: calc(
    var(--rule-bottom-bar-thickness) * 2 + var(--rule-bottom-bar-gap)
  );
}

.occ-quote-rule.bottom::before,
.occ-quote-rule.bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: var(--occ-gold);
  box-sizing: border-box;

  -webkit-mask: linear-gradient(
    to right,
    black 0 calc(50% - (var(--icon-gap) / 2)),
    transparent calc(50% - (var(--icon-gap) / 2))
      calc(50% + (var(--icon-gap) / 2)),
    black calc(50% + (var(--icon-gap) / 2)) 100%
  );
  mask: linear-gradient(
    to right,
    black 0 calc(50% - (var(--icon-gap) / 2)),
    transparent calc(50% - (var(--icon-gap) / 2))
      calc(50% + (var(--icon-gap) / 2)),
    black calc(50% + (var(--icon-gap) / 2)) 100%
  );
}

.occ-quote-rule.bottom::before {
  top: 0;
  height: var(--rule-bottom-bar-thickness);
}

.occ-quote-rule.bottom::after {
  top: calc(var(--rule-bottom-bar-thickness) + var(--rule-bottom-bar-gap));
  height: var(--rule-bottom-bar-thickness);
}

/* ============================
   Icon & stacking
   ============================ */
.quote-decor {
  display: flex;
  justify-content: center;
  margin-top: -24px;
  margin-bottom: 0;
  pointer-events: none;
  position: relative;
  z-index: 3; /* above the rules */
}

/* apply the frame padding from variable so --icon-gap is accurate */
.quote-icon-frame {
  background: transparent;
  display: inline-block;
  position: relative;
  z-index: 3;
}

/* icon box uses the same variable values so changing width updates gap automatically */
.quote-icon-box {
  width: var(--quote-icon-box-width);
  height: var(--quote-icon-box-height);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #112e51;
}

/* Quote card */
.quote-card {
  background: #f0f0f0;
  padding: 2.5rem 1.5rem 2.25rem;
  text-align: center;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

/* Quote text */

.quote-text {
  font-family: "Merriweather Web";
  font-size: 28px;
  line-height: 42px;
  max-width: 878px;
  margin: 0 auto 1.5rem;
  font-style: italic;
  padding-top: 124px;
  text-align: center;
}

blockquote::before {
  display: none;
}

/* Author block */
.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
  margin-top: 0.5rem;
}

.bottom {
  border-style: none;
  background-color: #112e51;
  height: 4px;
}
/* Responsive: stack on small screens and reduce the icon gap */
@media (max-width: 575px) {
  .quote-author {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .author-meta {
    text-align: center;
  }

  /* override computed gap with a smaller fixed value on narrow viewports */
  .occ-quote-rule.top::before,
  .occ-quote-rule.top::after,
  .occ-quote-rule.bottom::before,
  .occ-quote-rule.bottom::after {
    -webkit-mask: linear-gradient(
      to right,
      black 0 calc(50% - 45px),
      transparent calc(50% - 45px) calc(50% + 45px),
      black calc(50% + 45px) 100%
    );
    mask: linear-gradient(
      to right,
      black 0 calc(50% - 45px),
      transparent calc(50% - 45px) calc(50% + 45px),
      black calc(50% + 45px) 100%
    );
  }
}

/* Author photo + rule */
.author-photo {
  width: 109px;
  height: 109px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  object-position: top;
}

.author-vertical-rule {
  width: 3px;
  height: 109px;
  background: #112e51;
}

.author-meta {
  text-align: left;
}
.author-name {
  font-weight: 700;
  text-transform: uppercase;
  color: #1b1b1b;
  font-size: 26px;
  font-family: "Merriweather Web";
}
.author-title {
  font-size: 22px;
  color: #1b1b1b;
  font-family: "Merriweather Web";
}

/* Accessibility helper */
.usa-sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.anchor {
  display: block;
  height: 100px; /* space you want above the section */
  margin-top: -100px; /* pulls the page up so the heading appears below the space */
  visibility: hidden; /* don't show anything */
}


 .impact-main {
    background-color: #F0F0F0;
    margin-top: -120px;
}

  .impact-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    color: #000000;
        margin-bottom: 100px;
     margin-top: 120px;
  }

  /* ── Section heading with navy tab + rule ── */
  .impact-heading-wrap {
    display: flex;
    align-items: stretch;
    margin-bottom: 24px;
  }

  .impact-heading-tab {
    background-color: #112E51;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px 8px 0 0;
  }

  .impact-heading-tab h2 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
  }

  .impact-heading-rule {
    flex: 1;
    border: none;
    border-bottom: 2px solid #112E51;
    margin: 0;
    align-self: flex-end;
  }



  /* ── Main grid layout ── */
  .impact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-template-rows: auto;
    gap: 18px;
  }

  /* Hero card: left column, spans all rows */
  .impact-hero-card {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    background-color: #112E51;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    text-align: center;
    box-sizing: border-box;
    min-height: 360px;
  }

  .impact-hero-number {
    font-family: 'Merriweather Web';
    font-size: 52px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    margin: 0 0 8px 0;
  }

  .impact-hero-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 20px 0;
  }

  .impact-hero-divider {
    width: 83px;
    height: 3px;
    background-color: #0071BC;
    border: none;
    margin: 0 0 20px 0;
  }

  .impact-hero-since {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
  }

  /* Right column: 2x2 grid + full-width bottom card */
  .impact-right-col {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
  }

  /* Individual stat cards */
  .impact-stat-card {
    border-radius: 8px;
    padding: 20px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
  }

  /* Color tiers for the 4 stat cards */
  .impact-stat-card.tier-80 { background-color: #0071BC80; }
  .impact-stat-card.tier-70 { background-color: #0071BC99; }
  .impact-stat-card.tier-60 { background-color: #0071BCB2; }
  .impact-stat-card.tier-50 { background-color: #0071BCCC; }

  /* Bottom "25 Years" card spans full width */
  .impact-stat-card.span-full {
    grid-column: 1 / 3;
    background-color: #0071BC;
    padding: 24px 28px 24px 20px;
  }

  /* Icon container */
  .impact-card-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .impact-card-icon svg {
    width: 32px;
    height: 32px;
  }

  /* Card text */
  .impact-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .impact-card-number {
    font-family: 'Merriweather Web';
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0;
  }

  .impact-stat-card.span-full .impact-card-number {
    font-size: 40px;
  }

  .impact-card-desc {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 24px;
    margin: 0;
  }

  .impact-stat-card.span-full .impact-card-desc {
    font-size: 16px;
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    .impact-grid {
      grid-template-columns: 1fr;
    }

    .impact-hero-card {
      grid-column: 1;
      grid-row: auto;
      min-height: 240px;
      padding: 36px 24px;
    }

    .impact-hero-number {
      font-size: 48px;
    }

    .impact-right-col {
      grid-column: 1;
      grid-row: auto;
    }

    .impact-stat-card.span-full {
      grid-column: 1 / 3;
    }
  }

  @media (max-width: 480px) {
    .impact-right-col {
      grid-template-columns: 1fr;
    }

    .impact-stat-card.span-full {
      grid-column: 1;
    }

    .impact-card-number {
      font-size: 26px;
    }

    .impact-stat-card.span-full .impact-card-number {
      font-size: 28px;
    }
  }

