@charset "UTF-8";
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
  position: relative;
}

header#site-header .row > * {
  width: auto;
}
@media screen and (max-width: 767px) {
  header#site-header .row .expand-header {
    right: 15px;
  }
}

@media screen and (max-width: 767px) {
  header#site-header.has-bg .expand-header span:before, header#site-header.has-bg .expand-header span, header#site-header.has-bg .expand-header span:after {
    background-color: rgb(55, 54, 50);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --ink: rgb(55, 54, 50);
  --ink-muted: rgba(55, 54, 50, 0.6);
  --line: rgba(55, 54, 50, 0.15);
  --paper: #fff;
  --header-h: 90px;
  --container-max: 1440px;
  --container-pad: 32px;
  --container-gutter: max((100vw - var(--container-max)) / 2, 0px);
}

.expand-subpages {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

/* hide the visually-shown label inside the button (sr-only) */
.expand-subpages > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* rotate on hover (desktop) or when expanded (mobile/click) */
nav.main > ul > li.has-child:hover > .expand-subpages,
.expand-subpages[aria-expanded=true] {
  transform: rotate(180deg);
}

header {
  transition: all 0.3s ease;
}
header#site-header.has-bg ul li.has-child > span::after, header#site-header.has-bg nav.main ul li.active.has-child > span::after {
  color: rgb(55, 54, 50);
}
header#site-header.has-bg .expand-header span {
  background-color: rgb(55, 54, 50);
}
header#site-header.has-bg .expand-header span:after {
  background-color: rgb(55, 54, 50);
}
header#site-header.has-bg .expand-header span:before {
  background-color: rgb(55, 54, 50);
}
@media screen and (max-width: 1600px) and (min-width: 1200px) {
  header#site-header nav.main {
    margin: 0 auto;
  }
  header#site-header #logo, header#site-header nav.main {
    padding-right: 0;
  }
}
@media screen and (min-width: 1400px) {
  header#site-header .expand-header {
    display: none;
  }
}
@media screen and (max-width: 1399px) {
  header#site-header .expand-header {
    display: block;
  }
}

