.ghs-slider {
  --ghs-overlay: rgba(0, 0, 0, 0.55);
  --ghs-card-bg: rgba(55, 38, 39, 0.38);
  --ghs-transition-speed: 900ms;
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #151315;
  isolation: isolate;
  outline: 0;
}

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

.ghs-slider a {
  color: inherit;
  text-decoration: none;
}

.ghs-slider button {
  font: inherit;
}

.ghs-slider__media,
.ghs-slider__shade,
.ghs-transition-wash {
  position: absolute;
  inset: 0;
}

.ghs-slider__media {
  z-index: -4;
  background: #241819;
}

.ghs-slider__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  transition: opacity var(--ghs-transition-speed) ease, transform 5600ms linear;
}

.ghs-slider__image.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.ghs-slider__image.is-leaving {
  opacity: 0;
  transform: scale(1.08);
}

.ghs-slider__shade {
  z-index: -3;
  background: var(--ghs-overlay);
}

.ghs-transition-wash {
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(110deg, rgba(32, 65, 60, 0.62), rgba(255, 255, 255, 0.28) 52%, rgba(122, 21, 26, 0.18)),
    rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  will-change: opacity;
}

.ghs-transition-wash.is-on {
  animation: ghsWash var(--ghs-transition-speed) ease both;
}

.ghs-slider__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.93fr) minmax(300px, 0.78fr);
  align-items: center;
  width: min(1230px, calc(100% - 42px));
  max-width: 1230px;
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(56px, 7vh, 90px) 0 84px;
  gap: clamp(36px, 7vw, 104px);
}

.ghs-copy {
  max-width: 690px;
  min-width: 0;
  align-self: center;
}

.ghs-copy__eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ghs-copy__title {
  margin: 0;
  color: #fff9ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5.6vw, 92px);
  font-weight: 900;
  line-height: 0.93;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.ghs-copy__subtitle {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 43px);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.ghs-copy__text {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.ghs-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 46px;
}

.ghs-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 34px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}


.ghs-pill svg,
.ghs-arrow svg,
.ghs-card-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.ghs-pill--primary {
  color: #202026;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.ghs-pill--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: translateZ(0);
}

.ghs-pill svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.ghs-slider__meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 62px;
}

.ghs-slider__dots {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ghs-dot {
  width: 20px;
  height: 8px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.32);
  border: 0;
  border-radius: 999px;
  transition: width 250ms ease, background 250ms ease;
}

.ghs-dot.is-active {
  width: 58px;
  background: #fff;
}

.ghs-slider__count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 900;
}

.ghs-slider__count span:first-child {
  font-size: 24px;
}

.ghs-slider__count span:not(:first-child) {
  color: rgba(255, 255, 255, 0.62);
}

.ghs-stats {
  align-self: center;
  justify-self: end;
  width: min(100%, 532px);
  min-width: 0;
}

.ghs-glass-card {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  transform: translateZ(0);
  will-change: opacity;
}

.ghs-glass-card--main {
  display: flex;
  /* grid-template-columns: 68px 1fr; */
  gap: 24px;
  min-height: 260px;
  padding: clamp(28px, 3vw, 44px);
  border-radius: 22px;
  flex-direction: column;
}

.ghs-glass-card--header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.ghs-card-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(147, 20, 24, 0.35);
}

.ghs-card-icon svg {
  width: 34px;
  height: 34px;
}

.ghs-card-icon i {
  font-size: 30px;
  line-height: 1;
}

.ghs-glass-card__kicker,
.ghs-glass-card__label,
.ghs-glass-card--small span {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
}

.ghs-glass-card__kicker {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: break-word;

}

.ghs-glass-card__number {
  display: block;
  margin-top: 54px;
  color: #fff;
  font-size: clamp(62px, 6vw, 86px);
  line-height: 0.84;
}

.ghs-glass-card__label {
  margin-top: 18px;
  font-size: 18px;
}

.ghs-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.ghs-glass-card--small {
  min-height: 118px;
  padding: 26px 28px;
  border-radius: 14px;
}

.ghs-glass-card--small strong {
  display: block;
  color: #fff;
  font-size: 38px;
  line-height: 0.95;
}

.ghs-glass-card--small span {
  margin-top: 12px;
  text-transform: none;
}

.ghs-arrow {
  position: absolute;
  top: 57%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.19);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.ghs-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.04);
}

.ghs-arrow svg {
  display: block;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  transform: translateX(var(--ghs-arrow-icon-shift, 0));
}

.ghs-arrow--prev {
  --ghs-arrow-icon-shift: -1px;
  left: clamp(18px, 2vw, 30px);
}

.ghs-arrow--next {
  --ghs-arrow-icon-shift: 1px;
  right: clamp(18px, 2vw, 30px);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .ghs-slider.ghs-slider--hide-arrows-tablet .ghs-arrow {
    display: none;
  }
}

