/* ============================================================
   Corporate Ops Team Page
   ============================================================ */

body.corporate-active #expanded-title,
body.corporate-active #detail-panel,
body.corporate-active #bg-layer,
body.corporate-active #c4-link { display: none !important; }

/* ---- Team Hero (EPW-TEM-002) ---- */
.corp-team-hero {
  padding: 32px 28px 24px;
  text-align: center;
  background: linear-gradient(180deg, #f5f3ff 0%, #fff 100%);
  border-bottom: 1px solid #e5e7eb;
}
.corp-team-lineup {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.corp-team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.corp-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(124, 58, 237, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.corp-team-avatar:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(124, 58, 237, 0.35);
}
.corp-team-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.corp-team-role {
  font-size: 0.7rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.corp-team-mission {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
}
.corp-team-mission--bold {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

/* ---- Body ---- */
.corp-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px 10cm;
}

/* ---- Collapsible Org Chart ---- */
.corp-orgchart-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  transition: background 0.15s, border-color 0.15s;
  margin-bottom: 12px;
}
.corp-orgchart-toggle:hover {
  background: #f1f5f9;
  border-color: #7c3aed;
}
.corp-orgchart-toggle .chevron {
  transition: transform 0.2s;
  font-size: 0.7rem;
}
.corp-orgchart-toggle.expanded .chevron {
  transform: rotate(90deg);
}
.corp-orgchart-content {
  display: none;
  padding: 16px 0;
}
.corp-orgchart-content.visible {
  display: block;
}