nav.main {
  flex: 1;
}
nav.main > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.main > ul > li {
  position: relative;
}
nav.main > ul > li > span > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 14px;
  letter-spacing: 0.01em;
  position: relative;
}
nav.main > ul > li:hover > span > a::before {
  transform: scaleX(1);
}
nav.main > ul > li.active > span > a::before {
  transform: scaleX(1);
}
nav.main > ul > li.has-child > span::after {
  transform: rotate(0deg);
}
nav.main > ul > li.has-child:hover > span::after {
  transform: rotate(180deg);
}
nav.main > ul > li.has-child:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
nav.main > ul > li.has-child:hover > .sub-menu > ul > li {
  opacity: 1;
  transform: translateY(0);
}
nav.main > ul > li.has-child:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
nav.main > ul > li.has-child:focus-within > .sub-menu > ul > li {
  opacity: 1;
  transform: translateY(0);
}
nav.main > ul > li.has-child::after {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: 100%;
  height: 12px;
}
nav.main .sub-menu {
  position: absolute;
  top: var(--header-h);
  left: -25px;
  min-width: 265px;
  padding: 12px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px -10px rgba(55, 54, 50, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 40;
}
nav.main .sub-menu > ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
nav.main .sub-menu > ul > li {
  display: block;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
nav.main .sub-menu > ul > li > span > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: var(--ink);
  width: fit-content;
  transition: gap 0.25s ease;
  white-space: nowrap;
}
nav.main .sub-menu > ul > li > span > a::before {
  content: "→";
  font-size: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
nav.main .sub-menu > ul > li > span > a:hover {
  gap: 14px;
}
nav.main .sub-menu > ul > li > span > a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
nav.main .sub-menu > ul > li:nth-child(1) {
  transition-delay: 0.05s;
}
nav.main .sub-menu > ul > li:nth-child(2) {
  transition-delay: 0.09s;
}
nav.main .sub-menu > ul > li:nth-child(3) {
  transition-delay: 0.13s;
}
nav.main .sub-menu > ul > li:nth-child(4) {
  transition-delay: 0.17s;
}
nav.main .sub-menu > ul > li:nth-child(5) {
  transition-delay: 0.21s;
}

.cta-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-links svg {
  stroke: #fff;
}
.cta-links .btn.base-btn-bg-hover-solid:hover {
  background: rgba(55, 54, 50, 0.08) !important;
}

.site-search-toggle {
  background: transparent;
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  border: 1px solid #fff;
  margin-right: 10px;
}
.site-search-toggle:hover {
  background: rgba(55, 54, 50, 0.08);
}
.site-search-toggle svg {
  width: 18px;
  height: 18px;
}

.has-bg .site-search-toggle {
  border: 1px solid rgb(55, 54, 50);
}
.has-bg .site-search-toggle svg {
  stroke: rgb(55, 54, 50);
}

.reached-top .site-search-toggle svg {
  stroke: #fff;
}

.reached-top .has-bg .site-search-toggle svg {
  stroke: rgb(55, 54, 50);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover {
  background: var(--ink);
  color: var(--paper);
}

.site-search-form {
  position: absolute;
  top: 100%;
  right: 150px;
  background: var(--paper);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.6, 0.2, 0.1, 1);
  z-index: 99;
}
.site-search-form svg.search-lead {
  width: 20px;
  height: 20px;
  color: var(--ink-muted);
  flex-shrink: 0;
}
.site-search-form input[type=search] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--ink);
  padding: 4px 0;
  width: 300px;
  max-width: 100%;
}
.site-search-form input[type=search]::placeholder {
  color: var(--ink-muted);
  font-style: italic;
}
.site-search-form button[type=submit] {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-search-form.is-open {
  max-height: 120px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.site-search-form .site-search-form-inner {
  width: 100%;
  padding: 20px var(--container-pad);
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-search-form .site-search-close {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-search-form .site-search-close:hover {
  background: rgba(55, 54, 50, 0.08);
}

html body.transparent-header-lg header#site-header {
  position: sticky !important;
}

#site-content {
  margin-top: -60px;
}

@media screen and (min-width: 992px) {
  html.nav-up body.transparent-header-lg header#site-header {
    position: sticky;
  }
  #site-content {
    margin-top: -90px;
  }
}
@media (max-width: 1400px) {
  body:not(.header-03-lg):not(.header-11-lg):not(.header-12-lg):not(.header-15-lg):not(.header-16-lg):not(.header-17-lg):not(.header-19-lg):not(.header-20-lg) nav.main > ul {
    display: block;
  }
  body:not(.header-03-lg):not(.header-11-lg):not(.header-12-lg):not(.header-15-lg):not(.header-16-lg):not(.header-17-lg):not(.header-19-lg):not(.header-20-lg) nav.main > ul li {
    height: auto;
  }
  body:not(.header-03-lg):not(.header-11-lg):not(.header-12-lg):not(.header-15-lg):not(.header-16-lg):not(.header-17-lg):not(.header-19-lg):not(.header-20-lg) nav.main > ul > li > span > a {
    height: auto;
    line-height: inherit;
  }
  body:not(.header-03-lg):not(.header-11-lg):not(.header-12-lg):not(.header-15-lg):not(.header-16-lg):not(.header-17-lg):not(.header-19-lg):not(.header-20-lg) nav.main > ul > li.has-child > span::after {
    line-height: inherit;
  }
  body.header-07-lg header#site-header .has-child > .expand-subpages, body.header-07-lg header#site-header nav.main ul li.has-child > span::after {
    width: 48px;
    z-index: 999;
  }
  html:not(.reveal-out) header#site-header nav.main, html:not(.reveal-out) header#site-header nav.cta-links, html:not(.reveal-out) header#site-header .site-search, html:not(.reveal-out) header#site-header nav.secondary {
    display: none;
  }
  nav.main ul > li > span > a:hover, nav.main ul > li:hover > span > a, nav.main ul > li.open-child > span > a {
    color: #373632;
  }
  header#site-header {
    overflow: inherit;
  }
  header#site-header .expand-header {
    right: 15px;
  }
  header#site-header nav.main {
    width: 100vw;
  }
  .cta-links {
    gap: 4px;
    position: absolute;
    top: 0;
    right: 50px;
    visibility: visible;
    opacity: 1;
    width: auto !important;
    display: flex !important;
    padding-top: 10px !important;
  }
  .cta-links .btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  nav.main {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100vw;
    max-width: 650px;
    height: calc(100vh - var(--header-h));
    background: var(--paper);
    padding: 0px 0 80px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: none;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 90;
  }
  nav.main > ul {
    display: block;
    width: 100%;
  }
  nav.main > ul > li {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
    position: relative;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
  }
  nav.main > ul > li > span {
    flex: 1;
    min-width: 0;
  }
  nav.main > ul > li > span > a {
    display: block;
    padding: 22px 28px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: rgb(55, 54, 50);
  }
  nav.main > ul > li > span > a::before {
    display: none;
  }
  nav.main > ul > li > span::after {
    color: rgb(55, 54, 50) !important;
    padding-top: 25px !important;
    transform: rotate(0deg) !important;
  }
  nav.main > ul > li > .expand-subpages {
    margin-right: 20px;
    width: 48px;
    height: 48px;
  }
  nav.main > ul > li > .expand-subpages::before {
    width: 9px;
    height: 9px;
    border-width: 2px;
  }
  nav.main > ul > li > .sub-menu {
    position: static;
    flex-basis: 100%;
    width: auto;
    padding: 0;
    background: rgba(55, 54, 50, 0.04);
    border: none;
    box-shadow: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.35s cubic-bezier(0.6, 0.2, 0.1, 1);
  }
  nav.main > ul > li:hover > span > a {
    color: rgb(55, 54, 50);
  }
  nav.main > ul > li:hover > span::after {
    transform: rotate(180deg) !important;
  }
  nav.main > ul > li.has-child:hover > .expand-subpages {
    transform: none;
  }
  nav.main > ul > li.has-child > .expand-subpages[aria-expanded=true] ~ .sub-menu {
    max-height: 800px;
  }
  nav.main .sub-menu > ul {
    padding: 8px 0 16px;
  }
  nav.main .sub-menu > ul > li {
    border: none;
    border-width: 0 !important;
    opacity: 1;
    transform: none;
  }
  nav.main .sub-menu > ul > li > span > a {
    display: block;
    padding: 14px 28px 14px 56px !important;
    font-size: 17px;
    width: 100%;
  }
  nav.main .sub-menu > ul > li > span > a::before {
    display: none;
  }
  nav.main .sub-menu > ul > li > span > a:hover {
    gap: 0;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open nav.main {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .expand-subpages[aria-expanded=true] {
    transform: rotate(180deg);
  }
  .site-search-form-inner {
    padding: 15px;
  }
  .site-search-form input[type=search] {
    flex: 1 1 auto;
    min-width: 0;
  }
  .site-search-form.is-open {
    top: 60px;
  }
}
@media (max-width: 1400px) and (min-width: 992px) {
  nav.main {
    top: 98px;
  }
  .site-search-form.is-open {
    top: 90px;
  }
  .cta-links {
    padding: 25px !important;
  }
  header#site-header .expand-header {
    top: 15px;
  }
  body:not(.header-03-lg):not(.header-11-lg):not(.header-12-lg):not(.header-15-lg):not(.header-16-lg):not(.header-17-lg):not(.header-19-lg):not(.header-20-lg) nav.main > ul li {
    border-width: var(--base-border-width) 0 0;
    border-style: solid;
    border-color: rgba(var(--header-borders), 1);
  }
  body:not(.header-03-sm) nav.main ul li {
    border-width: var(--base-border-width) 0 0;
    border-style: solid;
    border-color: rgba(var(--header-borders), 1);
  }
}
@media (max-width: 991px) {
  html.reveal-out, html.reveal-out body {
    overflow: unset;
  }
  html.reveal-out header#site-header {
    overflow: inherit;
  }
  nav.main {
    position: fixed;
    top: 68px;
  }
}
@media (max-width: 767px) {
  .site-search-form {
    right: 0;
  }
}
.dropdown-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .dropdown-list {
    flex-direction: column;
    align-items: flex-end;
  }
}
.dropdown-list > div {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .dropdown-list > div {
    width: 100%;
    justify-content: space-between;
  }
  .dropdown-list > div.sort-item {
    justify-content: flex-end;
  }
}

