/* Outreach/review-only styles. */
/* Outreach landing page */
.outreach-page {
  overflow-x: clip;
}

.outreach-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.outreach-hero > *,
.outreach-result-grid > * {
  min-width: 0;
}

.outreach-hero h1 {
  max-width: 11ch;
}

.outreach-page .homepage-block {
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.outreach-note ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outreach-note li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.11);
}

.outreach-note li > span {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid rgba(160, 136, 62, 0.32);
  border-radius: 50%;
  color: var(--teal);
  font-size: 0.75rem;
}

.outreach-note li p {
  display: grid;
  gap: 0.3rem;
  margin: 0;
}

.outreach-note small {
  color: var(--muted);
  line-height: 1.45;
}
.outreach-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.outreach-result-grid a {
  display: grid;
  grid-template-rows: auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  transition: transform 180ms ease, border-color 180ms ease;
}

.outreach-result-grid a:hover,
.outreach-result-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(160, 136, 62, 0.38);
}

.outreach-result-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 987 / 712;
  object-fit: contain;
  object-position: top center;
  background: #eeeeec;
}

.outreach-result-grid span {
  margin: 1.1rem 1.1rem 0.5rem;
  color: var(--teal);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.outreach-result-grid strong {
  padding: 0 1.1rem 1.35rem;
  color: var(--text);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .outreach-page,
  .outreach-page .page-shell,
  .outreach-page main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .outreach-page .outreach-hero {
    display: block;
    width: min(calc(100% - 2rem), var(--max-width));
    max-width: var(--max-width);
  }

  .outreach-page .outreach-hero > * {
    width: 100%;
    max-width: 100%;
  }

  .outreach-page .outreach-note {
    margin-top: 2rem;
  }

  .outreach-page .outreach-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outreach-page .outreach-result-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .outreach-page .section,
  .outreach-page .page-hero,
  .outreach-page .site-header,
  .outreach-page .site-footer {
    max-width: calc(100% - 2rem);
  }

  .outreach-page .outreach-result-grid {
    display: block;
  }

  .outreach-page .outreach-result-grid > * {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .outreach-page .outreach-result-grid > :last-child {
    grid-column: auto;
  }
}

