.pg-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;

  min-height: min(100svh, 56.25vw);
  overflow: hidden;
  isolation: isolate;
  background-color: var(--pg-white);
  background-image: var(--pg-hero-bg, none);
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pg-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--pg-gap-10);
  width: 100%;
}

.pg-hero__titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--pg-gap-4);
  max-width: min(54rem, 52vw);
}

.pg-hero__title {
  margin: 0;
  color: var(--pg-white);
  font-family: var(--pg-font);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: var(--pg-track-wide);
}

.pg-hero .pg-title-emph {
  line-height: 0.88;
}

.pg-hero__lead {
  margin: 0;
  color: var(--pg-white);
  font-size: clamp(1.0625rem, 1.4vw, 1.375rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: var(--pg-track-base);
  max-width: min(54rem, 52vw);
}

@media (max-width: 75rem) {

  .pg-hero {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0;
    background-image: none;
  }

  .pg-hero::before {
    content: "";
    order: -1;
    height: 14rem;
    background-image: var(--pg-hero-bg, none);
    background-size: cover;
    background-position: center;
  }
  .pg-hero__content {
    gap: var(--pg-gap-8);

    padding: var(--pg-gap-6) var(--pg-gutter) var(--pg-gap-6);
  }

  .pg-hero__titles {
    gap: var(--pg-gap-4);
    max-width: min(100%, 40rem);
  }
  .pg-hero__lead {
    max-width: 100%;
  }
  .pg-hero__title,
  .pg-hero__lead {
    color: var(--pg-gabetti-gray);
  }

  .pg-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.0178em;
  }
  .pg-hero .pg-title-emph {
    font-size: clamp(2.5rem, 5.5vw, 3.5rem);
    line-height: 1;
  }
  .pg-hero__lead {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .pg-hero .pg-btn--primary {
    background: var(--pg-primary);
    color: var(--pg-white);
    font-size: 1rem;
  }
  .pg-hero .pg-btn--primary::after {
    background-color: var(--pg-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='29' viewBox='0 0 20 29' fill='none'%3E%3Cpath d='M19.5757 14.1422L8.49406 3.0605L5.43359 0L1.31183 4.1218L0.000836747 5.43279L8.96727 14.3992L0.257893 23.1086L5.43359 28.2843L19.5757 14.1422Z' fill='%23B20933'/%3E%3C/svg%3E");
  }
}