.wrapper-dropdown {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  min-width: 270px;
  max-width: 483px;
  min-height: 44px;
  background: rgba(231, 231, 225, 0.85);
  text-align: left;
  color: #77726b;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 18px;
  margin-left: 20px;
}

.scrollable-menu {
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}

.arrow {
  margin-left: 10px;
  margin-right: 10px;
  float: right;
  rotate: 180deg;
}

.selected-display {
  margin-left: 20px;
}

svg {
  transition: all 0.3s;
}

.wrapper-dropdown::before {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -2px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #fff transparent;
}

.rotated {
  transform: rotate(-180deg);
}

.wrapper-dropdown .dropdown {
  transition: 0.3s;
  position: absolute;
  top: 120%;
  right: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 99;
  box-shadow: inherit;
  background: inherit;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  width: max-content;
  min-width: 100%;
  white-space: nowrap;
  overflow-y: scroll;
  max-height: 500px;
}

.wrapper-dropdown .dropdown li {
  padding: 0 15px;
  line-height: 45px;
  overflow: hidden;
}

.wrapper-dropdown .dropdown li:last-child {
  border-bottom: none;
}

.dropdown {
  padding: 0.5rem !important;
}

.wrapper-dropdown .dropdown li:hover {
  background-color: rgb(35, 40, 49);
  border-radius: 10px;
}

