
/* =========================================================
   YEARBOOKS PAGE
   ========================================================= */

.page-content--yearbooks {
  width: min(var(--content-w), calc(100% - 120px));
  margin: 78px auto 96px;
}

.yearbooks-hero {
  margin-bottom: 64px;
  padding-top: 10px;
  text-align: center;
}

.yearbooks-title {
  margin: 0 0 38px;
  color: #0b7ab7;
  line-height: 1;
  letter-spacing: -0.018em;
}

.yearbooks-title strong {
  font-weight: 700;
}

.yearbooks-lead {
  margin: 0 0 34px;
  color: #0b7ab7;
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.22;
}

.yearbooks-lead strong {
  font-weight: 700;
}

.yearbooks-copy {
  width: min(640px, 100%);
  margin: 0 auto;
  color: #6d6d6d;
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.58;
  text-align: left;
}

.yearbooks-copy p {
  margin: 0;
}

.yearbooks-copy p + p {
  margin-top: 6px;
}

.yearbooks-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 240px));
  gap: 34px 24px;
  align-items: start;
  justify-content: center;
}

.yearbook-card {
  --yearbook-accent: #4fb976;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.yearbook-card--gold {
  --yearbook-accent: #ffc22d;
}

.yearbook-card--orange {
  --yearbook-accent: #f98c26;
}

.yearbook-card--purple {
  --yearbook-accent: #8a6db7;
}

.yearbook-card--green {
  --yearbook-accent: #4db472;
}

.yearbook-card__cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  background: #ececec;
}

.yearbook-card__cover--placeholder {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)), var(--yearbook-accent);
}

.yearbook-card__year {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px 6px;
  background: var(--yearbook-accent);
  color: #fff;
  font-size: 2.35rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}