/* =========================================================
   Greenleaf LTD — about.css
   Pairs with includes/about.html.
   ========================================================= */

.about {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.about-text h2 {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  color: var(--navy-900);
  max-width: 460px;
}

.about-text p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: #3B4668;
  max-width: 480px;
}

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

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fact-card {
  border-left: 3px solid var(--gold-600);
  background: var(--paper);
  padding: 20px 24px;
  border-radius: 0 10px 10px 0;
}

.fact-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-900);
}

.fact-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4A5478;
}

@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 64px 24px;
  }

  .about-text p,
  .about-text h2 { max-width: 100%; }
}
