.outreach-page {
  padding-top: 45px;
  padding-bottom: 125px;
}

.outreach-header {
  max-width: 820px;
  margin-bottom: 80px;
}

.outreach-header h1 {
  margin: 0 0 22px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.3vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
}

.outreach-header p {
  margin: 0;

  font-size: 18px;
  line-height: 1.65;
}

.outreach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 48px;
}

.outreach-card {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.outreach-image {
  display: block;
  margin-bottom: 28px;
}

.outreach-image img {
  display: block;

  width: 100%;
  aspect-ratio: 1 / 1;

  object-fit: cover;

  border-radius: 50%;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.outreach-image:hover img {
  transform: scale(0.985);
  opacity: 0.9;
}

.outreach-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.outreach-type {
  margin: 0 0 11px !important;

  color: var(--muted);

  font-size: 12px !important;
  line-height: 1;

  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.outreach-card h2 {
  margin: 0 0 18px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 1.7vw, 1.9rem);
  font-weight: 400;
  line-height: 1.2;
}

.outreach-card-copy > p:not(.outreach-type) {
  margin: 0 0 24px;

  font-size: 15px;
  line-height: 1.7;
}

.outreach-link {
  width: fit-content;

  margin-top: auto;
  padding-bottom: 3px;

  color: #111;

  font-size: 14px;

  text-decoration: none;
  border-bottom: 1px solid #111;
}

.outreach-link:hover {
  opacity: 0.55;
}


@media (max-width: 1050px) {
  .outreach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 50px;
  }
}


@media (max-width: 600px) {
  .outreach-page {
    padding-top: 30px;
    padding-bottom: 90px;
  }

  .outreach-header {
    margin-bottom: 55px;
  }

  .outreach-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .outreach-image {
    max-width: 320px;
  }

  .outreach-card {
    max-width: 460px;
  }
}
