/* =========================================================
   MARVEL — About page styles
   Extends styles.css (uses same palette + nav + footer)
   ========================================================= */

/* ===========================================================
   SECTION TAG — small label used across sections
   =========================================================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 127, 176, 0.08);
  color: var(--primary-blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-tag.light {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}
.section-tag.center {
  margin-left: auto;
  margin-right: auto;
}
.section-tag i { font-size: 0.85rem; }

/* Re-usable gradient text */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-text-light {
  background: linear-gradient(135deg, #ffe5e8 0%, #ffffff 50%, #b8e7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===========================================================
   1. HERO — animated road backdrop
   =========================================================== */
.about-hero {
  position: relative;
  padding: 110px 0 160px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-road {
  width: 100%;
  height: 100%;
  display: block;
}
/* Soft floating orbs to add depth */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.hero-orb-1 {
  top: -100px;
  right: -50px;
  width: 360px;
  height: 360px;
  background: var(--red);
  opacity: 0.2;
  animation: float 12s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: -100px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: var(--lighter-blue);
  opacity: 0.3;
  animation: float 14s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

/* Animated dashed centre line */
.lane-dashes rect {
  animation: laneDash 1.6s linear infinite;
}
@keyframes laneDash {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(80px); opacity: 0; }
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.about-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--white);
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 15px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  backdrop-filter: blur(8px);
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  display: block;
  z-index: 1;
}

/* ===========================================================
   2. STORY SECTION
   =========================================================== */
.story-section {
  padding: 80px 0;
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark-text);
}
.lead-paragraph {
  font-size: 1.1rem;
  color: var(--dark-text);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.65;
}
.story-text p {
  color: var(--light-gray);
  font-size: 1rem;
  line-height: 1.75;
}

/* Quote card visual */
.story-visual {
  position: relative;
  min-height: 380px;
}
.quote-card {
  position: relative;
  background: linear-gradient(160deg, #0a2638 0%, #14516e 100%);
  color: var(--white);
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.quote-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--grad);
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(40px);
}
.quote-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  background: var(--red);
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(50px);
}
.quote-icon {
  font-size: 2.2rem;
  color: var(--lighter-blue);
  opacity: 0.5;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.quote-card blockquote {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 28px;
  font-style: italic;
}
.quote-signature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.sig-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
}
.sig-meta { display: flex; flex-direction: column; }
.sig-meta strong { font-size: 0.95rem; color: var(--white); }
.sig-meta span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.7); }

.story-badge {
  position: absolute;
  bottom: -22px;
  right: -20px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  border-top: 3px solid var(--red);
}
.story-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.story-badge .badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark-text);
}
.story-badge .badge-text span {
  font-size: 0.78rem;
  color: var(--light-gray);
}

/* ===========================================================
   3. MISSION SECTION
   =========================================================== */
.mission-section {
  padding: 60px 0 80px;
  background: var(--white);
}
.mission-card {
  background: linear-gradient(135deg, #0e3a52 0%, #1F9ED8 100%);
  border-radius: 28px;
  padding: 56px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.mission-card::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: var(--red);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(60px);
}
.mission-card::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: var(--white);
  opacity: 0.06;
  border-radius: 50%;
  filter: blur(70px);
}
.mission-content {
  position: relative;
  z-index: 1;
}
.mission-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--white);
}
.mission-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.mission-content p:last-child { margin-bottom: 0; }

.mission-pillars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.pillar.revealed {
  opacity: 1;
  transform: translateY(0);
}
.pillar:nth-child(1) { transition-delay: 0.05s; }
.pillar:nth-child(2) { transition-delay: 0.15s; }
.pillar:nth-child(3) { transition-delay: 0.25s; }
.pillar:nth-child(4) { transition-delay: 0.35s; }
.pillar:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin: 0 auto 12px;
}
.pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.pillar p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

/* ===========================================================
   4. STATS SECTION — animated counters
   =========================================================== */
.stats-section {
  padding: 60px 0 80px;
  background: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(34, 40, 49, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.stat-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.stat-card:nth-child(1) { transition-delay: 0.05s; }
.stat-card:nth-child(2) { transition-delay: 0.15s; }
.stat-card:nth-child(3) { transition-delay: 0.25s; }
.stat-card:nth-child(4) { transition-delay: 0.35s; }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(24, 127, 176, 0.2);
}
.stat-card:hover::before { opacity: 1; }
.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(24, 127, 176, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.stat-card:hover .stat-icon {
  background: var(--grad);
  color: var(--white);
  transform: scale(1.05) rotate(-5deg);
}
.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--light-gray);
  letter-spacing: 0.4px;
}

/* ===========================================================
   5. TIMELINE — vertical with alternating sides on desktop
   =========================================================== */
