/* =========================================================
   investor-organization.css
   用途：公司組織架構頁（Investor_organization.aspx）
   作用範圍：.investor-organization-page
========================================================= */

.investor-organization-page {
  --inv-primary: #0c596f;
  --inv-accent: #19a7b8;
  --inv-text: #1a3040;
  --inv-muted: #7a94a3;
  --inv-border: #dce4ea;
}

.investor-organization-content {
  width: 100%;
}

.investor-organization-content .org-chart-block {
  width: 100%;
}

.investor-organization-content .org-chart-figure {
  display: block;
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 28px 28px;
  background: #ffffff;
  border: 1px solid var(--inv-border);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(7, 41, 56, 0.06);
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.investor-organization-content .org-chart-figure:hover {
  transform: translateY(-3px);
  border-color: rgba(25, 167, 184, 0.4);
  box-shadow: 0 10px 24px rgba(7, 41, 56, 0.1);
}

.investor-organization-content .org-chart-figure__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.investor-organization-content .org-chart-note {
  max-width: 920px;
  margin: 20px auto 0;
  color: var(--inv-muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 767.98px) {
  .investor-organization-content .org-chart-figure {
    padding: 16px;
  }
}
