/* ZT Peptide hero cleanup: remove the source banner's embedded text. */
.tt-hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 86% 18%, rgba(245, 158, 11, 0.22), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(16, 185, 129, 0.24), transparent 36%),
    linear-gradient(135deg, #042f2e 0%, #075e54 48%, #0f766e 100%);
}

.tt-hero__bg,
.tt-hero__thumbs {
  display: none !important;
}

.tt-hero__inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr) !important;
  gap: clamp(48px, 6vw, 88px) !important;
}

.tt-hero__content {
  grid-column: 1;
  grid-row: 1;
  max-width: 700px;
}

.tt-hero__inner::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: 100%;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  background: #f6e8cf url('/tt-assets/semaglutide.jpg') center / cover no-repeat;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.tt-hero h1 {
  max-width: 660px;
  font-size: clamp(38px, 4vw, 56px) !important;
  line-height: 1.08 !important;
  text-shadow: none !important;
}

.tt-hero__content > p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82) !important;
}

.tt-hero__stats div {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

@media (max-width: 899px) {
  .tt-hero {
    min-height: auto;
  }

  .tt-hero__inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .tt-hero__content,
  .tt-hero__inner::after {
    grid-column: 1;
  }

  .tt-hero__content {
    grid-row: 1;
  }

  .tt-hero__inner::after {
    grid-row: 2;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    background-position: center 42%;
  }
}

@media (max-width: 560px) {
  .tt-hero {
    padding: 56px 0 42px !important;
  }

  .tt-hero h1 {
    font-size: clamp(30px, 9.5vw, 40px) !important;
  }

  .tt-hero__inner::after {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }
}
