/* ============================================
   团队进化工作坊页面样式
   前缀: tw-
   ============================================ */

/* ============================================
   1. 页面介绍
   ============================================ */
.tw-intro {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 20px;
}

/* ============================================
   2. 工作坊列表
   ============================================ */
.tw-workshop-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tw-workshop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #eff6ff;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 12px;
  transition: all 0.2s;
}

.tw-workshop-item:active {
  transform: scale(0.98);
  background: #dbeafe;
}

.tw-workshop-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.tw-workshop-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1f2937;
}

.tw-more {
  font-size: 0.85rem;
  color: #2563eb;
  margin: 12px 0 0;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .tw-workshop-item {
    padding: 16px 18px;
  }
  .tw-workshop-num {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 359px) {
  .tw-workshop-text {
    font-size: 0.82rem;
  }
  .tw-workshop-num {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* ============================================
   3. 工作坊特点
   ============================================ */
.tw-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tw-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  background: #eff6ff;
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 12px;
  transition: all 0.2s;
}

.tw-feature-card:active {
  transform: scale(0.98);
}

.tw-feature-alt {
  background: #fef9c3;
  border-color: rgba(202,138,4,0.12);
}

.tw-feature-alt .tw-feature-icon {
  background: linear-gradient(135deg, #eab308, #ca8a04);
  box-shadow: 0 4px 12px rgba(202,138,4,0.25);
}

.tw-feature-alt2 {
  background: #f0fdf4;
  border-color: rgba(22,163,74,0.1);
}

.tw-feature-alt2 .tw-feature-icon {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 4px 12px rgba(22,163,74,0.25);
}

.tw-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.tw-feature-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 4px;
}

.tw-feature-card p {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .tw-feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .tw-feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }
}

/* ============================================
   4. 基础套餐
   ============================================ */
.tw-package {
  background: #eff6ff;
  border: 1px solid rgba(37,99,235,0.12);
  border-radius: 16px;
  padding: 24px 20px;
}

.tw-package-badge {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(37,99,235,0.25);
}

.tw-package-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 16px;
}

.tw-package-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tw-package-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.88rem;
  color: #374151;
  border-bottom: 1px solid rgba(37,99,235,0.06);
}

.tw-package-list li:last-child {
  border-bottom: none;
}

.tw-package-list li i {
  color: #2563eb;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tw-package-note {
  font-size: 0.8rem;
  color: #2563eb;
  margin: 12px 0 0;
  font-weight: 500;
}
