/* 急救导师教学规范化培训专区样式 */

.prog-hero {
  background: linear-gradient(135deg, #0b1f3a 0%, var(--primary) 60%, #4b1fd1 100%);
  color: #fff;
  padding: 76px 0 60px;
  margin-top: var(--nav-h);
}
.prog-hero .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 2px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  margin-bottom: 18px;
}
.prog-hero h1 { font-size: 2.5rem; line-height: 1.25; margin: 0 0 14px; }
.prog-hero .lead { font-size: 1.05rem; color: rgba(255, 255, 255, 0.9); max-width: 780px; margin: 0 0 26px; }
.prog-hero .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.prog-kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.prog-kpi {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.prog-kpi strong { display: block; font-size: 1.6rem; font-weight: 800; }
.prog-kpi span { font-size: 0.84rem; color: rgba(255, 255, 255, 0.82); }

/* 章节小标题 */
.sec-eyebrow {
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* 编号卡片 */
.num-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.num-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.num-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 26, 230, 0.12); }
.num-card .no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
}
.num-card h4 { margin: 0 0 8px; font-size: 1.02rem; }
.num-card p { margin: 0; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.num-card .chip {
  display: inline-block; margin-left: 8px; font-size: 0.7rem; font-weight: 700;
  color: #fff; background: var(--accent); border-radius: 999px; padding: 2px 9px; vertical-align: middle;
}

/* 能力权重条 */
.ability-list { display: grid; gap: 16px; }
.ability-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.ability-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.ability-head strong { font-size: 1rem; }
.ability-head em { font-style: normal; font-weight: 800; color: var(--primary); font-size: 1.1rem; }
.ability-track { height: 10px; background: #eef2f7; border-radius: 999px; overflow: hidden; }
.ability-track > span { display: block; height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 999px; }
.ability-item p { margin: 10px 0 0; color: var(--text-secondary); font-size: 0.88rem; }

/* 硬性条件 */
.req-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 22px; }
.req-box { background: var(--primary-soft); border-radius: var(--radius); padding: 18px; text-align: center; }
.req-box strong { display: block; font-size: 1.05rem; color: var(--primary); margin-bottom: 4px; }
.req-box span { font-size: 0.82rem; color: var(--text-secondary); }

/* 课程 Tab */
.prog-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 22px; }
.prog-tab {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--border);
  background: #fff; cursor: pointer; font-size: 0.88rem; font-weight: 600; color: var(--text-secondary);
  transition: all 0.2s ease;
}
.prog-tab:hover { border-color: var(--primary); color: var(--primary); }
.prog-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.prog-pane { display: none; }
.prog-pane.active { display: block; }
.pane-note { font-size: 0.86rem; color: var(--text-secondary); margin: 0 0 14px; }

/* 通用表格（公开页版本） */
.prog-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.prog-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 640px; }
.prog-table th, .prog-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.prog-table thead th { background: var(--primary); color: #fff; font-weight: 600; white-space: nowrap; }
.prog-table tbody tr:last-child td { border-bottom: none; }
.prog-table tbody tr:hover { background: var(--primary-soft); }
.prog-table .c-credit { font-weight: 800; color: var(--primary); text-align: center; width: 72px; }

/* 学分构成小卡 */
.credit-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; margin-bottom: 26px; }
.credit-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; box-shadow: var(--shadow); }
.credit-box strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.credit-box span { font-size: 0.82rem; color: var(--text-secondary); }

/* 步骤流程 */
.step-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.step-item { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius); padding: 18px 20px; }
.step-item .sn { font-size: 0.76rem; font-weight: 800; color: var(--accent); letter-spacing: 1px; }
.step-item h4 { margin: 6px 0 6px; font-size: 0.98rem; }
.step-item p { margin: 0; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* 见习科室卡 */
.dept-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.dept-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.dept-card .dept-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.dept-card .dept-name { font-weight: 800; font-size: 1.05rem; color: var(--primary); }
.dept-card .dept-tag { font-size: 0.74rem; background: var(--accent-light); color: var(--accent); padding: 3px 10px; border-radius: 999px; font-weight: 700; }
.dept-card p { margin: 0; font-size: 0.86rem; color: var(--text-secondary); line-height: 1.7; }

/* 城市标签 */
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.city-chip {
  padding: 10px 22px; border-radius: 999px; background: #fff; border: 1px solid var(--border);
  font-weight: 700; color: var(--primary); box-shadow: var(--shadow);
}

/* 学费卡 */
.tuition-wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 26px; align-items: start; }
.tuition-price {
  background: linear-gradient(135deg, var(--primary) 0%, #4b1fd1 100%);
  color: #fff; border-radius: 16px; padding: 30px; text-align: center;
}
.tuition-price .amount { font-size: 3rem; font-weight: 800; line-height: 1; }
.tuition-price .unit { display: block; margin-top: 8px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.88); }
.tuition-price ul { list-style: none; padding: 0; margin: 22px 0 0; text-align: left; }
.tuition-price ul li { font-size: 0.86rem; padding: 8px 0 8px 22px; position: relative; border-top: 1px solid rgba(255, 255, 255, 0.16); }
.tuition-price ul li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; }
.benefit-list { display: grid; gap: 12px; }
.benefit-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.benefit-item h4 { margin: 0 0 4px; font-size: 0.96rem; color: var(--primary); }
.benefit-item p { margin: 0; font-size: 0.86rem; color: var(--text-secondary); }

/* LMS 模块 */
.mod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.mod-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.mod-card h4 { margin: 0 0 6px; font-size: 0.92rem; }
.mod-card p { margin: 0; font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* 商业数字 */
.biz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.biz-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow); }
.biz-box strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--primary); }
.biz-box span { font-size: 0.84rem; color: var(--text-secondary); }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 20px; font-size: 0.98rem; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q .mark { color: var(--primary); font-size: 1.2rem; transition: transform 0.2s ease; }
.faq-item.open .faq-q .mark { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* 注释 */
.prog-note { font-size: 0.8rem; color: var(--text-secondary); margin-top: 14px; }

@media (max-width: 900px) {
  .tuition-wrap { grid-template-columns: 1fr; }
  .prog-hero h1 { font-size: 1.85rem; }
  .prog-hero { padding: 56px 0 44px; }
}
