div.lots-hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  min-height: 645px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--desktop-focus);
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0;
  clear: both;
}

div.lots-hero-section .lots-hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;  
}

div.lots-hero-section .lots-gradient-yellow {
  background: linear-gradient(212.4deg, rgba(255, 224, 0, 0) 45.65%, #FFE100 95.58%);
}

div.lots-hero-section .lots-gradient-blue {
  background: linear-gradient(198.25deg, rgba(168, 221, 250, 0) 40.46%, #2DB4FD 97.35%);
}

div.lots-hero-section .lots-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 20px 40px 20px;  
  box-sizing: border-box;
}

div.lots-hero-section .lots-hero-content {
  max-width: 850px;
  text-align: left;
}

div.lots-hero-section .lots-hero-badge-wrapper {
  margin-bottom: 15px;
  display: block;
}

div.lots-hero-section .lots-hero-badge {
  -webkit-text-fill-color: #000000;
  font-size: 54px;
  font-weight: 800;
  padding: 6px 14px;
  line-height: 1.3;
  display: inline-block;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  position: relative;
}

div.lots-hero-section .lots-hero-badge:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  content: "";
  background: #ffffff;
  z-index: -1;
}

div.lots-hero-section h2.lots-hero-title {
  font-size: 54px;
  font-weight: 800;
  -webkit-text-fill-color: #000000;
  line-height: 1.2;
  margin: 15px 0 20px 0;
}

div.lots-hero-section p.lots-hero-lead {
  font-size: 24px;
  line-height: 1.6;
  -webkit-text-fill-color: #000000;
  font-weight: 500;
  margin: 0 0 35px 0;
  max-width: 700px;
}

div.lots-hero-section .lots-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

div.lots-hero-section .cta_button {
  border-radius: 0;
  padding: 8px 16px;
}

div.lots-hero-section .lots-btn-outlined {
  background: transparent;
  -webkit-text-fill-color: #000000;
  border: 2px solid #000000;
  margin-left: 0;
}

div.lots-hero-section .lots-btn-outlined:hover {
  background: rgba(0, 0, 0, 0.08);
  -webkit-text-fill-color: #000000;
}

div.lots-hero-section .lots-arrow {
  margin-left: 2px;
}

@media (max-width: 767px) {
  div.lots-hero-section {
    background-position: var(--mobile-focus);
    align-items: flex-end;
    height: calc(100vh - 140px);
    min-height: auto;
  }
  
  {#div.lots-hero-section .lots-gradient-yellow {
    background: linear-gradient(45deg, 
      rgba(254, 230, 0, 1) 0%, 
      rgba(254, 230, 0, 0.98) 45%, 
      rgba(254, 230, 0, 0.85) 70%, 
      rgba(254, 230, 0, 0.3) 100%
    ); 
  }#}

  div.lots-hero-section .lots-gradient-blue {
    background: linear-gradient(45deg,
      rgba(45, 180, 253, 1) 0%,
      rgba(45, 180, 253, 0.98) 45%,
      rgba(45, 180, 253, 0.85) 70%,
      rgba(45, 180, 253, 0.3) 100%
    );
  }
  
  div.lots-hero-section .lots-hero-container {
    text-align: left;
  }

  div.lots-hero-section .lots-hero-content {
    text-align: left;
  }

  div.lots-hero-section .lots-hero-badge { 
    font-size: 22px; 
    padding: 6px 10px;
  }
  
  div.lots-hero-section .lots-hero-badge:before {
    height: 40px;
  }
  
  div.lots-hero-section h2.lots-hero-title { 
    font-size: 26px; 
    text-align: left;
  }

  div.lots-hero-section p.lots-hero-lead {
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
  }
  
  div.lots-hero-section .lots-hero-actions { 
    display: block;
    gap: 12px;
  }

  div.lots-hero-section .lots-hero-actions .cta_button {
    display: block;
    margin-bottom: 12px;
  }

  div.lots-hero-section .lots-hero-actions .cta_button:last-child {
    margin-bottom: 0;
  }

  div.lots-hero-section .cta_button.btn {
    display: inline-flex;
  }
}