.college-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  padding: 42px 0 34px;
}

.college-lead span,
.section-title span,
.college-direction span {
  display: block;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
}

.college-lead h3 {
  margin: 14px 0 24px;
  color: #111;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.13;
  font-weight: 900;
  word-break: keep-all;
}

.college-lead p {
  max-width: 690px;
  margin: 0;
  color: #3c4650;
  font-size: 18px;
  line-height: 1.85;
  word-break: keep-all;
}

.college-photo {
  overflow: hidden;
  min-height: 320px;
  background: #15191f;
}

.college-photo img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
}

.college-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 18px 0 74px;
  border-top: 2px solid #111;
  border-bottom: 1px solid var(--line);
}

.college-facts article {
  min-height: 128px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.college-facts article:last-child {
  border-right: 0;
}

.college-facts strong {
  display: block;
  color: var(--red);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  font-weight: 900;
}

.college-facts span {
  display: block;
  margin-top: 14px;
  color: #303841;
  font-size: 17px;
  font-weight: 800;
}

.college-section {
  margin-top: 74px;
}

.section-title {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 28px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.section-title h3 {
  margin: 0;
  color: #111;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.25;
  font-weight: 900;
  word-break: keep-all;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vision-grid article {
  min-height: 260px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.vision-grid em {
  display: block;
  margin-bottom: 28px;
  color: rgba(163,15,28,.22);
  font-size: 46px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.vision-grid strong {
  display: block;
  color: #111;
  font-size: 24px;
  line-height: 1.32;
  font-weight: 900;
}

.vision-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}

.program-list {
  display: grid;
  gap: 16px;
}

.program-list a {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 168px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.program-list a:hover {
  border-color: rgba(163,15,28,.45);
  box-shadow: 0 18px 38px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.program-list img {
  height: 100%;
  object-fit: cover;
}

.program-list div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
}

.program-list strong {
  color: #111;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.program-list p {
  margin: 14px 0 0;
  color: #4a535c;
  font-size: 17px;
  line-height: 1.72;
  word-break: keep-all;
}

.college-direction {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 78px;
}

.college-direction div {
  padding: 36px 34px 40px;
  color: #fff;
  background: linear-gradient(135deg, #15191f, #7b0714);
}

.college-direction div:nth-child(2) {
  background: linear-gradient(135deg, #7b0714, #15191f);
}

.college-direction span {
  color: rgba(255,255,255,.66);
}

.college-direction strong {
  display: block;
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
  word-break: keep-all;
}

.college-direction p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

@media (max-width: 980px) {
  .college-intro,
  .section-title,
  .college-direction {
    grid-template-columns: 1fr;
  }

  .college-facts,
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-list a {
    grid-template-columns: 210px 1fr;
  }
}

@media (max-width: 640px) {
  .college-intro {
    padding-top: 30px;
  }

  .college-photo,
  .college-photo img {
    min-height: 220px;
  }

  .college-facts,
  .vision-grid,
  .program-list a {
    grid-template-columns: 1fr;
  }

  .college-facts article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .college-facts article:last-child {
    border-bottom: 0;
  }

  .program-list img {
    height: 190px;
  }
}
