.about-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10rem;
  padding-bottom: 8rem;
}

.about-name {
  font-family: Montserrat, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 12px;
}

.about-subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--lightgray);
  line-height: 30px;
}

.about-divider {
  background-color: #e4e4e4;
  height: 2px;
  margin: 3rem 0;
}

.about-section-label {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lightgray);
  margin-bottom: 16px;
}

.about-body {
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
  max-width: 640px;
  margin-bottom: 3rem;
}

.about-links {
  display: flex;
  flex-direction: column;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .about-content {
    padding: 0 4rem;
    padding-bottom: 6rem;
  }

  .about-name {
    font-size: 52px;
    line-height: 54px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .about-content {
    padding: 0 1.5rem;
    padding-bottom: 4rem;
  }

  .about-name {
    font-size: 38px;
    line-height: 42px;
  }

  .about-subtitle {
    font-size: 18px;
  }

  .about-divider {
    margin: 2rem 0;
  }

  .about-body {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }
}
