/* ============================================
   NEXR ARTS — About Page
   ============================================ */

.about-section {
  padding-bottom: var(--space-section);
}

.about-section + .about-section {
  padding-top: 0;
}

.about__concept {
  max-width: var(--container-text);
}

.about__concept-lead {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: var(--fw-light);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.about__concept-body {
  font-size: var(--fs-body-lg);
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
}

/* --- Philosophy / Vision --- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.about-grid__item {
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-surface);
}

.about-grid__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--color-border-light);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.about-grid__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-md);
}

.about-grid__text {
  font-size: var(--fs-body);
  color: var(--color-text-secondary);
  line-height: var(--lh-body);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .about-grid__item {
    padding: var(--space-lg);
  }

  .about__concept-lead {
    font-size: var(--fs-body-lg);
    margin-bottom: var(--space-lg);
  }

  .about__concept-body {
    font-size: var(--fs-body);
  }
}

/* --- Values --- */

.about-values {
  background-color: var(--color-bg-secondary);
}

.about-values__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.about-values__item {
  text-align: center;
}

.about-values__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  border: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.about-values__label {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.about-values__desc {
  font-size: var(--fs-small);
  color: var(--color-text-secondary);
}

@media (max-width: 640px) {
  .about-values__list {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-org__table th {
    display: block;
    width: 100%;
    padding-bottom: 4px;
    border-bottom: none;
  }

  .about-org__table td {
    display: block;
    padding-top: 4px;
  }
}

/* --- Organization Info --- */

.about-org {
  max-width: var(--container-narrow);
}

.about-org__table {
  width: 100%;
  border-collapse: collapse;
}

.about-org__table th,
.about-org__table td {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.about-org__table th {
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-wide);
  color: var(--color-text-secondary);
  white-space: nowrap;
  width: 160px;
}

.about-org__table td {
  color: var(--color-text-primary);
}


@media (max-width: 640px) {
  .about-org__table th {
    width: 100px;
    padding: var(--space-sm) var(--space-md);
  }

  .about-org__table td {
    padding: var(--space-sm) var(--space-md);
  }
}
