/* ================================================
   ABOUT US PAGE
   astra-child/assets/css/about.css
   ================================================ */

.about-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 32px;
}

/* ── Hero ── */
.about-hero {
  text-align: center;
  padding-bottom: 64px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 64px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0052cc;
  margin-bottom: 20px;
}

.about-eyebrow::before,
.about-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #0052cc;
}

.about-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  color: #0d0d0d;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-hero-lead {
  font-size: 19px;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 32px;
}

.about-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0052cc;
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.about-hero-cta:hover {
  background: #003d99;
  color: white;
}

/* ── Stats ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 64px;
}

.stat-item {
  background: white;
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 900;
  color: #0052cc;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a7a7a;
}

/* ── Mission ── */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 64px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 64px;
}

.about-mission-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-mission-text p {
  font-size: 15px;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-mission-visual {
  background: #0d0d0d;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 14px 18px;
}

.mission-pill-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.mission-pill-text {
  font-size: 13px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1.5;
}

.mission-pill-text strong {
  display: block;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
  font-size: 14px;
}

/* ── Section label ── */
.about-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0d0d0d;
  margin-bottom: 32px;
}

.about-section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: #0052cc;
}

.about-section-label--light {
  color: white;
}

/* ── What we cover ── */
.about-covers {
  margin-bottom: 64px;
}

.covers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cover-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.cover-card:hover {
  border-color: #0052cc;
  transform: translateY(-2px);
}

.cover-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.cover-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 8px;
}

.cover-desc {
  font-size: 13px;
  font-weight: 300;
  color: #7a7a7a;
  line-height: 1.6;
}

/* ── Values ── */
.about-values {
  background: #0d0d0d;
  border-radius: 8px;
  padding: 48px;
  margin-bottom: 64px;
  margin-left: -32px;
  margin-right: -32px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.value-item {
  border-left: 3px solid #0052cc;
  padding-left: 20px;
}

.value-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.value-desc {
  font-size: 14px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.7;
}

/* ── Contributors ── */
.about-contributors {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #e0e0e0;
}

.contributors-intro {
  font-size: 16px;
  font-weight: 300;
  color: #3a3a3a;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 640px;
}

.contributors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contributor-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}

.contributor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0052cc;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.contributor-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: #0d0d0d;
  margin-bottom: 4px;
}

.contributor-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0052cc;
  margin-bottom: 10px;
}

.contributor-bio {
  font-size: 13px;
  font-weight: 300;
  color: #7a7a7a;
  line-height: 1.6;
}

.contributor-cta {
  display: inline-block;
  margin-top: 16px;
  background: #0052cc;
  color: white;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.contributor-cta:hover {
  background: #003d99;
  color: white;
}

/* ── CTA ── */
.about-cta {
  text-align: center;
  padding: 56px 48px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.about-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  color: #0d0d0d;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-cta p {
  font-size: 16px;
  font-weight: 300;
  color: #7a7a7a;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #0052cc;
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #003d99;
  color: white;
}

.btn-secondary {
  background: white;
  color: #0d0d0d;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid #e0e0e0;
  transition: border-color 0.2s;
}

.btn-secondary:hover {
  border-color: #0d0d0d;
  color: #0d0d0d;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-values {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .about-wrap { padding: 40px 20px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-mission { grid-template-columns: 1fr; gap: 32px; }
  .covers-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contributors-grid { grid-template-columns: 1fr 1fr; }
  .about-values { padding: 32px 24px; }
  .about-cta { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .covers-grid { grid-template-columns: 1fr; }
  .contributors-grid { grid-template-columns: 1fr; }
}
