/* =====================
   About SECTION
   ===================== */
.about-section {
  background-color: var(--surface-container-low);
  padding: var(--space-3xl) var(--space-2xl);
}

.about-container {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-headline {
  font-size: var(--text-headline);
  font-weight: var(--weight-bold);
  color: var(--on-surface);
  line-height: var(--leading-tight);
}

.text-highlight {
  background: var(--gradient-signature);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-text {
  font-size: var(--text-body);
  color: var(--on-surface-variant);
  line-height: var(--leading-relaxed);
}
