.college-page {
  display: grid;
  gap: 24px;
}

.college-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 36px;
  align-items: end;
}

.college-intro > div {
  display: grid;
  gap: 9px;
}

.college-intro h1,
.college-intro p {
  margin: 0;
}

.college-tool {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.college-tool-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.college-tool-heading h2,
.college-tool-heading p {
  margin: 0;
}

.college-tool-heading h2 {
  margin-top: 3px;
}

.college-slots {
  margin: 0;
  padding: 0;
  list-style: none;
}

.college-slots li {
  min-height: 72px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 12px 18px;
}

.college-slots li > div {
  min-width: 0;
}

.college-slots strong,
.college-slots li > div > span {
  display: block;
}

.college-slots li > div > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.slot-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-family: var(--font-display);
  font-weight: 800;
}

.slot-status {
  color: var(--warning);
  font-size: 0.74rem;
  font-weight: 750;
}

.college-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.college-contact h2,
.college-contact p {
  margin: 0;
}

.college-contact h2 {
  margin-top: 4px;
}

.college-contact p:not(.eyebrow) {
  margin-top: 6px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .college-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .college-tool-heading {
    align-items: flex-start;
  }

  .college-slots li {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 11px 13px;
  }

  .slot-number {
    width: 34px;
    height: 34px;
  }

  .college-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}
