.landing-hero {
  padding: 2rem 1rem;
  background: #fff;

  div:nth-child(1) {
    gap: 2rem;
    display: grid;
    margin: 0 auto;
    max-width: 1200px;
    grid-template-columns: 1fr 1fr;

    .left-column {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .earnings-section {
      margin-bottom: 2rem;

      .earnings-label {
        color: #222;
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
      }

      .earnings-amount {
        color: #222;
        font-weight: 700;
        font-size: 3.5rem;
        margin-bottom: 0.5rem;
      }

      .earnings-details {
        color: #666;
        font-size: 1rem;
        margin-bottom: 1.5rem;

        span {
          font-weight: 500;
          text-decoration: underline;
        }
      }
    }

    .slider-container {
      margin-bottom: 1.5rem;

      .slider {
        height: 6px;
        width: 100%;
        outline: none;
        appearance: none;
        background: #ddd;
        border-radius: 3px;

        &::-webkit-slider-thumb {
          width: 24px;
          height: 24px;
          cursor: pointer;
          appearance: none;
          background: white;
          border-radius: 50%;
          border: 2px solid #FF385C;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        &::-moz-range-thumb {
          width: 24px;
          height: 24px;
          cursor: pointer;
          background: white;
          border-radius: 50%;
          border: 2px solid #FF385C;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
      }
    }

    .learn-more {
      color: #666;
      cursor: pointer;
      font-size: 0.9rem;
      margin-bottom: 2rem;
      text-decoration: underline;
    }

    .search-box {
      background: white;
      position: relative;
      border-radius: 1rem;
      border: 1px solid #ddd;
      padding: 1rem 1rem 1rem 3rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

      .search-icon {
        top: 50%;
        left: 1rem;
        color: #666;
        font-size: 1.2rem;
        position: absolute;
        transform: translateY(-50%);
      }

      .search-location {
        color: #222;
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 0.25rem;
      }

      .search-details {
        color: #666;
        font-size: 0.9rem;
      }
    }

    .right-column {
      background: lightblue;
      .hero-image {
        width: 100%;
        height: 400px;
        border-radius: 1rem;
        overflow: hidden;

        img {
          width: 100%;
          height: 100%;
          display: block;
          object-fit: cover;
        }
      }
    }
  }

  @media (max-width: 768px) {
    div:nth-child(1) {
      gap: 1rem;
      grid-template-columns: 1fr;

      .left-column { align-items: center;      }

      .earnings-section {
        margin-bottom: 1.5rem;

        .earnings-label { font-size: 1.5rem; }

        .earnings-amount { font-size: 2.5rem; }

        .earnings-details { font-size: 0.9rem; }
      }

      .slider-container {
        margin-bottom: 1rem;

        .slider {
          height: 5px;

          &::-webkit-slider-thumb {
            width: 20px;
            height: 20px;
          }

          &::-moz-range-thumb {
            width: 20px;
            height: 20px;
          }
        }
      }

      .learn-more {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
      }

      .search-box {
        padding: 0.75rem 0.75rem 0.75rem 2.5rem;

        .search-icon { font-size: 1rem; }

        .search-location { font-size: 0.9rem; }

        .search-details { font-size: 0.8rem; }
      }

      .right-column {
        .hero-image { height: 300px; }
      }
    }
  }
}

