/* BLOCK SPECIFIC STYLES */

.default-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.block-hero-banner::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.default-hero-ct {
  position: relative;
  z-index: 2;
  padding: 0 var(--fs-3xl) var(--fs-3xl) 0;
  max-width: 680px;
}
.default-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: calc(var(--fs-3xl) * 2) var(--fs-3xl);
}
.default-intro-left h2 {
  font-family: "poppins","poppins Fallback", sans-serif;
  font-size: clamp(28px, 3.5vw, var(--fs-3xl));
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-eyebrow {
  font-family: "montserrat","montserrat Fallback", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
}
h1.page-title {
  font-family: "poppins","poppins Fallback", sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1.page-title .lw {
  font-weight: 200;
}
.page-subtitle,
p.page-subtitle p {
  font-family: var(--font-family-montserrat);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 16px;
}

/* Height Variations */
.block-hero-banner.height-small .default-hero {
  min-height: 300px;
}
.block-hero-banner.height-medium .default-hero {
  min-height: 500px;
}
.block-hero-banner.height-large .default-hero {
  min-height: 700px;
}

/* Alignment Variations */
.default-hero.align-left .default-hero-ct {
  text-align: left;
  margin-right: auto;
}
.default-hero.align-left .page-eyebrow {
  justify-content: flex-start;
}
.default-hero.align-left .page-subtitle {
  margin-left: 0;
  margin-right: auto;
}

.default-hero.align-center .default-hero-ct {
  text-align: center;
  margin-inline: auto;
}
.default-hero.align-center .page-eyebrow {
  justify-content: center;
}
.default-hero.align-center .page-subtitle {
  margin-inline: auto;
}

.default-hero.align-right .default-hero-ct {
  text-align: right;
  margin-left: auto;
}
.default-hero.align-right .page-eyebrow {
  flex-direction: row-reverse;
}
.default-hero.align-right .page-subtitle {
  margin-left: auto;
  margin-right: 0;
}

/* Color Variations */
.block-hero-banner.color-light {
  color: var(--color-primary);
}
.block-hero-banner.color-light::after {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
}
.block-hero-banner.color-light .page-eyebrow {
  color: rgba(0, 0, 0, 0.5);
}
.block-hero-banner.color-light .page-subtitle {
  color: rgba(0, 0, 0, 0.65);
}
.block-hero-banner.color-light .heading {
  color: var(--color-primary);
}
.block-hero-banner {
  align-items: flex-end !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  margin-block: 0;
  position: relative;
}

.block-hero-banner .content-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  padding-left: var(--wp--preset--spacing--lg);
  padding-right: var(--wp--preset--spacing--lg);
}

.block-hero-banner figure {
  margin: 0;
  max-width: 350px;
  width: 100%;
}

.block-hero-banner figure img {
  width: 100%;
}

.block-hero-banner .heading {
  color: var(--color-white);
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: -0.02em;
}

.heading .banner-mobile-text {
  display: none;
  font-style: normal;
}

@media screen and (width <= 1332px) {
  .heading .banner-mobile-text {
    display: inline-flex;
    margin-bottom: 30px;
  }

  .heading .form-label {
    display: none;
  }
}

@media screen and (width <= 767px) {
  .default-hero-ct {
    padding-left: var(--space-lg) !important;
    padding-right: var(--space-lg) !important;
  }

  .default-hero {
    min-height: 400px;
  }

  .block-hero-banner.height-small .default-hero {
    min-height: 250px;
  }
  .block-hero-banner.height-medium .default-hero {
    min-height: 400px;
  }
  .block-hero-banner.height-large .default-hero {
    min-height: 550px;
  }

  .block-hero-banner {
    height: auto;
    min-height: auto;
    padding-top: 250px;
  }

  .block-hero-banner .content-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
