/* About Page Styles */

/* About Hero */
.about-hero {
  background: var(--warm-off-white);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 60px);
  text-align: center;
}

.about-hero .container {
  max-width: 900px;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.about-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--medium-gray);
  margin-bottom: 32px;
}

.about-intro {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--warm-charcoal);
  max-width: 800px;
  margin: 0 auto;
}

/* About Sections */
.about-section {
  padding: var(--section-padding) 0;
}

.about-section:nth-of-type(odd) {
  background: white;
}

.about-section:nth-of-type(even) {
  background: var(--warm-off-white);
}

.about-section .container {
  max-width: 900px;
}

.about-section h2 {
  font-size: var(--text-section);
  margin-bottom: 32px;
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--warm-charcoal);
  margin-bottom: 20px;
}

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

/* Credentials Badges */
.credentials-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.credentials-badges .badge {
  background: var(--badge-bg);
  color: var(--medium-gray);
  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
}

/* Experience Timeline (optional, for future enhancement) */
.experience-timeline {
  margin-top: 32px;
  padding: 24px;
  background: var(--badge-bg);
  border-radius: 4px;
  border-left: 3px solid var(--accent-brick);
}

.experience-timeline h4 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--deep-slate);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.experience-timeline p {
  font-size: var(--text-small);
  color: var(--medium-gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 40px 0 32px;
  }

  .about-section h2 {
    text-align: left;
  }

  .credentials-badges {
    justify-content: flex-start;
  }
}
