.hero {
  align-items: center;
  max-width: 1000px;
  text-align: center;
  gap: 50px;
}

.line {
  width: 100px;
  height: 1px;
  background-color: #000000;
  border-radius: 10px;
}

.hero img {
  width: 100%;
  max-width: 1000px;
  padding: 0;
}

.text {
  max-width: 680px;
  gap: 50px;
}

.quote {
  padding: 100px 0;
  max-width: 560px;
}

/* =========================
   IMAGE
   ========================= */

.image {
  width: 100%;
  align-items: center;
}

.image img {
  width: 100%;
  max-width: 680px;
  height: auto;
  padding: 0;
  display: block;
}

.suggested {
  width: 100%;
  max-width: 1000px;
  gap: 50px;
  box-sizing: border-box;
}


.suggested .holder {
  width: 100%;
  gap: 50px;
  align-items: flex-start;
}

.suggested .holder .card {
  flex: 1;
  min-width: 0;
  align-items: flex-start;
  text-align: left;
}

.suggested img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  padding: 0;
  display: block;
  transition: 0.3s ease;
}

.suggested .holder .card:hover img {
  opacity: 0.88;
  /* transform: scale(1.03); */
}

.suggested h6 {
  padding-top: 10px;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.suggested p {
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
  .hero {
    width: min(100% - 56px, 900px);
    gap: 36px;
  }

  .hero h1 {
    max-width: 820px;
  }

  .hero img {
    width: 100%;
  }

  .text {
    width: min(100% - 56px, 680px);
    gap: 34px;
  }

  .quote {
    width: min(100% - 56px, 560px);
    padding: 80px 0;
  }

  .image {
    width: min(100% - 56px, 680px);
  }

  .image img {
    width: 100%;
    max-width: 100%;
  }

  .suggested {
    width: min(100% - 56px, 900px);
    gap: 36px;
  }

  .suggested .holder {
    gap: 28px;
  }

  .suggested h6 {
    font-size: 20px;
    line-height: 25px;
  }
}

@media (max-width: 700px) {
  .hero {
    width: calc(100% - 40px);
    gap: 26px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  .hero .line,
  .line {
    width: 70px;
  }

  .hero img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .text {
    width: calc(100% - 40px);
    gap: 28px;
  }

  .text p,
  .text p.bold {
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: 0;
    text-indent: 10px;
  }

  .quote {
    width: calc(100% - 40px);
    padding: 60px 0;
  }

  .quote p.quote {
    font-size: 20px;
    line-height: 1.55;
    text-indent: 0;
  }

  .image {
    width: calc(100% - 40px);
  }

  .image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .suggested {
    width: calc(100% - 40px);
  }

  .suggested h5 {
    font-size: 20px;
    line-height: 20px;
  }

  .suggested .holder {
    flex-direction: row;
    gap: 14px;
    width: 100%;
    align-items: flex-start;
  }

  .suggested .holder .card {
    flex: 1;
    min-width: 0;
  }

  .suggested .holder .card:hover img {
    opacity: 1;
  }

  .suggested h6 {
    font-size: 13px;
    line-height: 17px;
    padding-top: 8px;
    -webkit-line-clamp: 2;
  }

  .suggested p {
    font-size: 12px;
    line-height: 16px;
    padding-top: 4px;
  }
}

@media (max-width: 420px) {
  .hero {
    width: calc(100% - 40px);
    gap: 22px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .hero h2 {
    font-size: 16px;
    line-height: 21px;
  }

  .text {
    width: calc(100% - 40px);
    gap: 24px;
  }

  .text p,
  .text p.bold {
    font-size: 17px;
    line-height: 1.6;
  }

  .quote {
    width: calc(100% - 32px);
    padding: 48px 0;
  }

  .quote p.quote {
    font-size: 19px;
  }

  .image {
    width: calc(100% - 40px);
  }

  .image img {
    width: 100%;
    height: auto;
  }

  .suggested {
    width: calc(100% - 40px);
  }

  .suggested h5 {
    line-height: 18px;
  }

  .suggested .holder {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
  }

  .suggested .holder .card {
    flex: 1;
    min-width: 0;
  }

  .suggested h6 {
    font-size: 11.5px;
    line-height: 15px;
    padding-top: 6px;
    -webkit-line-clamp: 2;
  }

  .suggested p {
    font-size: 11px;
    line-height: 14px;
    padding-top: 4px;
  }
}
