/* ============================================
   mnav - Custom Navigation System (no Bootstrap)
   Scoped prefix: mnav- — zero conflict with Webflow
   ============================================ */

/* --- Body offset for fixed navbar --- */
body { padding-top: 5.25rem; }
@media (max-width: 991px) { body { padding-top: 4.5rem; } }

/* ============================================
   Navbar Container
   ============================================ */
.mnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  height: 5.25rem;
  transition: background 0.3s ease, height 0.3s ease;
  font-family: inherit;
}
.mnav.dark {
  background: #000;
}

.mnav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 3rem;
}
@media (max-width: 991px) {
  .mnav { height: 4.5rem; }
  .mnav-inner { padding: 0 1.5rem; }
}

/* --- Brand --- */
.mnav-brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  color: #2b2b2b;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 2.5rem;
  transition: color 0.3s;
}
.mnav-brand:hover { color: #2F4A6D; }
.mnav.dark .mnav-brand { color: #fff; }
.mnav-brand-mark {
  color: #1E2A3A;
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef3ff;
  transition: transform .3s ease, background .3s ease;
}
.mnav-brand-mark svg { width: 2.15rem; height: 2.15rem; }
.mnav-brand:hover .mnav-brand-mark { transform: rotate(12deg); background: #dfe8ff; }
.mnav.dark .mnav-brand-mark { color: #fff; background: rgba(255,255,255,.1); }
.mnav-brand-name { letter-spacing: -.02em; }

/* ============================================
   Desktop Menu
   ============================================ */
.mnav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  list-style: none;
  margin: 0; padding: 0;
}
@media (max-width: 991px) {
  .mnav-menu { display: none; }
}

/* --- Level 1: Top-level nav item --- */
.mnav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.mnav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.25em;
  color: #2b2b2b;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
}
.mnav-link:hover,
.mnav-item.open > .mnav-link {
  color: #2F4A6D;
}
.mnav.dark .mnav-link { color: #cacaca; }
.mnav.dark .mnav-link:hover,
.mnav.dark .mnav-item.open > .mnav-link {
  color: #2F4A6D;
}

/* Arrow indicator */
/* ============================================
   Level 2: Dropdown Panel
   ============================================ */
.mnav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: min(25rem, calc(100vw - 2rem));
  min-width: 20rem;
  max-height: calc(100vh - 6.5rem);
  overflow-y: auto;
  background: #1E2A3A;
  padding: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 22px 60px rgba(0,0,0,.34);
  z-index: 999;
  border-radius: 0 0 12px 12px;
}
.mnav-item:last-child > .mnav-panel {
  right: 0;
  left: auto;
}
.mnav-item.open > .mnav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 992px) {
  .mnav-item:hover > .mnav-panel,
  .mnav-item:focus-within > .mnav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* --- Collapsible group (Level 2) --- */
.mnav-group-title {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  color: #ddd;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 0.85rem;
  cursor: default;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
  font-family: inherit;
  text-align: left;
}
.mnav-group-title:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
}

/* Group arrow indicator */
/* Group body — shown immediately with its parent dropdown */
.mnav-group-body {
  max-height: none;
  overflow: visible;
}
.mnav-group-body .mnav-group-link:first-child {
  margin-top: 0.15rem;
}
.mnav-group-body .mnav-group-link:last-child {
  margin-bottom: 0.15rem;
}

/* Group link (Level 3) */
.mnav-group-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  padding: 0.72rem 0.85rem 0.72rem 1.15rem;
  text-decoration: none;
  border-radius: 8px;
  transition: color .18s, background .18s;
}
.mnav-group-link:hover {
  color: #2F4A6D;
  background: rgba(47,74,109,.1);
}

/* Direct link (no group) */
.mnav-panel-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  padding: 0.85rem;
  text-decoration: none;
  border-radius: 8px;
  transition: color .18s, background .18s;
}
.mnav-panel-link:hover {
  color: #2F4A6D;
  background: rgba(47,74,109,.1);
}
.mnav-menu-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  gap: 0.25rem;
}
.mnav-menu-label {
  color: currentColor;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}
.mnav-menu-description {
  display: -webkit-box;
  overflow: hidden;
  color: #aab8b4;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* --- Panel divider --- */
.mnav-panel-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0.45rem 0.85rem;
}

