/* ==========================================================================
   SILENT MEMORY PHOTOGRAPHY - ABOUT PAGE STYLES
   Editorial team showcase and story placeholder styling.
   ========================================================================== */

.about-header-section {
  padding-top: calc(var(--navbar-height) + 3.5rem);
  padding-bottom: 4rem;
  background-color: var(--bg-primary);
  text-align: center;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 900px;
  margin: 0.5rem auto 1.5rem auto;
  line-height: 1.1;
}

/* Team Grid Section */
.team-section {
  padding-bottom: 5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: #E8E2D7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  text-align: center;
}

.team-card-info {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
}

.team-role {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 500;
  line-height: 1.4;
}

.team-wa-link {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.85rem;
}

.team-wa-link:hover {
  color: var(--accent-gold);
}

/* Story Placeholder Section */
.story-section {
  background-color: #F5F3EF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 5rem 0;
}

.story-container {
  max-width: 800px;
  margin: 0 auto;
}

.story-placeholder-box {
  background-color: #FFFFFF;
  border: 2px dashed var(--border-color);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 2rem;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
