.hero {
  display: flex;
  width: 100%;
  min-height: 10vh;
  height: 10vh;
  padding: 0 15%;
  background: linear-gradient(var(--companyLogo), var(--Highlights), var(--companyLogo));
  background-size: cover;
  background-position: center;
  align-items: center;
  color: aliceblue;
}


.hero-content {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-align: center;
}

.hero-content h3 {
  font-size: 2rem;
  color: var(--font-color);
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1rem;
}

.container {
  min-height: 80vh;
  max-width: 1280px;
  margin: 16px auto;
}

/* 表格主要骨架 */
.stakeholder-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* 表頭 - 深灰藍主題配色 */
.stakeholder-table th {
  background-color: #124d5b;
  color: #ffffff;
  padding: 16px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  border-right: 1px solid #1a5c6d;
}

.stakeholder-table th:last-child {
  border-right: none;
}

/* 欄位寬度分配 */
.col-stakeholder {
  width: 15%;
}

.col-issues {
  width: 30%;
}

.col-channels {
  width: 30%;
}

.col-activities {
  width: 25%;
}

/* 儲存格與邊框設定 */
.stakeholder-table td {
  border: 1px solid #e2e8f0;
  padding: 18px 20px;
  vertical-align: middle;
  /* 內容垂直居中 */
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 利害相關者名稱 (第一欄重點標示) */
.stakeholder-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 條列式說明樣式 */
.bullet-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.bullet-list li {
  margin-bottom: 6px;
  color: #334155;
}

.bullet-list li:last-child {
  margin-bottom: 0;
}

/* 聯絡資訊項目樣式 */
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  word-break: break-all;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item .icon {
  color: #2563eb;
  font-size: 1.05rem;
}

.contact-item a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* 分隔線 (同一欄位有多個子項目時使用) */
.sub-group {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e2e8f0;
}

.sub-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sub-title {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================
       RWD 響應式佈局 (Mobile Optimization)
       ========================================== */
@media (max-width: 850px) {

  .stakeholder-table,
  .stakeholder-table thead,
  .stakeholder-table tbody,
  .stakeholder-table th,
  .stakeholder-table td,
  .stakeholder-table tr {
    display: block;
    width: 100%;
  }

  /* 隱藏標準表頭 */
  .stakeholder-table thead {
    display: none;
  }

  .stakeholder-table tr {
    margin-bottom: 24px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .stakeholder-table td {
    border: none;
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 16px;
    position: relative;
  }

  /* 行動端卡片首標題 */
  .stakeholder-table tr td:first-child {
    background-color: #124d5b;
    color: #ffffff;
  }

  .stakeholder-table tr td:first-child .stakeholder-name {
    color: #ffffff;
  }

  /* 為行動端加入 Data Label 標示 */
  .stakeholder-table td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
  }
}