.about-section {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  text-align: center;
}
.page-title {
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 800;
  margin-bottom: 15px;
}
.page-subtitle {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  color: var(--subtle-text);
  max-width: 600px;
  margin: 0 auto 60px auto;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 0 auto 80px;
  max-width: 900px;
}
.team-card {
  text-align: center;
}
.team-image-container {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#sacandar-photo {
  transform: scale(1);
}
#qays-photo {
  transform: scale(1);
}

.team-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-role {
  display: block;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1rem;
}
.team-card p {
  color: var(--subtle-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.linkedin-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s;
}
.linkedin-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.story-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}
.story-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 25px;
}
.story-content p {
  color: var(--subtle-text);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}