.wrapper-dropdown.active .dropdown {
  opacity: 1;
  visibility: visible;
}

.categories-filter .categories-filter__title {
  font-size: 28px;
  font-weight: bold;
}

.references section.content.references-headline:not(.usn_cmp_banner) {
  padding-top: 120px;
}
@media screen and (max-width: 992px) {
  .references section.content.references-headline:not(.usn_cmp_banner) {
    padding-top: 80px;
  }
}

.reference-banner-wr {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .reference-banner-wr .container {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .reference-banner-wr .container {
    max-width: 100%;
  }
}
.reference-banner-wr__content {
  position: relative;
  display: flex;
  padding: 10px 25px 50px;
  min-height: var(--medium-bannerPX);
}
@media screen and (max-width: 767px) {
  .reference-banner-wr__content {
    padding: 10px 0 25px;
  }
}
.reference-banner-wr__content .row {
  flex: 1;
}
.reference-banner-wr__content__box {
  z-index: 1;
  background-color: transparent;
  position: relative;
  color: #fff;
}
.reference-banner-wr__content__box h1,
.reference-banner-wr__content__box h2, .reference-banner-wr__content__box h3 {
  color: #fff;
  margin-top: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  word-break: break-word;
}
.reference-banner-wr__content__box .sub-headline {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .reference-banner-wr__content__box h1,
  .reference-banner-wr__content__box h2, .reference-banner-wr__content__box h3,
  .reference-banner-wr__content__box .sub-headline {
    margin-right: calc(var(--bs-gutter-x) * 0.5);
    margin-left: calc(var(--bs-gutter-x) * 0.5);
  }
}
.reference-banner-wr__content__info {
  display: block;
  background: rgba(255, 255, 255, 0.75);
  padding: 20px 15px;
  color: #000;
  max-width: calc(100% - var(--bs-gutter-x));
  position: relative;
  width: 600px;
}
@media screen and (max-width: 767px) {
  .reference-banner-wr__content__info {
    width: auto;
    margin-right: calc(var(--bs-gutter-x) * 0.5);
    margin-left: calc(var(--bs-gutter-x) * 0.5);
  }
}
.reference-banner-wr__content__info .content-info__item {
  margin-bottom: 10px;
}
.reference-banner-wr__content__info .content-info__item.hightlight {
  font-weight: bold;
}
.reference-banner-wr__content__info .content-info__item:last-child {
  margin-bottom: 0;
}
.reference-banner-wr__content__info .content-info__item__title {
  font-size: 20px;
  margin-bottom: 0px;
  margin-top: 0px;
  text-transform: uppercase;
  font-weight: bold;
}
.reference-banner-wr__content__info .content-info__item__text {
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.reference-banner-wr__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.reference-banner-wr__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reference-banner-wr__certificates {
  position: absolute;
  top: 25px;
  right: 25px;
}
.reference-banner-wr__certificates .cert-img {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .reference-banner-wr__certificates {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 992px) {
  .reference-banner-wr {
    padding-top: 60px;
  }
}

.blog-listing-component.space-top {
  margin-top: 30px;
}

.references section.content:not(.usn_cmp_banner) {
  padding-top: 50px;
}

.references .blog-listing-component .item-blog__certificates {
  position: absolute;
  top: 10px;
  right: 10px;
}
.references .blog-listing-component .item-blog__certificates .cert-img {
  width: 40px;
}
.references .load-more-section {
  padding: 2rem 0;
  max-width: 500px;
  margin: 0 auto;
}
.references .results-counter {
  margin-bottom: 1rem;
}
.references .results-text {
  font-size: 0.95rem;
  color: #333;
}
.references .progress-bar-container {
  margin-bottom: 1.5rem;
}
.references .progress-bar-track {
  width: 100%;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}
.references .progress-bar-fill {
  height: 100%;
  background-color: #373632;
  border-radius: 2px;
  transition: width 0.3s ease-in-out;
}
.references .load-more-container {
  padding-top: 0.5rem;
}
.references .load-more-btn {
  min-width: 280px;
  padding: 1rem 2rem;
  font-size: 1rem;
  color: #373632;
  background-color: transparent;
  border: 1px solid #373632;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.references .load-more-btn:hover {
  background-color: #373632;
  color: #fff;
}
.references .load-more-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.references .loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.references .no-results-message,
.references .error-message {
  padding: 2rem;
  text-align: center;
  width: 100%;
}
.references .error-message {
  color: #dc3545;
}

.listing_gallery .item {
  position: relative;
}
.listing_gallery .image-caption {
  position: absolute;
  right: 15px;
  bottom: 10px;
  color: #fff;
  font-style: italic;
}

.lightbox-carousel .lightbox-caption {
  bottom: 30px;
  left: 0;
  top: unset !important;
  color: #fff;
  font-style: italic;
}

.card-accordion-wr {
  /* ── Desktop grid: 3 cols, shared row panels ── */
  /* Row panels span all columns */
  /* ── Card ── */
  /* ── Shared panel (desktop row panels + mobile inline panels) ── */
  /* ── Mobile: 1-column stack ── */
  /* Inline panels hidden on desktop */
}
.card-accordion-wr .card-accordion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.card-accordion-wr .row-panel {
  grid-column: 1/-1;
}
.card-accordion-wr .card {
  cursor: pointer;
  border: none;
  border-radius: 2px;
  overflow: visible; /* allow inline panel to show below on mobile */
  background: #fff;
  transition: border-color 0.2s, transform 0.15s;
  /* On mobile each card is its own flex column containing card-content + inline-panel */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.card-accordion-wr .card-content {
  overflow: hidden;
  transition: opacity 0.2s;
  padding: 8px;
  padding-top: 0;
  margin-top: 0;
  background-color: #E8E7E1;
  padding: 10px 10px 0;
  height: 100%;
}
.card-accordion-wr .card:hover .card-content {
  /*  background: var(--panel-bg);*/
}
.card-accordion-wr .card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.card-accordion-wr .card-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-accordion-wr .card-body {
  padding: 10px 0 6px;
}
.card-accordion-wr .card-title {
  margin-bottom: 0;
}
.card-accordion-wr .card-sub {
  font-size: 0.6rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1px;
}
.card-accordion-wr .card-arrow {
  display: none;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid var(--orange);
  margin: 6px auto 0;
}
.card-accordion-wr .accordion-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.card-accordion-wr .accordion-panel.open {
  max-height: none;
  opacity: 1;
}
.card-accordion-wr .panel-inner {
  background: #E8E7E1;
  display: flex;
  min-height: 190px;
}
.card-accordion-wr .panel-img-col {
  flex: 0 0 240px;
  position: relative;
  overflow: hidden;
}
.card-accordion-wr .panel-img-fill {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.card-accordion-wr .panel-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}
.card-accordion-wr .panel-img-overlay .p-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}
.card-accordion-wr .panel-img-overlay .p-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.card-accordion-wr .panel-text-col {
  flex: 1;
  padding: 22px 26px;
}
.card-accordion-wr .panel-text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #bbb;
}
@media (min-width: 768px) {
  .card-accordion-wr .card.active .card-body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    height: 14px;
    background-color: #E8E7E1;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .card-accordion-wr {
    /* Single column — cards stack naturally */
    /* Hide the shared desktop row-panels; mobile uses inline panels inside each card */
    /* Show inline panels (hidden on desktop) */
    /* Panel stacks vertically on mobile */
  }
  .card-accordion-wr .card-content {
    height: auto;
  }
  .card-accordion-wr .card-accordion-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .card-accordion-wr .row-panel {
    display: none !important;
  }
  .card-accordion-wr .inline-panel {
    display: block !important;
  }
  .card-accordion-wr .panel-inner {
    flex-direction: column;
    min-height: unset;
  }
  .card-accordion-wr .panel-img-col {
    flex: none;
    width: 100%;
    height: 200px;
  }
  .card-accordion-wr .panel-img-fill {
    min-height: 200px;
  }
  .card-accordion-wr .panel-text-col {
    padding: 16px 18px 20px;
  }
}
.card-accordion-wr .inline-panel {
  display: none;
}

.sp-layout {
  /* ── Layout ── */
  display: flex;
  min-height: 480px;
  border-top: none;
  /* ── Menu column ── */
  /* ── Menu card item — large image with overlay ── */
  /* Full-bleed image */
  /* Dark gradient overlay — title sits at bottom */
  /* ── Content panel ── */
  /* Content image — large, fills ~55% */
  /* Content text */
  /* ── Mobile: menu on top as horizontal scroll of large image cards ── */
}
.sp-layout.menu-left {
  flex-direction: row;
}
.sp-layout.menu-right {
  flex-direction: row-reverse;
}
.sp-layout.menu-right .sp-menu-item {
  margin-right: 0px;
  margin-left: 15px;
  border-left: none;
  border-right: 3px solid transparent;
}
.sp-layout .sp-menu {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sp-layout.menu-right .sp-menu {
  border-right: none;
}
.sp-layout .sp-menu-item {
  border: none;
  border-radius: 2px;
  overflow: visible;
  transition: border-color 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 15px;
  margin-right: 15px;
  background-color: #E8E7E1;
  position: relative;
}
.sp-layout .sp-menu-item:last-child {
  margin-bottom: 0;
}
.sp-layout .mob-accordion {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.sp-layout .mob-accordion.open {
  max-height: 600px;
  opacity: 1;
  padding: 15px;
}
.sp-layout .menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-layout .menu-img {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.sp-layout .sp-menu-item:hover .menu-img {
  transform: scale(1.05);
}
.sp-layout .sp-menu-item.active .menu-img {
  transform: scale(1.05);
}
.sp-layout .menu-overlay {
  position: relative;
  padding: 8px 10px 7px;
  transition: background 0.2s;
}
@media (min-width: 768px) {
  .sp-layout .active.sp-menu-item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -15px;
    height: 100%;
    width: 20px;
    background-color: #E8E7E1;
    z-index: 99;
  }
  .sp-layout.menu-right .active.sp-menu-item::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    height: 100%;
    width: 20px;
    background-color: #E8E7E1;
    z-index: 99;
  }
}
.sp-layout .menu-sub {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.sp-layout .sp-content {
  flex: 1;
  background: var(--panel-bg);
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.sp-layout .content-pane {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
  background-color: #E8E7E1;
}
.sp-layout .menu-right .content-pane {
  transform: translateX(-12px);
}
.sp-layout .content-pane.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.sp-layout .pane-img {
  width: 100%;
  height: 260px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.sp-layout .pane-img-fill {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.08em;
  transition: transform 0.5s ease;
}
.sp-layout .content-pane.active .pane-img-fill {
  transform: scale(1.04);
}
.sp-layout .pane-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 22px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
}
.sp-layout .pane-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}
.sp-layout .pane-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}
.sp-layout .pane-text {
  flex: 1;
  padding: 18px 22px 22px;
  line-height: 1.8;
  overflow-y: auto;
}
.sp-layout .pane-text::-webkit-scrollbar {
  width: 4px;
}
.sp-layout .pane-text::-webkit-scrollbar-track {
  background: transparent;
}
.sp-layout .pane-text::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .sp-layout {
    /* Slide from top on mobile */
  }
  .sp-layout.menu-left, .sp-layout.menu-right {
    flex-direction: column;
  }
  .sp-layout .sp-menu {
    flex: none;
    width: 100%;
    flex-direction: column;
    border-right: none !important;
    border-left: none !important;
    overflow: visible;
  }
  .sp-layout .sp-menu-item {
    min-height: 80px;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-right: 0;
    margin-left: 0;
  }
  .sp-layout .sp-menu-item.active {
    border-left: none !important;
    border-right: none !important;
  }
  .sp-layout.menu-right .sp-menu-item {
    margin-right: 0;
    margin-left: 0;
  }
  .sp-layout .sp-menu-item .menu-item::after {
    display: none;
  }
  .sp-layout .sp-menu-item::after {
    display: none;
  }
  .sp-layout .sp-content {
    min-height: 360px;
  }
  .sp-layout .pane-img {
    height: 190px;
  }
  .sp-layout .content-pane {
    display: none;
  }
  .sp-layout .content-pane, .sp-layout .menu-right .content-pane {
    transform: translateY(8px);
  }
  .sp-layout .content-pane.active {
    transform: translateY(0);
  }
}

.card-accordion-wr {
  /* The Header/Trigger */
  /* The Content Area */
  /* Active State */
}
.card-accordion-wr .content-accordion-wrapper {
  margin: 0 auto;
}
.card-accordion-wr .content-accordion-item {
  border-bottom: 2px solid #000;
}
.card-accordion-wr .content-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: opacity 0.2s ease;
}
.card-accordion-wr .content-accordion-header:hover {
  opacity: 0.6;
}
.card-accordion-wr .content-accordion-title {
  margin: 0;
  text-align: left;
}
.card-accordion-wr .content-accordion-icon {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.card-accordion-wr .content-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}
.card-accordion-wr .content-accordion-inner {
  padding-bottom: 40px;
}
.card-accordion-wr .description {
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0;
  color: #333;
}
.card-accordion-wr .content-accordion-item.is-active .content-accordion-content {
  max-height: 1000px; /* Sufficient height for content */
}

