/* TEAM SECTION */
#section-team,
#section-team * {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

#section-team {
  margin-top: 20px;
  margin-bottom: 32px;
}

#section-team .overview-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* HERO */
#section-team .overview-card--hero {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
  padding: 18px 20px 16px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#section-team .overview-card--hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #22c55e, #0ea5e9);
}

#section-team .overview-hero-inner {
  max-width: 540px;
}

#section-team .overview-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #4f46e5;
  margin: 0 0 8px 0;
}

#section-team .overview-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #0f172a;
}
#section-team .overview-subtitle {
  margin: .25rem 0 0;
  font-size: .9rem;
  color: #6b7280;
}

/* MAIN CARD */
#section-team .overview-card--full {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  min-height: 170px;
  overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease;
}

#section-team .overview-card--full::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #22c55e, #0ea5e9);
}

#section-team .overview-card--full:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .10);
}

/* HEADER */
.team-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.team-card-header .overview-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 20%, #f5f3ff, #dde4ff);
  box-shadow: 0 10px 20px rgba(79, 70, 229, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
}

.team-card-header .overview-icon i {
  font-size: 1.1rem;
  color: #4338ca;
}

.team-card-meta {
  flex: 1;
  min-width: 0;
}

.team-card-eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9ca3af;
  margin: 0 0 2px 0;
}

.team-card-title {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 700;
  color: #0f172a;
}

.team-card-description {
  margin: 4px 0 10px;
  font-size: .9rem;
  color: #4b5563;
}

/* METRICS */
.team-metrics {
  display: flex;
  gap: 2rem;
  margin: 4px 0 10px;
  padding: 10px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.team-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-metric-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #9ca3af;
}

.team-metric-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111827;
}

.team-metric-value.text-success {
  color: #10b981;
}

/* FEATURES */
.team-features {
  margin: 4px 0 10px;
  font-size: .9rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ACTIONS */
.team-actions {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
}

.team-actions .btn {
  white-space: nowrap;
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.team-actions .btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.team-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #section-team .overview-grid {
    padding: 0 1rem;
  }
  .team-card-header {
    flex-direction: column;
  }
  .team-metrics {
    flex-direction: column;
    gap: 1rem;
  }
  .team-actions {
    flex-direction: column;
    width: 100%;
  }
  .team-actions .btn {
    width: 100%;
  }
}


