/**
 * Frontpage hero overlay — soft value prop + package CTA.
 */

.path-frontpage .banner-inner-contents-inner.pratst-hero {
  max-width: 720px;
  width: 100%;
  text-transform: none;
  font-weight: 400;
  font-family: 'Poppins', 'Poppins-Medium', sans-serif;
  line-height: 1.2;
}

.path-frontpage .pratst-hero__title {
  position: relative;
  margin: 0 0 26px;
  padding-bottom: 18px;
  font-family: 'BebasNeue-Regular', 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.path-frontpage .pratst-hero__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 300px;
  height: 8px;
  background-color: #e40046;
}

/* Parent bar sits under the full hero stack — suppress it when title has its own. */
.path-frontpage .banner-inner-contents:has(.pratst-hero)::after {
  content: none;
}

.path-frontpage .pratst-hero__sub {
  margin: 0 0 28px;
  max-width: 34em;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  text-transform: none;
}

.path-frontpage .pratst-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 4px;
  background: #e40046;
  color: #fff !important;
  font-family: 'Poppins-Medium', 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.path-frontpage .pratst-hero__cta:hover,
.path-frontpage .pratst-hero__cta:focus {
  background: #ff1a63;
  color: #fff !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}

@media (max-width: 767px) {
  .path-frontpage .pratst-hero__title {
    font-size: clamp(34px, 10vw, 48px);
    text-align: center;
  }

  .path-frontpage .pratst-hero__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .path-frontpage .pratst-hero__sub {
    margin: 0 0 22px;
    font-size: 15px;
  }

  .path-frontpage .pratst-hero__cta {
    min-height: 44px;
    padding: 10px 22px;
    font-size: 13px;
  }
}
