/* ============================================================
   HAKKIMIZDA.CSS — Ayyıldız Spor — Maximum Premium v4
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
section { margin: 0; }

:root {
  --dark-900: #050b19;
  --dark-800: #0b1324;
  --dark-700: #131d35;
  --dark-600: #1a2a47;
  --red:       #c1121f;
  --red-light: #ff4d5e;
  --red-glow:  rgba(193,18,31,0.30);
  --gold:      #d4af37;
  --gold-light:#f0d060;
  --cyan:      #22b8c7;
  --white-95:  rgba(255,255,255,0.95);
  --white-88:  rgba(255,255,255,0.88);
  --white-70:  rgba(255,255,255,0.70);
  --white-45:  rgba(255,255,255,0.45);
  --white-12:  rgba(255,255,255,0.12);
  --white-06:  rgba(255,255,255,0.06);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-card: 0 12px 40px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.20);
  --shadow-glow: 0 0 32px var(--red-glow);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

@keyframes orbPulse {
  0%,100% { transform: scale(1) translate(0,0); opacity: 0.55; }
  50%      { transform: scale(1.18) translate(8px,-8px); opacity: 0.85; }
}
@keyframes stripeSlide {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}
@keyframes shimmer {
  from { transform: translateX(-140%); }
  to   { transform: translateX(140%);  }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes countUp {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ---------- CONTAINER ---------- */
.container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

/* ==========================================================
   HERO
   ========================================================== */
.about-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--dark-900) 0%, #0a1535 50%, var(--dark-800) 100%);
  border-radius: 0;
}

/* diagonal stripes */
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px, transparent 18px,
    rgba(255,255,255,0.015) 18px, rgba(255,255,255,0.015) 20px
  );
  animation: stripeSlide 6s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.about-hero-bg {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.about-hero-bg::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(193,18,31,0.28) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbPulse 7s ease-in-out infinite;
  filter: blur(45px);
}
.about-hero-bg::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  bottom: -60px; right: -60px;
  background: radial-gradient(circle, rgba(34,184,199,0.20) 0%, transparent 70%);
  border-radius: 50%;
  animation: orbPulse 9s ease-in-out infinite reverse;
  filter: blur(50px);
}

.about-hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 700px;
  animation: fadeUp 0.9s ease both;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(193,18,31,0.20), rgba(193,18,31,0.08));
  border: 1px solid rgba(193,18,31,0.50);
  color: var(--red-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35em 1.1em;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
}

.about-hero-content h1 {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--white-88);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.about-hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--white-70);
  line-height: 1.65;
}

/* ==========================================================
   SECTION WRAPPER
   ========================================================== */
.about-section {
  padding: 5rem 0;
}

/* section heading pattern */
.about-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.about-section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white-88);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.about-section-header h2::after {
  content: '';
  display: block;
  width: 52px; height: 3px;
  background: var(--red);
  border-radius: 3px;
  margin: 0.55rem auto 0;
}
.about-section-header p {
  font-size: 1rem;
  color: var(--white-45);
}

/* ==========================================================
   HIKAYE / INTRO
   ========================================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white-88);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.about-text h2::after {
  content: '';
  display: block;
  width: 52px; height: 3px;
  background: var(--red);
  border-radius: 3px;
  margin-top: 0.55rem;
}

.about-text p {
  font-size: 1rem;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.about-text p:last-child { margin-bottom: 0; }

.about-highlight {
  flex-shrink: 0;
}

.highlight-card {
  background: linear-gradient(150deg, rgba(12,19,36,0.95), rgba(20,29,53,0.85));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
  min-width: 160px;
}
.highlight-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.highlight-year {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.highlight-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-45);
}

/* ==========================================================
   ACHIEVEMENTS GRID
   ========================================================== */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.achievement-card {
  background: linear-gradient(150deg, rgba(12,19,36,0.95), rgba(20,29,53,0.85));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 2rem 1.8rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.achievement-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.achievement-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  transform: translateX(-140%);
}
.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 20px rgba(212,175,55,0.10);
  border-color: rgba(212,175,55,0.20);
}
.achievement-card:hover::before { transform: scaleX(1); }
.achievement-card:hover::after  { animation: shimmer 0.65s ease forwards; }

