.content > .hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px 32px;
  margin-bottom: 18px;
}

.content > .hero > div:first-child {
  min-width: 0;
}

.content > .hero h1 {
  max-width: 900px;
  font-size: 24px;
  line-height: 1.3;
  word-break: keep-all;
}

.content > .hero .subtitle {
  max-width: 850px;
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.6;
  word-break: keep-all;
}

.content > .hero .date-filter {
  display: grid;
  grid-template-columns: auto 108px;
  align-items: center;
  justify-content: end;
  gap: 4px 10px;
  max-width: none;
  margin-top: 20px;
  align-self: start;
}

.content > .hero .date-filter > span {
  grid-column: 1;
  grid-row: 1;
  white-space: nowrap;
}

.content > .hero .date-filter > select {
  grid-column: 2;
  grid-row: 1;
  width: 108px;
  min-width: 108px;
}

.content > .hero .date-filter .period-note {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.content > .hero .annual-data-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
}

@media (max-width: 1100px) {
  .content > .hero {
    grid-template-columns: 1fr;
  }

  .content > .hero .date-filter {
    margin-top: 0;
    justify-self: start;
    justify-content: start;
  }
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-grid .metric-card > strong {
  font-variant-numeric: tabular-nums;
}

.related-campuses {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid #edf1f0;
}

.related-campuses h3 {
  margin: 0 0 10px;
  font-size: 12px;
}

.related-campus-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.related-campus-row + .related-campus-row {
  margin-top: 8px;
}

.related-campus-row strong {
  font-size: 12px;
}

.related-campus-row button {
  border: 1px solid #cfe0db;
  border-radius: 7px;
  background: #fff;
  color: #087a59;
  padding: 7px 9px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

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