@media (max-width: 767px) {
  .ghs-slider.ghs-slider--hide-arrows-mobile .ghs-arrow {
    display: none;
  }
}

.ghs-discover {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.ghs-discover::after {
  display: block;
  width: 1px;
  height: 34px;
  margin: 12px auto 0;
  content: "";
  background: linear-gradient(rgba(255, 255, 255, 0.64), transparent);
}

/* Keep the stats wrapper unpromoted so its cards can blur the hero backdrop. */
[data-ghs-animate] {
  opacity: 1;
  transition: opacity calc(var(--ghs-transition-speed) * 0.55) ease;
}

[data-ghs-animate].is-changing {
  opacity: 0;
}

[data-ghs-field][hidden],
[data-ghs-link][hidden] {
  display: none !important;
}

@keyframes ghsWash {
  0% {
    opacity: 0;
  }

  42% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .ghs-slider *,
  .ghs-slider *::before,
  .ghs-slider *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .ghs-slider__image {
    transform: none !important;
  }
}

@media (max-width: 1280px) {
  .ghs-slider__inner {
    width: min(1060px, calc(100% - 110px));
    gap: 42px;
  }
}

@media (max-width: 1060px) {
  .ghs-slider__inner {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 40px));
    gap: 32px;
    padding-top: clamp(48px, 7vh, 76px);
    padding-bottom: 118px;
  }

  .ghs-copy {
    max-width: 100%;
  }

  .ghs-stats {
    justify-self: start;
    width: min(100%, 560px);
  }

  .ghs-glass-card--main {
    min-height: 212px;
  }

  .ghs-glass-card__number {
    margin-top: 28px;
  }

  .ghs-actions {
    margin-top: 36px;
  }

  .ghs-slider__meta {
    margin-top: 42px;
  }

  .ghs-arrow {
    top: auto;
    bottom: 104px;
  }

}

@media (min-width: 768px) and (max-width: 1060px) {
  .ghs-slider.ghs-slider--hide-arrows-tablet .ghs-slider__inner {
    padding-bottom: 84px;
  }
}

@media (max-width: 700px) {
  .ghs-slider__inner {
    width: min(640px, calc(100% - 32px));
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 120px;
  }

  .ghs-copy__eyebrow {
    font-size: 11px;
  }

  .ghs-copy__title {
    font-size: clamp(39px, 14vw, 58px);
  }

  .ghs-copy__subtitle {
    font-size: clamp(24px, 8vw, 32px);
  }

  .ghs-copy__text {
    font-size: 17px;
  }

  .ghs-actions {
    align-items: stretch;
    gap: 14px;
    margin-top: 32px;
  }

  .ghs-pill {
    flex: 1 1 210px;
    min-width: 0;
    font-size: 14px;
  }

  .ghs-slider__meta {
    gap: 18px;
    margin-top: 34px;
  }

  .ghs-dot {
    width: 14px;
    height: 7px;
  }

  .ghs-dot.is-active {
    width: 42px;
  }

  .ghs-slider__count span:first-child {
    font-size: 20px;
  }

  .ghs-stats {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .ghs-glass-card--main {
    gap: 14px;
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .ghs-glass-card--header {
    flex-wrap: nowrap;
    gap: 14px;
  }

  .ghs-card-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .ghs-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .ghs-glass-card__kicker {
    min-width: 0;
    margin-top: 0;
    font-size: 12px;
    line-height: 1.25;
  }

  .ghs-glass-card__number {
    margin-top: 14px;
    font-size: clamp(42px, 13vw, 52px);
  }

  .ghs-glass-card__label {
    font-size: 15px;
    line-height: 1.3;
  }

  .ghs-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
  }

  .ghs-glass-card--small {
    min-width: 0;
    min-height: 84px;
    padding: 16px;
  }

  .ghs-glass-card--small strong {
    font-size: clamp(24px, 8vw, 30px);
    overflow-wrap: anywhere;
  }

  .ghs-glass-card--small span {
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .ghs-arrow {
    width: 48px;
    height: 48px;
    bottom: 62px;
  }

  .ghs-slider.ghs-slider--hide-arrows-mobile .ghs-slider__inner {
    padding-bottom: 72px;
  }

  .ghs-discover {
    display: none;
  }
}

@media (max-width: 470px) {
  .ghs-slider__inner {
    width: calc(100% - 28px);
    gap: 22px;
    padding-top: 34px;
  }

  .ghs-copy__title {
    font-size: clamp(34px, 13vw, 48px);
  }

  .ghs-copy__subtitle {
    font-size: clamp(22px, 7.2vw, 28px);
  }

  .ghs-copy__text {
    font-size: 16px;
  }

  .ghs-actions {
    grid-template-columns: 1fr;
  }

  .ghs-actions {
    display: grid;
  }

  .ghs-pill {
    width: 100%;
  }

  .ghs-stats-grid {
    display: grid;
    gap: 10px;
  }
}