.achievement-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.achievement-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white-88);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.achievement-card p {
  font-size: 0.88rem;
  color: var(--white-45);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.achievement-year {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.30);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3em 0.9em;
  border-radius: 50px;
}

/* ==========================================================
   MISSION & VISION
   ========================================================== */
.about-mission-section {
  background: linear-gradient(160deg, var(--dark-800) 0%, var(--dark-900) 100%);
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}
.about-mission-section::before {
  content: '';
  position: absolute;
  top: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(193,18,31,0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}
.about-mission-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(34,184,199,0.10) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative; z-index: 1;
}

.mission-card {
  background: linear-gradient(150deg, rgba(16,25,48,0.85), rgba(22,36,62,0.70));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: rgba(193,18,31,0.30);
}

.mission-icon { font-size: 2.4rem; margin-bottom: 1.2rem; }

.mission-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white-88);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.mission-card p {
  font-size: 0.92rem;
  color: var(--white-70);
  line-height: 1.8;
}

/* ==========================================================
   VALUES GRID
   ========================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 960px;
  margin-inline: auto;
}

.value-item {
  background: linear-gradient(145deg, var(--dark-800), var(--dark-700));
  border: 1px solid var(--white-12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.value-item:hover {
  transform: translateY(-6px);
  border-color: rgba(34,184,199,0.30);
  box-shadow: 0 0 30px rgba(34,184,199,0.15), var(--shadow-card);
}
.value-item:hover::after { transform: scaleX(1); }

.value-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.value-item h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white-95);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.value-item p {
  font-size: 0.8rem;
  color: var(--white-45);
  line-height: 1.6;
}

/* ==========================================================
   BOARD / MANAGEMENT SECTION
   ========================================================== */
.board-section {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(175deg, #030a1a 0%, #0a1535 40%, #060d1e 100%);
  overflow: hidden;
}

/* Floating orbs */
.board-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.board-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbPulse 14s ease-in-out infinite;
}
.board-orb-1 {
  width: 400px; height: 400px;
  top: -60px; right: -60px;
  background: radial-gradient(circle, rgba(193,18,31,0.18) 0%, transparent 70%);
}
.board-orb-2 {
  width: 320px; height: 320px;
  bottom: -40px; left: -40px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  animation-delay: -6s;
  animation-duration: 18s;
}

/* Header */
.board-header {
  position: relative; z-index: 1;
  text-align: center;
  margin-bottom: 3rem;
}
.board-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4em 1.2em;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(12px);
}
.board-badge svg { opacity: 0.6; }

.board-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}
.board-header h2 span {
  background: linear-gradient(135deg, var(--red-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.board-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  max-width: 440px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ---- Spotlight (Founder/President) ---- */
.board-spotlight {
  position: relative; z-index: 1;
  margin-bottom: 2.5rem;
}
.board-spot-card {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  max-width: 740px;
  margin: 0 auto;
  background: linear-gradient(165deg, rgba(12,20,37,0.97) 0%, rgba(20,31,56,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 2.2rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94), box-shadow 0.5s ease;
}
.board-spot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(193,18,31,0.12), 0 0 60px rgba(193,18,31,0.06);
}

/* Subtle top accent */
.board-spot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), transparent);
  opacity: 0.6;
}

/* Photo / placeholder */
.board-spot-img {
  position: relative;
  flex-shrink: 0;
}
.board-spot-placeholder {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}
.board-spot-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(var(--red), var(--gold), var(--red));
  opacity: 0.4;
  animation: boardRingSpin 8s linear infinite;
  z-index: 0;
}
@keyframes boardRingSpin {
  to { transform: rotate(360deg); }
}

.board-spot-info { flex: 1; min-width: 0; }

