.about-main {
  max-width: 100%;
  overflow-x: clip;
}

.about-hero {
  padding-top: 78px;
  padding-bottom: 48px;
}

.about-hero .section-head {
  max-width: var(--content-max);
}

.about-hero h1 {
  margin-top: 16px;
}

.about-hero .section-head p {
  max-width: 760px;
  margin-inline: auto;
}

.about-facts {
  display: grid;
  margin-top: 40px;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-fact {
  display: flex;
  min-width: 0;
  min-height: 118px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 20px;
  text-align: center;
}

.about-fact + .about-fact {
  border-left: 1px solid var(--color-border);
}

.about-fact strong {
  font-family: var(--font-display);
  font-size: 19px;
}

.about-fact span {
  color: var(--color-muted);
  font-size: 13px;
}

.about-fact strong span {
  color: inherit;
  font-size: inherit;
}

.about-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  overflow: hidden;
}

.about-card h2 {
  margin-top: 20px;
  font-size: 25px;
}

.about-card p {
  margin-top: 14px;
}

.about-mark {
  display: block;
  width: 46px;
  height: 10px;
  border-radius: var(--radius-pill);
}

.about-mark-sky {
  background: var(--color-sky);
}

.about-mark-mint {
  background: var(--color-mint);
}

.about-mark-gold {
  background: var(--color-gold);
}

.about-boundary {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  padding: 34px;
  background: var(--color-panel-raised);
}

.about-boundary h2 {
  margin-top: 13px;
  font-size: clamp(28px, 3.5vw, 40px);
}

.about-boundary p {
  max-width: 680px;
  margin-top: 12px;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 900px) {
  .about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-fact + .about-fact {
    border-left: 0;
  }

  .about-fact:nth-child(even) {
    border-left: 1px solid var(--color-border);
  }

  .about-fact:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-boundary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding-top: 58px;
    padding-bottom: 34px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-fact {
    min-height: 96px;
  }

  .about-fact:nth-child(even) {
    border-left: 0;
  }

  .about-fact + .about-fact,
  .about-fact:nth-child(n + 3) {
    border-top: 1px solid var(--color-border);
  }

  .about-card {
    padding: 24px;
  }

  .about-boundary {
    gap: 26px;
    padding: 24px;
  }

  .about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-actions .btn {
    width: 100%;
  }
}