/**
 * SolidHero — ported 1:1 from components/sections/SolidHero.module.css.
 * Module root .hero → .s-solid-hero; other module classes scoped under it.
 * .eyebrow / .lede / .title here are the MODULE-scoped versions (they override
 * the global .eyebrow/.lede via the extra .s-solid-hero specificity).
 * Next <Image fill priority> → a plain <img class="mediaImg"> absolutely filling
 * .media (inset:0), preserving object-fit/position.
 */
.s-solid-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--c-green);
  color: var(--c-text-on-dark);
  /* Clear the fixed overlay header, then breathe. */
  padding-block: clamp(7.5rem, 14vw, 11rem) clamp(3.5rem, 8vw, 6rem);
}

/* Documentary photo on the right, faded into the green so the copy side stays
   solid. Sits under the texture lines. */
.s-solid-hero .media {
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(46%, 54vw, 60%);
  z-index: 0;
  pointer-events: none;
}
.s-solid-hero .mediaImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
/* Green wash that fades the left edge fully into the masthead and tones the
   rest so the photo reads as part of the brand block, not a separate banner. */
.s-solid-hero .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--c-green) 4%,
    color-mix(in srgb, var(--c-green) 62%, transparent) 48%,
    color-mix(in srgb, var(--c-green) 32%, transparent) 100%
  );
}

/* Faint diagonal scanlines on the right, like the mockups. */
.s-solid-hero .texture {
  position: absolute;
  inset: 0 -8% 0 auto;
  width: 48%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(0, 0, 0, 0.18) 100%),
    repeating-linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.035) 0 2px,
      transparent 2px 26px
    );
}

.s-solid-hero .inner {
  position: relative;
  z-index: 2;
}

/* On small screens the copy stacks full-width; drop the side photo so text
   never sits over it. */
@media (max-width: 767px) {
  .s-solid-hero .media {
    display: none;
  }
}
.s-solid-hero .withAside {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .s-solid-hero .withAside {
    grid-template-columns: 1.35fr 0.65fr;
  }
}

.s-solid-hero .copy {
  max-width: 44rem;
}

.s-solid-hero .eyebrow {
  margin: 0 0 var(--s-4);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-amber);
}

.s-solid-hero .title {
  margin: 0;
  color: #fff;
  max-width: 18ch;
}

.s-solid-hero .lede {
  margin: var(--s-6) 0 0;
  max-width: 48ch;
  font-size: var(--fs-lg);
  line-height: var(--lh-normal);
  color: rgba(244, 242, 236, 0.86);
  text-wrap: pretty;
}

.s-solid-hero .aside {
  display: flex;
  justify-content: center;
}