.slider-accordion-wr {
  /* --- Content Pane (White area) --- */
  /* --- Image Pane (Always Visible) --- */
  /* --- Labels --- */
  /* --- MOBILE VERSION --- */
}
.slider-accordion-wr .slider-accordion-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
}
.slider-accordion-wr .slide {
  position: relative;
  display: flex;
  flex: 1;
  transition: flex var(--transition);
  cursor: pointer;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.slider-accordion-wr .slide.active {
  flex: 10;
  cursor: default;
}
.slider-accordion-wr .content-pane {
  background-color: white;
  color: #1a1a1a;
  width: 40%;
  height: 100%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  /* Hidden by default */
  display: none;
  opacity: 0;
}
.slider-accordion-wr .slide.active .content-pane {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.5s var(--transition) forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slider-accordion-wr .image-pane {
  position: relative;
  flex-grow: 1;
  height: 100%;
  min-width: 100%; /* Ensures image stays full width of the slice */
}
.slider-accordion-wr .image-pane img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.6) brightness(0.5);
  transition: filter 0.8s ease, transform 0.8s ease;
}
.slider-accordion-wr .slide.active .image-pane img {
  filter: grayscale(0) brightness(1);
}
.slider-accordion-wr .label-text {
  position: absolute;
  top: 30px;
  left: 65px;
  transform: rotate(90deg);
  transform-origin: top left;
  color: white;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 10;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s;
}
.slider-accordion-wr .slide.active .label-text {
  opacity: 0;
}
.slider-accordion-wr .category-tag {
  color: var(--accent-red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.slider-accordion-wr .content-pane h2 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.slider-accordion-wr .content-pane p {
  line-height: 1.6;
  color: #444;
  max-width: 350px;
}
@media (max-width: 768px) {
  .slider-accordion-wr .slider-accordion-wrapper {
    flex-direction: column;
  }
  .slider-accordion-wr .slide {
    flex-direction: column;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 70px; /* This ensures the "Peek" is visible when collapsed */
  }
  .slider-accordion-wr .slide.active {
    flex: 10; /* Expands much more on mobile */
  }
  .slider-accordion-wr .content-pane {
    width: 100%;
    height: auto;
    padding: 40px 30px;
    order: 2; /* Put text below image on mobile expansion */
  }
  .slider-accordion-wr .image-pane {
    height: 100%;
    order: 1;
  }
  .slider-accordion-wr .label-text {
    left: 5%;
    top: 50%;
    transform: translate(0%, -50%); /* No rotation on mobile */
    rotate: 0deg;
  }
}

:root {
  --sj-dark: #0f1a14;
  --sj-teal: #1D9E75;
  --sj-teal-light: #e1f5ee;
  --sj-teal-mid: #5DCAA5;
  --sj-text: #1a2820;
  --sj-muted: #5a6b62;
  --sj-border: rgba(15,26,20,0.1);
  --sj-border-open: rgba(29,158,117,0.25);
  --sj-surface: #f7faf8;
  --sj-tag-bg: rgba(29,158,117,0.08);
  --sj-tag-text: #0F6E56;
  --font: "DM Sans", sans-serif;
  --mono: "DM Mono", monospace;
}

.section-label {
  text-transform: uppercase;
  color: var(--sj-muted);
}

p.section-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.acc-wrap {
  border-top: 0.5px solid var(--sj-border);
}

.acc-item {
  border-bottom: 0.5px solid var(--sj-border);
}

.acc-trigger {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}

.acc-trigger:hover {
  background: transparent;
}

.acc-trigger:hover .acc-title {
  color: var(--sj-teal);
}

.acc-num {
  color: var(--sj-muted);
  min-width: 20px;
  flex-shrink: 0;
  opacity: 0.6;
}

.acc-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 0.5px solid var(--sj-border);
  background: var(--sj-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.acc-icon-wrap img {
  width: 17px;
  height: 17px;
  stroke: var(--sj-muted);
  transition: stroke 0.2s;
}

.acc-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--sj-dark);
  flex: 1;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}

.acc-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--sj-tag-bg);
  color: var(--sj-tag-text);
  flex-shrink: 0;
  transition: background 0.2s;
}

