.hero {
  display: flex;
  justify-content: space-between;
  padding: 50px 60px;
  border-bottom: var(--border-standard);
  background: var(--bg-hero);
  box-shadow: var(--shadow-dark);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 60%;
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 15px;
  font-family: var(--evidence-font);
  font-size: 42px;
}

.hero p {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--text-secondary);
  font-size: 20px;
}

.hero-right {
  display: flex;
  justify-content: center;
}

.hero img {
  max-width: 400px;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-hero-card);
  filter: var(--image-filter);
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px 45px;
  border: var(--border-card-blue);
  border-radius: 12px;
  background: var(--bg-hero-card);
  box-shadow: var(--shadow-hero-card);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  color: var(--text-secondary);
}
.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-accent-blue);
  box-shadow: var(--shadow-marker-blue);
}

/* laptop 1600–1919px */
@media (min-width: 1600px) and (max-width: 1919px) {
  .hero {
    padding: 40px 50px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero img {
    max-width: 380px;
  }

  .hero-card {
    padding: 20px 35px;
  }
}

/* laptop 1366–1599px */
@media (min-width: 1366px) and (max-width: 1599px) {
  .hero {
    padding: 30px 30px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero img {
    max-width: 350px;
  }
  
  .hero-card {
    padding: 20px 35px;
  }

  .hero-card li {
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
  }
}

/* laptop 1280–1365px */
@media (min-width: 1280px) and (max-width: 1365px) {
  .hero {
    padding: 30px 30px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero img {
    max-width: 340px;
  }

  .hero-card {
    padding: 20px 25px;
  }

  .hero-card li {
    margin-bottom: 8px;
    padding-left: 15px;
    font-size: 15px;
  }
}

/* tablet */
@media (min-width: 768px) and (max-width: 1279px) and (orientation: portrait) {
  .hero {
    justify-content: center;
    padding: 50px 50px;
  }

  .hero-left {
    align-items: center;
    max-width: 100%;
  }

  .hero h1 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 38px;
  }

  .hero p {
    text-align: center;
    font-size: 20px;
  }

  .hero-right {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1279px) and (orientation: landscape) {
  .hero {
    padding: 30px 20px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero img {
    max-width: 300px;
  }

  .hero-card {
    padding: 20px 15px;
  }

  .hero-card li {
    margin-bottom: 8px;
    padding-left: 15px;
    font-size: 14px;
  }
  .hero-card li::before {
    width: 5px;
    height: 5px;
  }
}

/* smartphone */
@media (max-width: 767px) and (orientation: portrait) {
  .hero {
    justify-content: center;
    padding: 30px 10px;
  }

  .hero-left {
    align-items: center;
    max-width: 100%;
  }

  .hero h1 {
    text-align: center;
    font-size: 26px;
  }

  .hero p {
    text-align: center;
    font-size: 14px;
  }

  .hero-right {
    display: none;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    justify-content: center;
    padding: 30px 10px;
  }

  .hero-left {
    align-items: center;
    max-width: 100%;
  }

  .hero h1 {
    text-align: center;
    font-size: 26px;
  }

  .hero p {
    text-align: center;
    font-size: 14px;
  }

  .hero-right {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 915px) and (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 30px 10px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero img {
    max-width: 270px;
  }

  .hero-card {
    padding: 20px 15px;
  }

  .hero-card li {
    margin-bottom: 8px;
    padding-left: 14px;
    font-size: 13px;
  }
  .hero-card li::before {
    width: 4px;
    height: 4px;
  }
}