/**
 * Owner-managed Home Hero.
 *
 * The image owns the composition. Copy sits on a separate high-contrast
 * charcoal ground rather than over uncontrolled campaign photography.
 * Width and height come from WordPress attachment metadata: no arbitrary
 * website Hero crop is imposed here.
 */

.pa-home-hero {
  margin-block-end: var(--pa-space-8);
  overflow: hidden;
  border-radius: var(--pa-radius);
  background: var(--pa-charcoal);
  color: var(--pa-text-invert);
}

.pa-home-hero__picture,
.pa-home-hero__image {
  display: block;
  width: 100%;
}

.pa-home-hero__image {
  height: auto;
}

.pa-home-hero__content {
  padding: var(--pa-space-6);
}

.pa-home-hero__headline {
  margin: 0;
  color: var(--pa-text-invert);
  font-family: var(--pa-font-heading);
  font-size: var(--pa-text-xl);
  font-weight: var(--pa-weight-bold);
  line-height: var(--pa-leading-tight);
}

.pa-home-hero__support {
  max-width: none;
  margin: var(--pa-space-3) 0 0;
  color: var(--pa-text-invert);
  font-size: var(--pa-text-base);
}

.pa-home-hero__cta {
  margin-block-start: var(--pa-space-4);
}

@media (min-width: 900px) {
  .pa-home-hero__content {
    padding: var(--pa-space-8);
  }

  .pa-home-hero__headline {
    font-size: var(--pa-text-2xl);
  }
}