.board-role {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.18);
  padding: 0.3em 0.9em;
  border-radius: 50px;
  margin-bottom: 0.7rem;
}
.board-role-founder {
  background: linear-gradient(135deg, rgba(193,18,31,0.15), rgba(212,175,55,0.12));
  border-color: rgba(193,18,31,0.30);
  color: var(--red-light);
}

.board-spot-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.board-spot-info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.board-spot-since {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.board-spot-since svg { opacity: 0.5; }

/* ---- Board Grid ---- */
.board-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 740px;
  margin-inline: auto;
}

.board-card {
  background: linear-gradient(165deg, rgba(12,20,37,0.97) 0%, rgba(10,15,30,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 1.6rem 1.3rem 1.4rem;
  text-align: center;
  transition: transform 0.45s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.45s ease,
              border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.board-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.30), 0 0 0 1px rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.10);
}

/* Hover accent line */
.board-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.board-card:hover::after {
  transform: scaleX(1);
}

/* Card photo placeholder */
.board-card-img {
  margin: 0 auto 1rem;
}
.board-card-placeholder {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.12);
  margin: 0 auto;
  border: 2px solid rgba(255,255,255,0.06);
  transition: border-color 0.4s ease, background 0.4s ease;
}
.board-card:hover .board-card-placeholder {
  border-color: rgba(193,18,31,0.25);
  background: linear-gradient(145deg, rgba(193,18,31,0.06), rgba(255,255,255,0.03));
}

/* Card photo (actual image) */
.board-card-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  border: 2px solid rgba(255,255,255,0.08);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.board-card:hover .board-card-photo {
  border-color: rgba(193,18,31,0.35);
  box-shadow: 0 0 20px rgba(193,18,31,0.15);
  transform: scale(1.05);
}
.board-card-featured .board-card-photo {
  width: 86px;
  height: 86px;
  border: 2px solid rgba(193,18,31,0.20);
}
.board-card-featured:hover .board-card-photo {
  border-color: rgba(193,18,31,0.45);
  box-shadow: 0 0 24px rgba(193,18,31,0.20);
}

.board-card h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.board-card-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* Featured coach card */
.board-card-featured {
  border-color: rgba(193,18,31,0.18);
  background: linear-gradient(165deg, rgba(16,22,42,0.98) 0%, rgba(14,20,38,0.98) 100%);
  padding: 1.8rem 1.5rem 1.6rem;
}
.board-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  opacity: 0.85;
  z-index: 1;
}
.board-card-featured::after {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.board-card-featured:hover {
  border-color: rgba(193,18,31,0.28);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 20px rgba(193,18,31,0.08);
}
.board-card-featured .board-card-placeholder {
  width: 86px; height: 86px;
  border: 2px solid rgba(193,18,31,0.20);
  background: linear-gradient(145deg, rgba(193,18,31,0.05), rgba(255,255,255,0.03));
}
.board-card-featured:hover .board-card-placeholder {
  border-color: rgba(193,18,31,0.35);
  box-shadow: 0 0 16px rgba(193,18,31,0.12);
}
.board-card-featured h4 {
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
}
.board-card-featured .board-card-desc {
  color: rgba(255,255,255,0.50);
}

/* Lead row — 2 featured coaches */
.board-grid-lead {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 540px;
  margin: 0 auto 1.2rem;
}

/* Rest row — 4 other coaches */
.board-grid-rest {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin-inline: auto;
}

/* ==========================================================
   STATS STRIP
   ========================================================== */
.about-stats-section {
  background: linear-gradient(135deg, #0a0f1e 0%, var(--dark-800) 50%, #0a0f1e 100%);
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}
.about-stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px, transparent 18px,
    rgba(255,255,255,0.012) 18px, rgba(255,255,255,0.012) 20px
  );
  animation: stripeSlide 6s linear infinite;
  pointer-events: none;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  position: relative; z-index: 1;
}

.about-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(150deg, rgba(12,19,36,0.95), rgba(20,29,53,0.85));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.about-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.about-stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow), var(--shadow-card); }
.about-stat:hover::before { transform: scaleX(1); }

.about-stat-number {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--red-light);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 16px rgba(255,77,94,0.20);
}