/* ============================================
   Mega Dropdown (Research menu)
   ============================================ */
.mnav-item.mega {
  position: static;
}
.mnav-item.mega > .mnav-panel {
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  padding: 2.5rem 3rem;
  border-radius: 0 0 8px 8px;
}

.mnav-mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1.5rem 2rem;
  max-width: 90rem;
  margin: 0 auto;
}

/* Mega groups use the same .mnav-group structure, slightly adjusted */
.mnav-item.mega .mnav-group-title {
  padding: 0 0 0.5rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ddd;
  cursor: pointer;
}
.mnav-item.mega .mnav-group-title:hover {
  color: #2F4A6D;
  background: none;
}
.mnav-item.mega .mnav-group-body {
  max-height: none;
  overflow: visible;
}
.mnav-item.mega .mnav-group.expanded > .mnav-group-body {
  max-height: none;
}
.mnav-item.mega .mnav-group-link {
  padding: 0.24rem 0;
  color: #999;
  font-size: 0.85rem;
}

/* ============================================
   Navbar Right Section
   ============================================ */
.mnav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 991px) {
  .mnav-right { display: none; }
}

/* Language switcher */
.mnav-lang {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 8px;
  font-size: 12px;
  background: transparent;
  border: 1px solid #E6E1D9;
  border-radius: 999px;
  padding: 3px;
  transition: background 0.3s;
  cursor: pointer;
}

.mnav.dark .mnav-lang { background: rgba(255,255,255,0.08); }
.mnav-lang .active,
.mnav-lang .inactive {
  min-width: 2rem;
  padding: 5px 8px;
  text-align: center;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  line-height: 1.4;
}
.mnav-lang .active {
  background: #4B5563;
  color: #fff;
  border-bottom: none;
  padding-bottom: 4px;
}
.mnav.dark .mnav-lang .active {
  background: #fff;
  color: #000;
}
.mnav-lang .inactive {
  color: #65716d;
}
.mnav.dark .mnav-lang .inactive { color: #999; }
.mnav-lang .sep { display: none; }

/* Search */
.mnav-search {
  display: flex;
  align-items: center;
  margin-right: 6px;
}
.mnav-search input {
  background: rgba(0,0,0,0.05);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  width: 150px;
  outline: none;
  transition: width 0.3s, background 0.3s, border-color 0.3s;
  color: #2b2b2b;
  font-family: inherit;
}
.mnav-search input:focus {
  width: 200px;
  background: #fff;
  border-color: #2F4A6D;
}
.mnav.dark .mnav-search input {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.mnav.dark .mnav-search input::placeholder {
  color: rgba(255,255,255,0.45);
}

/* Contact button */
.mnav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1E2A3A;
  color: #fff;
  border: 1px solid #1E2A3A;
  border-radius: 100vw;
  padding: 0.42rem 0.9rem 0.42rem 1.05rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.mnav-btn::after {
  display: none;
}
.mnav-btn:hover {
  background: #2F4A6D;
  color: #1E2A3A;
  border-color: #2F4A6D;
  box-shadow: 0 4px 12px rgba(47,74,109,.2);
  transform: translateY(-1px);
}
.mnav-btn:hover::after {
  transform: translateX(3px);
}
.mnav.dark .mnav-btn {
  background: #1E2A3A;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.mnav.dark .mnav-btn:hover {
  background: #2F4A6D;
  color: #1E2A3A;
  border-color: #2F4A6D;
  box-shadow: 0 4px 12px rgba(47,74,109,.22);
}

/* ============================================
   Mobile
   ============================================ */
.mnav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 5px;
  margin-left: auto;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
}
.mnav-mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #2b2b2b;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.mnav.dark .mnav-mobile-toggle span {
  background: #fff;
}
.mnav-mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mnav-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mnav-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile lang */
.mnav-mobile-lang {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 2.5rem;
  height: 2.25rem;
  margin-left: auto;
  margin-right: .25rem;
  padding: 0 .65rem;
  color: #435166;
  background: rgba(255, 255, 255, .48);
  border: 1px solid rgba(67, 81, 102, .18);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: .75rem;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .04em;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.mnav-mobile-lang:hover {
  color: #1E2A3A;
  background: rgba(255, 255, 255, .82);
  border-color: rgba(67, 81, 102, .3);
}
.mnav.dark .mnav-mobile-lang {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22);
}

