/* ============================================
   About page
   ============================================ */

/* Hero */
.about-hero {
  background: var(--gradient-purple);
  padding: 6rem 1rem 3rem;
  text-align: center;
  color: #fff;
}

.about-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-hero p {
  font-size: 1.125rem;
  opacity: 0.85;
}

/* Content section */
.about-section {
  padding: 4rem 1rem;
  background: var(--bg-light);
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Block: text + image side by side */
.about-block {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-block.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  white-space: pre-line;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .about-block,
  .about-block.reverse {
    flex-direction: column;
  }

  .about-image {
    order: -1;
  }

  .about-hero h1 {
    font-size: 2rem;
  }
}
