/* About Page Dedicated Styles */
.about-page {
  padding-top: 48px;
  padding-bottom: 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--elev-raised);
}

.about-text h1 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-text h1 span {
  color: var(--primary);
}

.about-text p {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

@media(max-width:920px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-image {
    order: -1;
  }
}

@media(max-width:600px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
