/* =============================================================================
   TEAM / MANAGEMENT PAGE  —  management.css
   Add to index.html: <link rel="stylesheet" href="pages/management.css" />
   ============================================================================= */

/* ── How We Work band ────────────────────────────────────────────────────── */
.how-we-work-band {
  background: linear-gradient(135deg, #e8f4fd, #fff8ec);
  border: 1px solid #c8e6f7;
  border-radius: 16px;
  padding: 36px 28px;
  margin: 28px 0;
}

.how-we-work-eyebrow {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a6fa3;
  margin-bottom: 8px;
  font-family: 'Open Sans', sans-serif;
}

.how-we-work-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 24px;
  line-height: 1.3;
}

.how-we-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.how-we-work-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.how-we-work-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(26, 111, 163, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.how-we-work-item-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 3px;
  font-family: 'Open Sans', sans-serif;
}

.how-we-work-item-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

/* =============================================================================
   DARK MODE
   ============================================================================= */
body.dark-mode .how-we-work-band {
  background: linear-gradient(135deg, #1a1a2e, #1a3a5c);
  border-color: #2a2a42;
}

body.dark-mode .how-we-work-eyebrow    { color: #f5a100; }
body.dark-mode .how-we-work-title      { color: #fff; }
body.dark-mode .how-we-work-icon       { background: rgba(255, 255, 255, 0.1); }
body.dark-mode .how-we-work-item-title { color: #fff; }
body.dark-mode .how-we-work-item-desc  { color: rgba(255, 255, 255, 0.6); }
