.project-featured {
  background-color: var(--red);
  background-image:
    linear-gradient(135deg, rgba(199, 25, 45, .84), rgba(10, 9, 9, .78)),
    url("assets/hayes-hellcats-champions.webp");
  background-size: cover;
  background-position: center;
}

.champions-feature {
  grid-column: 1 / -1;
  padding: 0;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--line);
  background: #080707;
}

.champions-photo {
  margin: 0;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  background: #171313;
}

.champions-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(.12) contrast(1.08);
}

.champions-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 5, 5, .92));
}

.champions-photo figcaption {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 42px 22px 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: .62rem;
  line-height: 1.45;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #eee7df;
}

.champions-copy {
  padding: clamp(38px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.champions-copy .section-label {
  grid-column: auto;
  margin-bottom: 24px;
}

.champions-copy h3 {
  max-width: 660px;
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.7rem);
  line-height: .84;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.champions-copy > p:not(.section-label):not(.champions-manifesto) {
  max-width: 660px;
  margin: 34px 0 0;
  color: #c7c0b8;
  font-size: 1.05rem;
}

.champions-copy .champions-manifesto {
  max-width: 620px;
  margin: 38px 0 0;
  color: var(--red);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.015em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .champions-feature {
    grid-template-columns: 1fr;
  }

  .champions-photo {
    min-height: 340px;
  }

  .champions-copy {
    padding: 42px 24px 48px;
  }

  .champions-copy h3 {
    font-size: 3.7rem;
  }
}

.ownership-band {
  padding: 24px 0;
  border-top-width: 4px;
}

.ownership-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
}

.ownership-inner img {
  width: min(38vw, 360px);
}

.ownership-inner .ownership-statement {
  margin: 0;
  color: #5d5752;
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .ownership-band {
    padding: 22px 0;
  }

  .ownership-inner {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .ownership-inner img {
    width: min(78vw, 330px);
  }
}
