/* 👥 About Us Page Specific Styles */

.about-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 4rem;
}

.team-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
  letter-spacing: 0.5px;
}

/* Profiles Grid Layout */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card Styling mimicking the Home Page Card Blueprint */
.profile-card {
  background: var(--navy-mid);
  border: 1px solid rgba(200, 168, 75, 0.15);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
}

.profile-card:hover {
  background: var(--navy-light);
  border-color: rgba(200, 168, 75, 0.4);
  transform: translateY(-2px);
}

/* Clean rectangular frame styling */
.profile-image-frame {
  width: 110px;
  height: 110px;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  background: var(--navy);
  
  /* Removed diamond clip-path to keep the image rectangular */
  /* Added a clean, subtle gold border around the frame */
  border: 2px solid var(--amber);
  box-sizing: border-box;
}

/* Flawless responsive photo placement inside rectangle */
.profile-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.profile-role {
  font-size: 10px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.profile-bio {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* Skill Badges tags matching App Tag specs */
.profile-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.skill-tag {
  font-size: 10px;
  background: rgba(200, 168, 75, 0.08);
  border: 1px solid rgba(200, 168, 75, 0.2);
  color: var(--muted);
  padding: 2px 8px;
}

.profile-card:hover .skill-tag {
  color: var(--amber-light);
  border-color: rgba(200, 168, 75, 0.4);
}

/* Vector Social Media Icon Links Row */
.profile-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon-link {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.social-icon-link:hover {
  color: var(--amber);
  transform: scale(1.15);
}

.social-icon-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Responsive adjust rule */
@media (max-width: 900px) {
  .founders-grid,
  .staff-grid {
    grid-template-columns: 1fr;
  }
}