.about-page {
  --about-green: #2fb14a;
  --about-ink: #111827;
  --about-muted: #6b7280;
  --about-surface: #f6f7f8;
  --about-border: rgba(17, 24, 39, 0.1);
  min-height: 60vh;
  padding-top: 76px;
  background: #fff;
  color: var(--about-ink);
}

.about-page *,
.about-page *::before,
.about-page *::after {
  box-sizing: border-box;
}

.about-page a {
  color: inherit;
}

.about-container {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 10px 20px 72px;
}

.about-page-header {
  margin-bottom: 32px;
}

.about-card {
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid var(--about-border);
  border-radius: 16px;
  background: var(--about-surface);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: start;
  gap: 40px;
}

.about-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--about-border);
  border-radius: 14px;
  background: #fff;
}

.about-logo-card img {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
}

.about-card h2 {
  margin: 0 0 18px;
  padding: 0;
  color: var(--about-ink);
  font-size: 28px;
  line-height: 1.2;
}

.about-rich-text {
  min-width: 0;
  color: var(--about-ink);
  font-size: 17px;
  line-height: 1.7;
}

/* CMS text inherits legacy direct colors unless reset inside this page scope. */
.about-rich-text p,
.about-rich-text h1,
.about-rich-text h2,
.about-rich-text h3,
.about-rich-text h4,
.about-rich-text h5,
.about-rich-text h6,
.about-rich-text li,
.about-rich-text span,
.about-rich-text strong,
.about-rich-text em {
  color: var(--about-ink) !important;
}

.about-rich-text > :first-child {
  margin-top: 0;
}

.about-rich-text > :last-child {
  margin-bottom: 0;
}

.about-rich-text p,
.about-rich-text li {
  font-size: 17px;
  line-height: 1.7;
}

.about-rich-text ul,
.about-rich-text ol {
  margin: 14px 0;
  padding-left: 24px;
}

.about-rich-text ul {
  list-style: disc;
}

.about-rich-text ol {
  list-style: decimal;
}

.about-rich-text a {
  color: var(--about-green) !important;
  text-decoration: underline;
}

.about-rich-text img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-logo-card {
    min-height: 140px;
  }
}

@media (max-width: 600px) {
  .about-container {
    padding: 8px 16px 56px;
  }

  .about-card {
    padding: 20px;
  }

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