.acc-chevron {
  width: 18px;
  height: 18px;
  stroke: var(--sj-muted);
  flex-shrink: 0;
  transition: transform 0.25s ease, stroke 0.2s;
}

.acc-item.open .acc-chevron {
  transform: rotate(180deg);
  stroke: var(--sj-teal);
}

.acc-item.open .acc-title {
  color: var(--sj-teal);
}

.acc-item.open .acc-icon-wrap {
  background: var(--sj-teal-light);
  border-color: var(--sj-border-open);
}

.acc-item.open .acc-icon-wrap svg {
  stroke: var(--sj-teal);
}

.acc-item.open .acc-tag {
  background: var(--sj-teal-light);
}

.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-item.open .acc-body {
  grid-template-rows: 1fr;
}

.acc-inner {
  overflow: hidden;
}

.acc-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 4px 0 32px 76px;
}

@media (max-width: 600px) {
  .acc-content {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
}
.acc-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--sj-muted);
  margin-bottom: 16px;
}

.acc-stds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.acc-std {
  font-size: 10px;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  border: 0.5px solid var(--sj-border);
  color: var(--sj-muted);
  background: var(--sj-surface);
}

.acc-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acc-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--sj-text);
}

.acc-bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sj-teal);
  flex-shrink: 0;
  margin-top: 7px;
}

