.hero-photo {
  background:
    radial-gradient(circle at 78% 23%, #fff6 0 1.5%, transparent 8%),
    linear-gradient(90deg, var(--deep) 0%, transparent 38%),
    linear-gradient(0deg, #1e2d4db5, transparent 48%),
    url("./images/source-puzzle.webp") center / cover;
}

.admission-photo {
  background-image: url("./images/source-kites.webp");
}

@media (min-width: 901px) {
  .voices {
    grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
    align-items: start;
    gap: clamp(48px, 5vw, 100px);
  }

  .voices-intro {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-width: 0;
  }

  .voice-track {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    min-width: 0;
  }
}
/* School news is populated from the existing WordPress blog on the live site. */
.site-header nav {
  gap: clamp(13px, 1.55vw, 30px);
}

.school-news {
  background: #fffdf7;
  position: relative;
  overflow: hidden;
}

.school-news::before {
  content: "✦";
  color: var(--yellow);
  font-size: clamp(90px, 13vw, 210px);
  line-height: 1;
  opacity: .12;
  position: absolute;
  top: 12px;
  right: 4vw;
  transform: rotate(12deg);
}

.news-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 58px;
  position: relative;
  z-index: 1;
}

.news-heading h2 {
  font-size: clamp(52px, 6.2vw, 94px);
}

.news-heading h2 em {
  color: var(--red);
}

.news-all-link {
  border-bottom: 1px solid currentColor;
  padding: 12px 0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.news-all-link span {
  color: var(--red);
  margin-left: 12px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.news-grid.is-live {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-card {
  background: var(--cream);
  border: 1px solid #34426118;
  border-radius: 24px;
  min-width: 0;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.news-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 20px 50px #1e2d4d1c;
}

.news-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy), var(--mint));
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.045);
}

.news-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px;
}

.news-copy time {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 800;
}

.news-copy h3 {
  margin: 16px 0 14px;
  font: 400 clamp(23px, 2vw, 31px)/1.08 Georgia, serif;
}

.news-copy p {
  color: #575c67;
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.6;
}

.news-copy span {
  color: var(--red);
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .news-heading {
    align-items: start;
    flex-direction: column;
  }

  .news-grid,
  .news-grid.is-live {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .news-heading {
    margin-bottom: 38px;
  }

  .news-grid,
  .news-grid.is-live {
    grid-template-columns: 1fr;
  }
}
