.about-hero {
  padding: 76px 0;
  background: #eaf5f4;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}
.about-hero h1,
.about-story h2,
.career-section h2,
.credentials h2,
.about-cta h2 {
  color: var(--navy);
  margin: 0;
}
.about-hero h1 {
  font-size: 52px;
  line-height: 1.1;
}
.about-lead {
  max-width: 570px;
  margin: 22px 0 0;
  color: #38546a;
  font-size: 18px;
  line-height: 1.7;
}
.about-hero img {
  width: 100%;
  max-width: 390px;
  aspect-ratio: 1;
  object-fit: cover;
  justify-self: end;
  border-radius: 8px;
}
.about-story,
.credentials {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-top: 85px;
  padding-bottom: 85px;
}
.about-story h2,
.career-section h2,
.credentials h2,
.about-cta h2 {
  font-size: 31px;
  line-height: 1.25;
}
.about-copy p {
  margin: 0 0 18px;
  color: #486174;
  font-size: 16px;
  line-height: 1.8;
}
.career-section {
  padding: 80px 0;
  background: #f5f8f9;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.timeline article,
.credentials-grid article {
  border-left: 3px solid var(--cyan);
  padding: 18px 24px;
  background: #fff;
}
.timeline span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.timeline h3,
.credentials h3 {
  margin: 10px 0 5px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}
.timeline p,
.credentials p {
  margin: 0;
  color: #526b7e;
  font-size: 14px;
  line-height: 1.6;
}
.credentials-list {
  display: grid;
  gap: 0;
}
.credentials-list article {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #dbe6e8;
}
.credentials-list article:first-child {
  border-top: 1px solid #dbe6e8;
}
.credentials-list span,
.courses-list time {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}
.credentials-list p {
  margin: 0;
  color: #486174;
  font-size: 15px;
  line-height: 1.5;
}
.courses-section {
  padding: 80px 0;
  background: #f5f8f9;
}
.courses-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 31px;
  line-height: 1.25;
}
.courses-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  margin-top: 34px;
}
.courses-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #dbe6e8;
}
.courses-list p {
  margin: 0;
  color: #486174;
  font-size: 14px;
  line-height: 1.55;
}
.about-cta {
  padding: 65px 0;
  background: var(--navy);
}
.about-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.about-cta .section-kicker,
.about-cta h2,
.about-cta p {
  color: #fff;
}
.about-cta p {
  margin: 10px 0 0;
}
.footer-grid table {
  font-size: 14px;
}
.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 700px) {
  .about-hero,
  .career-section,
  .courses-section {
    padding: 52px 0;
  }
  .about-hero-grid,
  .about-story,
  .credentials,
  .timeline,
  .courses-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-hero h1 {
    font-size: 39px;
  }
  .about-hero img {
    justify-self: start;
    max-width: 100%;
  }
  .about-story,
  .credentials {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .credentials-list article,
  .courses-list article {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .about-cta .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .about-cta-actions {
    justify-content: flex-start;
  }
}