.about-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-45);
}

/* ==========================================================
   CTA
   ========================================================== */
.about-cta {
  background: linear-gradient(155deg, rgba(12,19,36,0.95), rgba(20,29,53,0.85));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.40);
  position: relative; overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(193,18,31,0.22) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(45px);
  pointer-events: none;
}
.about-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -50px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(34,184,199,0.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.about-cta > * { position: relative; z-index: 1; }

.about-cta h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white-88);
  margin-bottom: 0.9rem;
  letter-spacing: -0.03em;
}

.about-cta p {
  font-size: 1rem;
  color: var(--white-70);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.7;
}

.about-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-btn.primary {
  background: linear-gradient(135deg, var(--red) 0%, #9e0e18 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85em 2.2em;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(193,18,31,0.45), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: var(--transition);
}
.about-cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(193,18,31,0.60);
}

.about-cta-btn.secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--white-12);
  color: var(--white-88);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.83em 2em;
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.about-cta-btn.secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.30);
  transform: translateY(-2px);
}

/* ==========================================================
   TEAMS / LIG GRUPLARI SECTION
   ========================================================== */
.teams-section {
  background: linear-gradient(165deg, #060d1e 0%, #0b1535 40%, #070e20 100%);
  padding: 5.5rem 1rem;
  position: relative;
  overflow: hidden;
}
.teams-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px, transparent 18px,
    rgba(255,255,255,0.012) 18px, rgba(255,255,255,0.012) 20px
  );
  animation: stripeSlide 6s linear infinite;
  pointer-events: none;
}
.teams-section .about-section-header { position: relative; z-index: 1; }

.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.3rem;
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin-inline: auto;
}

.team-card {
  background: linear-gradient(155deg, rgba(12,19,36,0.95), rgba(20,29,53,0.90));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.6rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.40), 0 0 0 1px rgba(255,255,255,0.08);
  border-color: rgba(193,18,31,0.20);
}
.team-card.active {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.12);
  border-color: rgba(193,18,31,0.30);
}
.team-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}

/* Featured / Champion / Elit variants */
.team-card-featured .team-card-accent {
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.team-card-champion .team-card-accent {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.team-card-elit .team-card-accent {
  background: linear-gradient(90deg, var(--cyan), #6ee7b7);
}
.team-card-champion { border-color: rgba(212,175,55,0.15); }
.team-card-elit { border-color: rgba(34,184,199,0.15); }
.team-card-featured:hover { border-color: rgba(193,18,31,0.30); box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 24px rgba(193,18,31,0.08); }
.team-card-champion:hover { border-color: rgba(212,175,55,0.25); box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 24px rgba(212,175,55,0.10); }
.team-card-elit:hover { border-color: rgba(34,184,199,0.25); box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 24px rgba(34,184,199,0.10); }

/* Futbol Okulu card */
.team-card-school .team-card-accent {
  background: linear-gradient(90deg, #fca311, #ff6b35);
}
.team-card-school { border-color: rgba(252,163,17,0.15); }
.team-card-school:hover { border-color: rgba(252,163,17,0.30); box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 24px rgba(252,163,17,0.10); }

.team-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0;
}
.team-icon {
  font-size: 1.8rem;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  flex-shrink: 0;
}
.team-header > div {
  flex: 1;
  min-width: 0;
}
.team-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white-95);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.2;
}
.team-league {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-45);
  margin-top: 0.2rem;
}
.team-expand-arrow {
  flex-shrink: 0;
  color: var(--white-45);
  transition: transform 0.3s ease, color 0.3s ease;
  margin-left: auto;
}
.team-card.active .team-expand-arrow {
  transform: rotate(180deg);
  color: var(--red-light);
}
.team-card-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease, margin-top 0.3s ease;
}
.team-card.active .team-card-details {
  max-height: 600px;
  opacity: 1;
  margin-top: 1rem;
}

.team-card > p {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Staff inside team card */
.team-staff {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.staff-item {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 0.45rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.staff-role {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-45);
}
.staff-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white-88);
}

