/* =========================================
   ABOUT PAGE — CLEAN & PREMIUM
========================================= */

/* HERO */
.about-hero {
  background: linear-gradient(
    rgba(11, 28, 45, 0.85),
    rgba(11, 28, 45, 0.85)
  );
  padding: 120px 6%;
  color: #ffffff;
}

.about-hero-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-hero-text h1 {
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.about-hero-text p {
  font-size: 1.05rem;
  color: #d1d5db;
  max-width: 500px;
}

.about-hero-image img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

/* ================================
   LARGE TEAM IMAGE (FRAMED)
================================ */
.about-image-break {
  max-width: 1200px;
  margin: 60px auto;
  padding: 10px;
  border: 6px solid var(--accent);
  border-radius: 18px;
  background: #ffffff;
}

.about-image-break img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}

/* INTRO TEXT */
.about-intro {
  padding: 80px 6%;
  background: #ffffff;
}

.about-intro-container {
  max-width: 900px;
  margin: auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}

.about-intro p {
  margin-bottom: 20px;
}

/* ================================
   TEAM SECTION
================================ */
.team-section {
  background: #f8fafc;
  padding: 100px 6%;
}

.team-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-subtitle {
  color: #6b7280;
  margin-bottom: 55px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.team-card {
  background: #ffffff;
  padding: 34px 26px;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid var(--accent);
  padding: 4px;
  background: #ffffff;
}

.team-card span {
  font-size: 0.9rem;
  color: #475569;
  display: block;
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
}

/* ================================
   TEAM SOCIAL ICONS
================================ */
.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.team-socials a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 28, 45, 0.08);
  color: var(--primary);
  font-size: 14px;
  transition: all 0.25s ease;
}

.team-socials a:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-3px);
}