.numbers-section {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

/* Intro block — spans first 2 columns of the top row */
.numbers-intro {
  grid-column: span 2;
  padding: 8px 12px 0 4px;
}

.numbers-intro h2 {
  color: rgba(var(--base-heading), 1) !important;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.numbers-intro p {
  color: #373632;
  font-size: 16px;
}

/* Card */
.stat-card {
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  padding: 38px 24px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  max-width: 100%;
  width: 290px;
  height: 290px;
  margin-bottom: 30px;
  max-width: 100%;
}

/* Red top accent line */
.stat-card::before {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: #3F5324;
  margin-bottom: 22px;
}

.stat-number {
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 700;
  color: rgba(var(--base-heading), 1);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 30px;
  color: #373632;
  font-weight: bold;
}

/* Reveal animation */
.stat-card,
.numbers-intro {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.35s ease;
}

.numbers-section.in-view .stat-card,
.numbers-section.in-view .numbers-intro {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1512px) {
  .stat-card {
    width: auto;
  }
}
@media (max-width: 1200px) {
  .stat-number {
    font-size: 48px;
  }
  .stat-label {
    font-size: 24px;
  }
  .stat-card {
    width: auto;
    height: auto;
  }
  .stat-number {
    font-size: 48px;
  }
  .stat-label {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .numbers-section {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Responsive */
@media (max-width: 900px) {
  .numbers-section {
    grid-template-columns: repeat(2, 1fr);
  }
  .numbers-intro {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .numbers-section {
    gap: 16px;
  }
  .stat-card {
    min-height: 180px;
    padding: 30px 16px;
  }
}
.usn_cmp_referencebanner {
    padding-top: 0 !important;
}