/* Champion / Elit badges */
.team-badge-champion,
.team-badge-elit {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.35em 1em;
  border-radius: 50px;
}
.team-badge-champion {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.30);
  color: var(--gold);
}
.team-badge-elit {
  background: rgba(34,184,199,0.10);
  border: 1px solid rgba(34,184,199,0.25);
  color: var(--cyan);
}

/* ==========================================================
   BRANCHES ABOUT GRID
   ========================================================== */
.branches-about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
}

.branch-about-card {
  background: linear-gradient(150deg, var(--dark-800), var(--dark-700));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.30);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.branch-about-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 15%; right: 15%; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.branch-about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(0,0,0,0.40);
}
.branch-about-card:hover::before { transform: scaleX(1); }
.branch-about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  font-size: 1.8rem;
  margin: 0 auto 0.7rem;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
}
.branch-about-card h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white-95);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.branch-about-card p {
  font-size: 0.76rem;
  color: var(--white-45);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}
.branch-inactive {
  opacity: 0.65;
}
.branch-inactive:hover {
  opacity: 1;
}
.branch-soon-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.20);
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
}
.branch-active-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #22c55e;
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.20);
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
}

/* ==========================================================
   BOARD GRID 3-COL VARIANT
   ========================================================== */
.board-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  gap: 1.1rem;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 760px) {
  .about-hero { min-height: 52vh; }
  .about-hero-content { padding: 0 1rem; }
  .about-intro { grid-template-columns: 1fr; }
  .about-highlight { display: none; }
  .mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta { padding: 2.5rem 1.4rem; }
  .about-cta-buttons { flex-direction: column; align-items: center; }
  .board-section { padding: 4rem 0 3.5rem; }
  .board-spot-card { flex-direction: column; text-align: center; gap: 1.4rem; padding: 1.8rem 1.4rem; }
  .board-spot-info { text-align: center; }
  .board-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .board-grid-lead { max-width: 100%; }
  .board-grid-rest { grid-template-columns: repeat(2, 1fr); }
  .about-section { padding: 3.5rem 0; }
  .teams-section { padding: 3.5rem 1rem; }
  .teams-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .team-card { padding: 1.5rem 1.3rem; }
  .team-icon { width: 40px; height: 40px; font-size: 1.6rem; }
  .team-header h3 { font-size: 1rem; }
  .team-league { font-size: 0.65rem; }
  .team-expand-arrow { width: 14px; height: 14px; }
  .team-card-details p { font-size: 0.85rem; }
  .branches-split-layout { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: repeat(4, 1fr); }
  .branch-small-card { padding: 0.95rem 0.7rem; }
  .branch-small-icon { font-size: 1.4rem; }
  .branch-small-card h4 { font-size: 0.78rem; }
}

@media (max-width: 420px) {
  .about-hero { min-height: 44vh; }
  .about-hero-content h1 { font-size: 1.7rem; }
  .about-hero-content p { font-size: 0.88rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .achievements-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .board-grid-lead { grid-template-columns: 1fr; max-width: 100%; }
  .board-grid-rest { grid-template-columns: repeat(2, 1fr); }
  .board-grid-3 { grid-template-columns: 1fr; }
  .board-card { padding: 1.3rem 1rem 1.2rem; }
  .board-section { padding: 3rem 0 2.5rem; }
  .board-spot-card { padding: 1.4rem 1rem; }
  .about-cta { padding: 2rem 1rem; }
  .about-cta h2 { font-size: 1.4rem; }
  .about-section { padding: 2.5rem 0; }
  .mission-card { padding: 1.5rem 1.2rem; }
  .value-item { padding: 1.3rem 1rem; }
  .about-stat { padding: 1.2rem 0.8rem; }
  .teams-section { padding: 2.5rem 0.75rem; }
  .teams-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .team-card { padding: 1.3rem 1.1rem; }
  .team-icon { width: 36px; height: 36px; font-size: 1.4rem; }
  .team-header h3 { font-size: 0.95rem; }
  .team-league { font-size: 0.6rem; }
  .team-expand-arrow { width: 13px; height: 13px; }
  .team-card-details p { font-size: 0.82rem; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .branch-featured-card { padding: 1.6rem 1.3rem; }
  .branch-featured-icon { font-size: 2.4rem; }
  .branch-featured-card h3 { font-size: 1.25rem; }
  .branch-featured-card p { font-size: 0.85rem; }
  .branch-small-card { padding: 0.9rem 0.65rem; }
  .branch-small-icon { font-size: 1.25rem; }
  .branch-small-card h4 { font-size: 0.75rem; }
}

/* ==========================================================
   BRANCHES SPLIT LAYOUT
   ========================================================== */
.branches-split-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.2rem;
  max-width: 900px;
  margin-inline: auto;
}

/* Left: Featured Futbol Card */
.branch-featured {
  display: flex;
}

.branch-featured-card {
  background: linear-gradient(155deg, rgba(193,18,31,0.15), rgba(12,19,36,0.95));
  border: 1px solid rgba(193,18,31,0.25);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35), 0 0 16px rgba(193,18,31,0.06);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.branch-featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}

