/**
 * medical_peptide_hormone_and_section.css — full-bleed photo hero with dark
 * tint overlay. Centered headline, subheading, translucent pill CTA.
 */

.ncm-medical-peptide {
  min-height: 903px;
  padding: 70px 110px 68px;
  background-color: var(--clr-bg-dark);
  background-position: 0% 6%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.ncm-medical-peptide__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.875rem, calc(-0.268rem + 4.464vw), 3.750rem);
  padding-top: clamp(6.250rem, calc(-0.893rem + 14.881vw), 12.500rem);
  padding-bottom: 80px;
}

.ncm-medical-peptide__heading {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin: 0 0 12px;
  max-width: 1220px;
}

.ncm-medical-peptide__heading span {
    font-family: 'Marcellus', serif;
    font-weight: inherit;
    font-size: 0.92em;
    display: inline-block;
}

.ncm-medical-peptide__subheading {
  font-family: var(--ff-primary);
  font-weight: 400;
  font-size: 21px;
  line-height: 28px;
  color: var(--clr-white);
  margin: 0;
  max-width: 1100px;
}

.ncm-medical-peptide__cta {
  margin-top: clamp(2.500rem, calc(-1.786rem + 8.929vw), 6.250rem);
}

@media (max-width: 1024px) {
  .ncm-medical-peptide {
    padding: 32px 32px 60px;
    min-height: 720px;
  }
  .ncm-medical-peptide__heading {
    font-size: 56px;
    line-height: 64px;
  }
  .ncm-medical-peptide__inner {
    padding-top: 120px;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .ncm-medical-peptide {
    padding: 24px 20px 56px;
    min-height: 580px;
  }
  .ncm-medical-peptide__heading {
    font-size: 36px;
    line-height: 42px;
  }
  .ncm-medical-peptide__subheading {
    font-size: 17px;
    line-height: 24px;
  }
  .ncm-medical-peptide__inner {
    padding-top: 80px;
    gap: 28px;
    padding-bottom: 0;
  }
  .ncm-medical-peptide__cta {
    margin-top: 24px;
  }
}