.about-hero {
  border-top: 4px solid var(--orange);
}

.about-hero h1 {
  margin-bottom: 10px;
}

.about-hero p:last-child {
  max-width: 760px;
  line-height: 1.75;
  color: var(--text-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  margin-bottom: 24px;
}

.about-main-card p {
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.about-main-card strong {
  color: var(--black);
}

.about-image-card img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.about-photo-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}

.about-photo-card {
  padding: 14px;
}

.about-photo-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.section-head {
  margin-bottom: 16px;
}

.college-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.college-group {
  background: #fff7f2;
  border: 1px solid #ffd8c2;
  border-radius: 14px;
  padding: 20px;
}

.college-group h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.college-group li {
  color: var(--text);
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.achievement-box {
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  border-radius: 14px;
  padding: 20px;
}

.achievement-box h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.achievement-box p {
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .about-grid,
  .about-photo-row,
  .college-groups,
  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-card img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 22px 18px;
  }

  .about-hero h1 {
    font-size: 1.9rem;
    line-height: 1.15;
  }

  .about-hero p:last-child {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .about-main-card,
  .about-image-card,
  .about-photo-card,
  .college-group,
  .achievement-box {
    padding: 18px;
  }

  .about-main-card p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .about-image-card img {
    min-height: auto;
    max-height: 320px;
  }

  .about-photo-row {
    gap: 18px;
  }

  .about-photo-card img {
    height: 220px;
  }

  .section-head {
    margin-bottom: 14px;
  }

  .section-head h2 {
    font-size: 1.45rem;
    line-height: 1.2;
  }

  .college-groups,
  .achievement-grid {
    gap: 16px;
  }

  .college-group h3,
  .achievement-box h3 {
    font-size: 1.05rem;
  }

  .college-group li,
  .achievement-box p {
    font-size: 0.96rem;
    line-height: 1.65;
  }
}