.branch-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 24px rgba(193,18,31,0.10);
  border-color: rgba(193,18,31,0.35);
}

.branch-featured-icon {
  font-size: 2.8rem;
  margin-bottom: 0.9rem;
  display: block;
}

.branch-featured-card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white-95);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.branch-featured-card p {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

/* Right: Other Branches Grid (Small) */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.branch-small-card {
  background: linear-gradient(150deg, var(--dark-800), var(--dark-700));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.85rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.75;
}

.branch-small-card:hover {
  opacity: 1;
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.branch-small-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  display: block;
}

.branch-small-card h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white-95);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

/* ==========================================================
   TEAMS ACCORDION
   ========================================================== */
.teams-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 960px;
  margin-inline: auto;
}

.team-accordion-item {
  background: linear-gradient(155deg, rgba(12,19,36,0.95), rgba(20,29,53,0.90));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
  transition: var(--transition);
  position: relative;
}

.team-accordion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
}

.team-accordion-champion::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.team-accordion-elit::before {
  background: linear-gradient(90deg, var(--cyan), #6ee7b7);
}

.team-accordion-school::before {
  background: linear-gradient(90deg, #fca311, #ff6b35);
}

.team-accordion-item:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.40);
}

.team-accordion-item.active {
  border-color: rgba(193,18,31,0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.45), 0 0 20px rgba(193,18,31,0.08);
}

.team-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.team-accordion-toggle:hover {
  background: rgba(255,255,255,0.02);
}

.team-accordion-item.active .team-accordion-toggle {
  background: rgba(193,18,31,0.04);
}

.team-icon-small {
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  flex-shrink: 0;
}

.team-accordion-title {
  flex: 1;
  min-width: 0;
}

.team-accordion-title h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white-95);
  margin: 0 0 0.2rem 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.team-league-small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-45);
}

.team-badge-champion-small,
.team-badge-elit-small,
.team-badge-school-small {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.3em 0.8em;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.team-badge-champion-small {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
}

.team-badge-elit-small {
  background: rgba(34,184,199,0.10);
  border: 1px solid rgba(34,184,199,0.20);
  color: var(--cyan);
}

.team-badge-school-small {
  background: rgba(252,163,17,0.12);
  border: 1px solid rgba(252,163,17,0.25);
  color: #fca311;
}

.team-accordion-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--white-45);
  margin-left: auto;
}

.team-accordion-item.active .team-accordion-arrow {
  transform: rotate(180deg);
  color: var(--red-light);
}

.team-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.team-accordion-item.active .team-accordion-content {
  max-height: 600px;
  opacity: 1;
}

.team-accordion-content p {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.7;
  padding: 0 1.4rem 0.8rem;
  margin: 0 0 0.6rem 0;
}

.team-accordion-content p:last-of-type {
  margin-bottom: 0.8rem;
}

.team-accordion-content .team-staff {
  padding: 0 1.4rem 1.2rem;
}
