.hsp-hero .shimmer-gold {
  background: linear-gradient(
    90deg,
    var(--e-global-color-644d5a5) 0%,
    var(--e-global-color-f47ada8) 50%,
    var(--e-global-color-644d5a5) 100%
  );

  background-size: 200% auto;
  background-position: 0% center;

  animation: shimmer 4s linear infinite;

  display: inline-block;

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hsp-hero .hsp-inner {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto auto;
  grid-template-areas:
    "hsp-eyebrow hsp-eyebrow"
    "hsp-title hsp-image"
    "hsp-desc hsp-image"
    "hsp-buttons hsp-image"
    "hsp-stats hsp-stats";
  gap: 20px;
  grid-auto-flow: row;
  justify-content: end;
  align-items: center;
}

.hsp-hero .hsp-inner > * {
  min-width: 0;
}

@media (min-width: 768px) and (max-width: 992px) {
  .hsp-hero .hsp-inner {
    grid-template-areas:
      "hsp-eyebrow hsp-eyebrow"
      "hsp-title hsp-image"
      "hsp-desc hsp-image"
      "hsp-buttons hsp-buttons"
      "hsp-stats hsp-stats";
  }
  .elementor-5175 .elementor-element.elementor-element-50d4b4b .hsp-title {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}

@media (max-width: 767px) {
  .hsp-hero .hsp-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-areas:
      "hsp-eyebrow"
      "hsp-title"
      "hsp-desc"
      "hsp-buttons"
      "hsp-stats"
      "hsp-image";
  }
}

.hsp-eyebrow {
  grid-area: hsp-eyebrow;
}

.hsp-title {
  grid-area: hsp-title;
}

.hsp-image {
  grid-area: hsp-image;
  justify-self: end;
}

@media (min-width: 768px) and (max-width: 992px) {
  .hsp-image {
    padding-left: 15px;
  }
}

.hsp-desc {
  grid-area: hsp-desc;
}

.hsp-buttons {
  grid-area: hsp-buttons;
}

.hsp-stats {
  grid-area: hsp-stats;
}

.hsp-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.hsp-eyebrow.has-line::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  flex-shrink: 0;
}

.hsp-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hsp-image-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 600px;
  aspect-ratio: 3/4;
}

@media (max-width: 767px) {
  .hsp-image-wrap {
    height: 400px;
  }
}

.hsp-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hsp-img-deco {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 160px;
  height: 160px;
  border: 1px solid #e8e0d5;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .hsp-img-deco {
    width: 96px;
    height: 96px;
  }
}

.hsp-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .hsp-stats {
    flex-direction: column;
    margin-top: 28px;
    margin-bottom: 48px;
  }
}

.hsp-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 40px 0 0;
  margin-right: 40px;
  border-width: 0 1px 0 0;
  border-style: solid;
  border-color: #d4ccc3;
}

@media (max-width: 767px) {
  .hsp-stat {
    padding: 16px 0;
    margin-right: 0;
    border-width: 0 0 1px 0;
  }
}

.hsp-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

@media (max-width: 767px) {
  .hsp-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.hsp-stat-value {
  font-size: 28px;
  line-height: 1;
  color: #1a1614;
}

.hsp-stat-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b7355;
}

.hsp-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .hsp-buttons {
    gap: 40px;
    margin-top: 0;
  }
}

.hsp-btn-primary {
  position: relative;
  overflow: hidden;
  transition:
    background 500ms ease-out,
    color 500ms ease-out;
}

.hsp-btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: transform 1000ms ease-out;
}

.hsp-btn-primary:hover .elementor-button-icon {
  transform: translateX(5px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hsp-btn-primary .elementor-button-icon {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hsp-btn-primary:hover::before {
  transform: translateX(100%);
}

.hsp-btn-secondary {
  text-decoration: underline !important;
  text-underline-position: under !important;
}

@media (max-width: 767px) {
  .hsp-btn-primary,
  .hsp-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

.hsp-btn-primary .e-font-icon-svg {
  fill: currentColor;
}

.hsp-btn-primary .e-font-icon-svg path {
  fill: currentColor;
}

.hsp-desc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hsp-desc ul li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 8px;
}

.hsp-desc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 28px;
  height: 1px;
  background-color: #c7a27a;
}
