/* ===================================
   ABOUT PAGE OVERRIDES
   Hero Writers Grid & Profiles
   Loaded only on about.html
   =================================== */

.about-hero {
  min-height: auto;
  padding: clamp(6.5rem, 14vh, 8.5rem) var(--spacing-md) 5rem;
}

.about-hero .hero-content {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-hero .hero-content > p {
  margin-bottom: 0;
}

/* ===================================
   HERO WRITERS GRID
   Single source of truth for team
   =================================== */

.about-writers-grid {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.about-writer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  text-align: center;
  background: rgba(26, 26, 26, 0.55);
  border: 1px solid rgba(250, 233, 155, 0.15);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-writer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(250, 233, 155, 0.15);
}

.about-writer-avatar {
  width: clamp(160px, 22vw, 220px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-light);
  background: var(--bg-medium);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.about-writer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-writer-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}

.about-writer-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.85rem;
}

.about-writer-bio {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 280px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
  .about-hero {
    padding: calc(var(--spacing-lg) + 1rem) var(--spacing-sm) 3.5rem;
  }

  .about-writers-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 380px;
  }

  .about-writer-card {
    padding: 1.25rem 1rem;
  }

  .about-writer-avatar {
    width: 150px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-writers-grid {
    gap: 1rem;
  }

  .about-writer-bio {
    font-size: 0.87rem;
  }
}