.mnav-mobile-lang .active,
.mnav-mobile-lang .inactive {
  padding: 0;
  line-height: 1;
}
.mnav-mobile-lang .active {
  display: none;
}
.mnav-mobile-lang .inactive {
  color: inherit;
}
.mnav-mobile-lang .sep { display: none; }


/* Mobile drawer */
.mnav-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.25s;
}
.mnav-drawer-overlay.show {
  display: block;
  opacity: 1;
}

.mnav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 360px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 1.5rem;
}
.mnav-drawer.show {
  transform: translateX(0);
}

.mnav-drawer-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}
.mnav-drawer-close button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: #2b2b2b;
  line-height: 1;
}

/* Mobile accordion */
.mnav-drawer-item {
  border-bottom: 1px solid #eee;
}
.mnav-drawer-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: #2b2b2b;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.mnav-drawer-trigger .arrow {
  transition: transform 0.25s;
  font-size: 0.65rem;
  opacity: 0.5;
}
.mnav-drawer-trigger.open .arrow {
  transform: rotate(180deg);
}

.mnav-drawer-sub {
  display: none;
  padding: 0 0 0.6rem 0.35rem;
}
.mnav-drawer-sub.open {
  display: block;
}
/* Mobile: group titles inside drawer */
.mnav-drawer-sub .mnav-group-title {
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: #2b2b2b;
  font-weight: 600;
}
.mnav-drawer-sub .mnav-group-title:hover {
  color: #000;
  background: rgba(0,0,0,0.03);
}
.mnav-drawer-sub .mnav-group-body {
  padding-left: 0.35rem;
}
.mnav-drawer-sub .mnav-group-link {
  padding: 0.65rem 0.7rem;
  color: #4B5563;
}
.mnav-drawer-sub .mnav-group-link:hover {
  color: #2F4A6D;
  background: #eef3ff;
}
.mnav-drawer-sub .mnav-panel-link {
  padding: 0.7rem;
  color: #4B5563;
}
.mnav-drawer-sub .mnav-menu-description {
  color: #71807c;
}
.mnav-drawer-link {
  display: block;
  padding: 0.85rem 0;
  color: #2b2b2b;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

/* Mobile bottom section */
.mnav-drawer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.mnav-drawer-bottom .mnav-search {
  margin-bottom: 0.75rem;
}
.mnav-drawer-bottom .mnav-search input {
  width: 100%;
}
.mnav-drawer-bottom .mnav-btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
  .mnav-mobile-toggle { display: flex; }
  .mnav-mobile-lang { display: flex; }
  .mnav-drawer { display: block; }
}

@media (max-width: 479px) {
  .mnav-inner { padding: 0 1rem; }
  .mnav-brand { gap: .5rem; margin-right: .5rem; font-size: 16px; }
  .mnav-brand-mark { width: 2rem; height: 2rem; }
  .mnav-brand-mark svg { width: 1.8rem; height: 1.8rem; }
  .mnav-mobile-toggle { margin-left: 0; margin-right: -.5rem; }
}

@media (min-width: 992px) {
  .mnav-drawer,
  .mnav-drawer-overlay {
    display: none !important;
  }
}

/* ============================================
   Footer
   ============================================ */
.fsite {
  background: #0a0a0a;
  color: #888;
  font-family: inherit;
  padding: 4rem 2rem 2rem;
}
.fsite a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.fsite a:hover {
  color: #2F4A6D;
}

.fsite-inner {
  max-width: 80rem;
  margin: 0 auto;
}

/* Sitemap grid — 3 columns */
.fsite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1.5rem;
  margin-bottom: 3rem;
}

/* Column */
.fsite-col-wide {
  grid-column: span 2;
}

/* Column title (button for mobile accordion) */
.fsite-col-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding: 0 0 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: inherit;
  text-align: left;
  cursor: default;
}
.fsite-col-title:hover {
  color: #2F4A6D;
}

/* Toggle arrow (mobile only) */
.fsite-toggle-arrow {
  display: none;
  margin-left: auto;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s;
  opacity: 0.5;
}

