.about-page {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 68px;
  color: var(--ink);
}

.about-page-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.about-page-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 18px;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.about-page-head h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: 0;
}

.about-page-head > p,
.about-page-intro {
  margin: 0;
  color: rgba(68, 69, 76, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.about-page-intro {
  margin-top: 16px;
}

.about-page-intro p {
  margin: 0;
}

.about-section-list {
  display: grid;
  gap: 18px;
}

.about-section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  border-radius: 24px;
  padding: 34px;
  background: #f5f4f6;
}

.about-section-feature {
  background: var(--dark);
  color: var(--white);
}

.about-section-index {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--white);
  color: rgba(18, 18, 24, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.about-section-feature .about-section-index {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.about-section h2 {
  margin: 0 0 16px;
  color: inherit;
  font-family: var(--sans);
  font-size: 26px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.about-section-body {
  color: rgba(28, 30, 36, 0.76);
  font-size: 16px;
  line-height: 1.72;
}

.about-section-feature .about-section-body {
  color: rgba(255, 255, 255, 0.72);
}

.about-section-body p {
  margin: 0;
}

.about-section-body p + p,
.about-section-body ul,
.about-section-body ol {
  margin-top: 0.85em;
}

.about-section-body ul,
.about-section-body ol {
  padding-left: 1.2em;
}

.about-section-body li + li {
  margin-top: 0.45em;
}

.about-section-body strong {
  color: inherit;
  font-weight: 700;
}

.about-page-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 64px;
  border-radius: 24px;
  padding: 28px 32px;
  background: var(--ink);
  color: var(--white);
}

.about-page-note p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.about-page-note strong {
  color: var(--white);
  font-size: 17px;
}

.about-page-note a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 10px;
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 720px) {
  .about-page {
    width: calc(100% - 32px);
  }

  .about-page-head {
    margin-bottom: 30px;
    text-align: left;
  }

  .about-page-head h1 {
    font-size: 42px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: 20px;
    padding: 28px 24px;
  }

  .about-section h2 {
    font-size: 24px;
  }

  .about-page-note {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 20px;
  }

  .about-page-note a {
    width: 100%;
  }
}