.timeline-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(31, 158, 216, 0.04) 0%, var(--white) 100%);
}
.timeline-section .section-head {
  text-align: center;
  margin-bottom: 60px;
}
.timeline-section .section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--dark-text);
}
.timeline-section .section-head p {
  color: var(--light-gray);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
    rgba(24, 127, 176, 0) 0%,
    var(--primary-blue) 8%,
    var(--light-blue) 50%,
    var(--lighter-blue) 92%,
    rgba(75, 181, 232, 0) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px 50px 30px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.revealed {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item.right {
  margin-left: 50%;
  padding: 30px 0 30px 50px;
}
.timeline-dot {
  position: absolute;
  top: 38px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary-blue);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(24, 127, 176, 0.25);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.timeline-item.left .timeline-dot {
  right: -22px;
}
.timeline-item.right .timeline-dot {
  left: -22px;
}
.timeline-item:hover .timeline-dot {
  background: var(--grad);
  color: var(--white);
  transform: scale(1.1);
}

.timeline-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(34, 40, 49, 0.06);
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.timeline-item:hover .timeline-card {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(24, 127, 176, 0.2);
}
/* Little connector arrow pointing to the dot */
.timeline-card::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 1px solid rgba(34, 40, 49, 0.06);
  transform: rotate(45deg);
}
.timeline-item.left .timeline-card::before {
  right: -9px;
  border-left: none;
  border-bottom: none;
}
.timeline-item.right .timeline-card::before {
  left: -9px;
  border-right: none;
  border-top: none;
}
.timeline-year {
  display: inline-block;
  background: var(--grad);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.timeline-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.timeline-card p {
  font-size: 0.94rem;
  color: var(--light-gray);
  line-height: 1.65;
}

/* ===========================================================
   6. TEAM SECTION
   =========================================================== */
.team-section {
  padding: 80px 0;
  background: var(--white);
}
.team-section .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.team-section .section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--dark-text);
}
.team-section .section-head p {
  color: var(--light-gray);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0 auto;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(34, 40, 49, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
}
.team-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.team-card:nth-child(1) { transition-delay: 0.05s; }
.team-card:nth-child(2) { transition-delay: 0.2s; }
.team-card:nth-child(3) { transition-delay: 0.35s; }
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.team-card.featured::before { background: var(--red); opacity: 0.85; }
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(24, 127, 176, 0.2);
}
.team-card:hover::before { opacity: 1; }

.team-avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 22px;
  position: relative;
}
.avatar-initial {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(160deg, #0a2638 0%, #14516e 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -2px;
  box-shadow: 0 10px 24px rgba(10, 38, 56, 0.3);
  border: 3px solid var(--white);
  transition: transform 0.35s ease;
}
.team-card.featured .avatar-initial {
  background: linear-gradient(160deg, #c40510 0%, #E30613 100%);
  box-shadow: 0 10px 24px rgba(227, 6, 19, 0.3);
}
.avatar-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.4s ease;
  z-index: 1;
}
.team-card.featured .avatar-glow { background: var(--red); }
.team-card:hover .avatar-glow { opacity: 0.5; }
.team-card:hover .avatar-initial { transform: scale(1.04); }

.team-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.team-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card.featured .team-role { color: var(--red); }
.team-body p {
  font-size: 0.94rem;
  color: var(--light-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.team-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.team-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(24, 127, 176, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.team-socials a:hover {
  background: var(--grad);
  color: var(--white);
  transform: translateY(-3px);
}
.team-card.featured .team-socials a:hover {
  background: var(--red);
}

/* ===========================================================
   7. CTA BANNER (about-specific tweaks)
   =========================================================== */
.about-cta {
  margin-top: 0;
}

/* ===========================================================
   8. RESPONSIVE
   =========================================================== */
@media (max-width: 950px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .story-visual { max-width: 520px; margin: 0 auto; width: 100%; }

  .mission-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 32px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .team-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 850px) {
  .about-hero { padding: 80px 0 140px; }
  .hero-wave-bottom { height: 60px; }

  .story-section,
  .mission-section,
  .stats-section,
  .timeline-section,
  .team-section { padding: 60px 0; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Timeline switches to one-sided layout */
  .timeline-line {
    left: 22px;
    transform: none;
  }
  .timeline-item,
  .timeline-item.right {
    width: 100%;
    margin-left: 0;
    padding: 18px 0 18px 60px;
  }
  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 0;
    right: auto;
  }
  .timeline-item.left .timeline-card::before,
  .timeline-item.right .timeline-card::before {
    left: -9px;
    right: auto;
    border-right: none;
    border-top: none;
    border-left: 1px solid rgba(34, 40, 49, 0.06);
    border-bottom: 1px solid rgba(34, 40, 49, 0.06);
  }

  .story-badge { right: 0; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .mission-pillars {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .about-hero { padding: 70px 0 130px; }
  .about-hero h1 { letter-spacing: -1.2px; }
  .hero-lead { font-size: 1rem; }

  .quote-card { padding: 30px 24px; border-radius: 18px; }
  .quote-card blockquote { font-size: 1.1rem; }
  .story-badge {
    bottom: -18px;
    right: 50%;
    transform: translateX(50%);
    padding: 12px 14px;
  }
  .story-badge .badge-icon { width: 36px; height: 36px; font-size: 0.9rem; }

  .mission-card {
    padding: 36px 22px;
    border-radius: 22px;
  }
  .mission-pillars { grid-template-columns: 1fr; gap: 12px; }
  .pillar { padding: 18px 14px; }

  .stat-card { padding: 26px 18px; }
  .stat-icon { width: 52px; height: 52px; font-size: 1.2rem; }

  .timeline-card { padding: 20px 22px; }
  .timeline-item,
  .timeline-item.right { padding-left: 52px; }
  .timeline-dot { width: 38px; height: 38px; font-size: 0.9rem; top: 26px; }

  .team-card { padding: 32px 22px 28px; border-radius: 16px; }
  .team-avatar { width: 96px; height: 96px; }
  .avatar-initial { font-size: 2.3rem; }
}