/* Group within column */
.fsite-group-name {
  color: #2F4A6D;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0.75rem 0 0.35rem;
}
.fsite-group-name:first-child {
  margin-top: 0;
}

.fsite-link {
  display: block;
  font-size: 0.84rem;
  padding: 0.22rem 0;
  color: #777;
  transition: color 0.15s, padding-left 0.15s;
}
.fsite-link:hover {
  color: #2F4A6D;
  padding-left: 4px;
}

/* Spacing between major categories within a column */
.fsite-col > .fsite-col-body {
  margin-bottom: 1.5rem;
}
.fsite-col > .fsite-col-body:last-child {
  margin-bottom: 0;
}

/* Bottom bar */
.fsite-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.fsite-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.fsite-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s;
}
.fsite-socials a:hover {
  background: rgba(47,74,109,0.15);
  color: #2F4A6D;
}

.fsite-copy {
  font-size: 0.8rem;
  color: #555;
  text-align: center;
  flex: 1;
}

.fsite-records {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.35rem;
  margin: 0.4rem auto 0;
}

.fsite-record-link {
  color: inherit;
  white-space: nowrap;
  transition: color 0.15s;
}

.fsite-police-record {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.fsite-police-record img {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.fsite-record-link + .fsite-record-link {
  position: relative;
}

.fsite-record-link + .fsite-record-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.5rem;
  width: 1px;
  height: 0.75rem;
  background: currentColor;
  opacity: 0.3;
  transform: translateY(-50%);
}

.fsite-record-link:hover {
  color: #2F4A6D;
}

/* ============================================
   Footer — Mobile
   ============================================ */
@media (max-width: 1023px) {
  .fsite-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fsite-col-wide {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .fsite {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  .fsite-records {
    flex-direction: column;
  }
  .fsite-record-link + .fsite-record-link::before {
    display: none;
  }
  .fsite-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .fsite-col-wide {
    grid-column: span 1;
  }

  /* Mobile accordion */
  .fsite-col {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .fsite-col-title {
    cursor: pointer;
    padding: 0.85rem 0;
    margin-bottom: 0;
    border-bottom: none;
  }
  .fsite-toggle-arrow {
    display: inline-block;
  }
  .fsite-open .fsite-toggle-arrow {
    transform: rotate(-135deg);
    opacity: 0.8;
  }

  .fsite-col-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .fsite-open .fsite-col-body {
    max-height: 2000px;
    padding-bottom: 0.75rem;
  }

  .fsite-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 1.5rem;
  }

}

/* ============================================
   Fix: CTA card links not clickable
   ============================================ */
.cta_wrap .lottie_wrap {
  pointer-events: none;
}
.cta_wrap .lottie_wrap * {
  pointer-events: none;
}

/* ============================================
   Global responsive design system
   ============================================ */
:root {
  --site-max-width: 82rem;
  --site-reading-width: 46rem;
  --site-gutter: clamp(1.25rem, 3.2vw, 3.25rem);
  --site-section-space: clamp(4.25rem, 6vw, 5.5rem);
  --site-section-space-sm: clamp(3rem, 4vw, 4.25rem);
  --site-display-size: clamp(3.1rem, 5.4vw, 5.5rem);
  --site-h1-size: clamp(2.75rem, 4.7vw, 4.8rem);
  --site-h2-size: clamp(2.15rem, 3.65vw, 3.75rem);
  --site-h3-size: clamp(1.45rem, 2.2vw, 2.15rem);
  --site-eyebrow-size: clamp(.72rem, .78vw, .8rem);
  --site-body-size: clamp(.96rem, 1vw, 1.04rem);
  --site-card-pad: clamp(1.35rem, 2.4vw, 2.5rem);
  --site-radius: clamp(.65rem, 1vw, 1rem);
  --site-text: #4B5563;
  --site-muted: #7A8699;
  --site-accent: #2F4A6D;
}

html {
  font-size: clamp(15px, .18vw + 14.4px, 17px);
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 320px;
  color: var(--site-text);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

*, *::before, *::after { box-sizing: border-box; }
img, video, svg, canvas { max-width: 100%; }
img, video { height: auto; }

:where(p, li) { overflow-wrap: break-word; }
:where(main p) { font-size: var(--site-body-size); font-weight: 400; line-height: 1.72; }
:where(main h1, main h2, main h3, main h4) {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.heading-style-h1,
.u-text-h1 { font-size: var(--site-h1-size); font-weight: 600; line-height: 1; letter-spacing: -.045em; }
.heading-style-h2,
.u-text-h2 { font-size: var(--site-h2-size); font-weight: 600; line-height: 1.06; letter-spacing: -.038em; }
.heading-style-h3,
.u-text-h3 { font-size: var(--site-h3-size); font-weight: 600; line-height: 1.14; letter-spacing: -.025em; }
.heading-style-h4,
.u-text-h4 { font-size: clamp(1.4rem, 2vw, 2.1rem); line-height: 1.2; letter-spacing: -.02em; }
.text-size-xlarge { font-size: clamp(1.15rem, 1.8vw, 1.55rem); line-height: 1.5; }
.text-size-large { font-size: clamp(1.05rem, 1.35vw, 1.25rem); line-height: 1.65; }

.u-container,
.fsite-inner {
  width: 100%;
  max-width: var(--site-max-width);
  margin-inline: auto;
}
.u-container { padding-inline: var(--site-gutter); }

[data-padding-top="main"] { padding-top: var(--site-section-space); }
[data-padding-bottom="main"] { padding-bottom: var(--site-section-space); }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid #6D8DB5;
  outline-offset: 3px;
}

:where(.btn_main_wrap, .btn_main_wrap---secondary, .mnav-cta) {
  min-height: 2.85rem;
}
:where(.btn_main_layout, .btn_main_text) { line-height: 1.2; }

.card_layout,
.cta_card_content,
.area_research_tc_card_layout { gap: clamp(1rem, 2vw, 1.75rem); }

.fsite {
  padding: clamp(3.25rem, 6vw, 5.5rem) var(--site-gutter) clamp(1.5rem, 3vw, 2.5rem);
}
.fsite-grid { gap: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 3rem); }
.fsite-col-title { font-size: clamp(.9rem, 1vw, 1rem); line-height: 1.4; }
.fsite-link { padding-block: .3rem; font-size: clamp(.82rem, .9vw, .9rem); line-height: 1.45; }

@media (max-width: 991px) {
  :root { --site-gutter: clamp(1.25rem, 4vw, 2.25rem); }
  .u-grid-desktop { grid-template-columns: 1fr; }
  .u-grid-column-3,
  .area_research_tc_card_layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .masthead_main_container---xl.u-container,
  .masthead_main_container---reg.u-container { min-height: auto; padding-top: clamp(5rem, 10vw, 7rem); padding-bottom: var(--site-section-space-sm); }
  .masthead_paragraph { max-width: var(--site-reading-width); }
}

@media (max-width: 767px) {
  :root {
    --site-gutter: 1.25rem;
    --site-card-pad: 1.25rem;
    --site-section-space: 3rem;
    --site-section-space-sm: 2.35rem;
    --site-h1-size: clamp(2.35rem, 10.5vw, 3.15rem);
    --site-h2-size: clamp(1.95rem, 8.5vw, 2.6rem);
    --site-h3-size: clamp(1.35rem, 6vw, 1.8rem);
    --site-body-size: .96rem;
  }
  html { scroll-padding-top: 4.75rem; }
  .u-grid-column-2,
  .u-grid-column-3,
  .card_layout,
  .cta_card_content,
  .area_research_tc_card_layout { grid-template-columns: minmax(0, 1fr); }
  .masthead_main_wrap---main { height: auto; min-height: 39rem; }
  .masthead_slide_contain { min-height: 39rem; padding-top: 6rem; padding-bottom: 4rem; }
  .fsite-grid { grid-template-columns: 1fr; }
  .fsite-col-title { min-height: 2.75rem; }
  .fsite-link { min-height: 2.25rem; display: flex; align-items: center; }
  input, select, textarea { font-size: 16px !important; }
}

@media (max-width: 479px) {
  .heading-style-h1,
  .u-text-h1 { font-size: clamp(2.35rem, 12vw, 3.25rem); }
  .heading-style-h2,
  .u-text-h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .fsite { padding-inline: var(--site-gutter); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
