/* 弘毅养正 - 师资团队页面样式 */

.section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 50px; margin-bottom: 12px; letter-spacing: 1px; }
.section-title { font-size: 36px; font-weight: 800; color: #1a1a2e; margin-bottom: 11px; }
.section-title em { color: var(--primary); font-style: normal; }
.section-desc { font-size: 16px; color: #666; max-width: 540px; margin: 0 auto; line-height: 1.8; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.team-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s; border: 1px solid var(--border); text-align: center; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-img { height: 200px; overflow: hidden; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-badge { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; font-size: 10px; padding: 3px 10px; border-radius: 50px; font-weight: 600; white-space: nowrap; }
.team-body { padding: 16px; }
.team-body h3 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 3px; }
.team-body .role { font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 6px; }
.team-body p { font-size: 12px; color: #666; line-height: 1.6; }
.team-intro { background: #f8faf9; padding: 60px 0; }
.cta-banner { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%); }
.cta-banner h2 { font-size: 36px; font-weight: 800; color: white; margin-bottom: 12px; position: relative; }
.cta-banner > p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 30px; position: relative; }
.cta-phone { font-size: 48px; font-weight: 900; color: var(--accent); margin-bottom: 24px; position: relative; display: block; letter-spacing: 2px; }
.cta-btn { background: linear-gradient(135deg, var(--accent), #f5a623); color: #1a1a2e; padding: 15px 44px; border-radius: 50px; font-size: 16px; font-weight: 700; display: inline-block; transition: all 0.3s; position: relative; }
.cta-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(247,183,49,0.4); }

.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.reason-card { background: white; border-radius: 14px; padding: 24px; text-align: center; box-shadow: var(--shadow); }
.reason-icon { font-size: 32px; margin-bottom: 12px; }
.reason-card h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.reason-card p { font-size: 14px; color: #666; line-height: 1.7; }

@media (max-width: 1200px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 52px 0; }
  .section-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
