.about-page {
  padding: clamp(24px, 3vw, 42px) 0 82px;
}

.about-wrap {
  width: min(100%, 880px);
  margin: 0 auto;
}

.about-hero {
  padding-bottom: 4px;
}

.about-eyebrow {
  margin: 0;
  color: var(--teal-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-title {
  margin: 14px 0 16px;
  color: var(--text-dark);
  font-family: "EduDisplay", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.about-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.85;
}

.about-lead + .about-lead {
  margin-top: 16px;
}

.about-lead strong {
  color: var(--text-dark);
}

.about-rule {
  width: min(100%, 360px);
  height: 1px;
  margin-top: 26px;
  background: repeating-linear-gradient(
    90deg,
    rgba(13, 32, 54, 0.86) 0 18px,
    transparent 18px 30px
  );
}

.about-sections {
  margin-top: 12px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: 18px 34px;
  padding: 24px 0;
  border-top: 1px solid rgba(13, 32, 54, 0.12);
}

.about-section:last-child {
  border-bottom: 1px solid rgba(13, 32, 54, 0.12);
}

.about-section-side {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.about-section-side--plain {
  display: block;
}

.about-section-side--founder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  border: 1px solid transparent;
  box-shadow: 0 14px 28px rgba(13, 32, 54, 0.08);
  font-size: 18px;
}

.about-icon--violet {
  color: #6645d8;
  background: #f1ecff;
  border-color: #ddd1ff;
}

.about-icon--sky {
  color: #1b75c3;
  background: #e9f5ff;
  border-color: #cce6fb;
}

.about-icon--amber {
  color: #b6781d;
  background: #fff3df;
  border-color: #f1debb;
}

.about-icon--green {
  color: #187a60;
  background: #e9f7f1;
  border-color: #cbeadf;
}

.about-icon--rose {
  color: #c34f62;
  background: #fff0f3;
  border-color: #f7d0d8;
}

.about-icon--blue {
  color: #1b67b2;
  background: #ebf4ff;
  border-color: #c9def7;
}

.about-icon--teal {
  color: #156f6b;
  background: #e7f7f5;
  border-color: #c4e8e4;
}

.about-section-title {
  margin: 0;
  color: #708396;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.7;
  text-transform: uppercase;
}

.about-section-body {
  min-width: 0;
}

.about-section-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.9;
}

.about-founder-figure {
  margin: 0;
  width: min(100%, 220px);
}

.about-founder-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(13, 32, 54, 0.12);
  background: linear-gradient(180deg, #eef4fa 0%, #dfe9f5 100%);
  box-shadow: 0 18px 36px rgba(13, 32, 54, 0.12);
}

.about-section-body p + p {
  margin-top: 16px;
}

.about-section-body strong {
  color: var(--text-dark);
}

.about-closing {
  color: var(--text-dark);
  font-weight: 700;
}

.about-thanks {
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .about-page {
    padding: 28px 0 68px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .about-section-side {
    gap: 12px;
  }

  .about-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .about-section-title {
    font-size: 11px;
  }

  .about-founder-image {
    max-width: 240px;
  }

  .about-section-body p {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-rule {
    width: min(100%, 220px);
  }
}
