.about-shell {
  width: min(100%, 760px);
}

.about-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.about-nav a,
.about-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 760;
  text-decoration: none;
}

.about-nav a:focus-visible,
.about-footer a:focus-visible {
  outline: 2px solid rgba(242, 179, 93, 0.78);
  outline-offset: 3px;
  border-radius: 6px;
}

.about-hero {
  padding-top: 18px;
}

.about-hero h1 {
  max-width: none;
  font-size: clamp(2.25rem, 10vw, 3.6rem);
}

.about-title-segment {
  white-space: nowrap;
}

.about-section {
  box-shadow: none;
}

.about-section > h2 {
  margin-bottom: 14px;
}

.about-section p,
.about-section li {
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.78;
}

.about-section p {
  margin: 10px 0 0;
}

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

.about-list {
  display: grid;
  gap: 0;
}

.about-list article,
.faq-item {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.about-list article:first-child,
.faq-item:first-of-type {
  border-top: 0;
}

.about-list h3,
.faq-item h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.about-list p,
.faq-item p {
  margin-top: 7px;
}

.about-points {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 1.25rem;
}

.about-note {
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  color: var(--text) !important;
  font-size: 0.82rem !important;
}

.about-footer {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.about-footer p {
  margin: 0;
}

.about-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

@media (max-width: 520px) {
  .about-nav {
    justify-content: flex-start;
  }

  .about-nav a {
    width: 100%;
  }

  .about-hero h1 .about-title-segment {
    display: block;
  }

  .about-section {
    padding: 18px;
  }
}
