/* Page hero — inner-page hero variant (T2-exclusive) */

@layer components {
  .page-hero {
    background: var(--color-primary);
    color: var(--color-bg);
    padding: var(--space-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%,
      rgba(0, 0, 0, 0.12) 100%
    );
    pointer-events: none;
  }
  .page-hero .container {
    position: relative;
    z-index: 1;
  }
  .page-hero h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: var(--space-xs);
  }
  .page-hero__subtitle {
    font-size: 1.0625rem;
    opacity: 0.8;
    max-width: 28rem;
    margin: 0 auto;
    line-height: 1.7;
  }

  @media (min-width: 768px) {
    .page-hero h1 {
      font-size: 3rem;
    }
  }
  @media (min-width: 1024px) {
    .page-hero h1 {
      font-size: 3.25rem;
    }
  }
}
