/* Digital Employees Page Styles */

/* Employees Detail Section - No Hero */
.employees-detail-section {
  background-color: #f8f9fa;
  padding: 0;
  margin: 0;
  min-height: calc(100vh - 140px);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Comparison Container */
.comparison-container {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 4rem;
}

.comparison-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Architecture Diagram */
.architecture-diagram {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.arch-layer {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 6px solid;
  transition: all 0.3s ease;
}

.arch-layer:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.arch-layer.strategic {
  border-left-color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(139, 92, 246, 0.02));
}

.arch-layer.business {
  border-left-color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
}

.arch-layer.management {
  border-left-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
}

.layer-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.layer-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.layer-desc {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.layer-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.layer-tag {
  background: white;
  color: var(--text-gray);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  border: 1px solid var(--border-color);
}

/* Layer Header Section */
.layer-header-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--accent-color);
}

.layer-icon {
  font-size: 3rem;
}

.layer-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.layer-section-desc {
  color: var(--text-gray);
  font-size: 1.125rem;
}

/* Detailed Employee Cards */
.employees-detailed-grid {
  display: grid;
  gap: 3rem;
}

.employee-detailed-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.employee-detailed-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.employee-detailed-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.employee-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}

.employee-title-group {
  flex: 1;
}

.employee-detailed-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.employee-english-name {
  color: var(--text-gray);
  font-size: 1rem;
}

.employee-roi-badge {
  background: var(--success-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
}

.employee-detailed-body {
  display: grid;
  gap: 2rem;
}

.employee-detailed-body h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.employee-value-prop p {
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.8;
}

.employee-scenarios .scenario-tags,
.employee-methodology .methodology-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skills-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.skill-type {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.skill-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.skill-count {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.skill-label {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.method-tag {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.1));
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--accent-color);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* Compact Employee Cards */
.employees-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.employee-compact-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.employee-compact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
}

.employee-compact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.employee-compact-avatar {
  font-size: 2.5rem;
}

.employee-compact-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.employee-compact-english {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.roi-badge-small {
  background: var(--success-color);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: auto;
}

.employee-compact-value {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.employee-compact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag-small {
  background: var(--bg-light);
  color: var(--text-gray);
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  border: 1px solid var(--border-color);
}

.btn-link-small {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-link-small:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* CTA Section */
.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Active Nav Link */
.nav-link.active {
  color: var(--accent-color);
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-color);
}

/* Sidebar Layout */
.employees-detail-section {
  padding: 0;
}

.employees-layout {
  display: flex;
  min-height: calc(100vh - 80px);
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 0;
}

/* Left Sidebar */
.employees-sidebar {
  width: 280px;
  background: white;
  border-right: 2px solid var(--border-color);
  position: sticky;
  top: 80px;
  height: calc(100vh + 200px);
  flex-shrink: 0;
}

.sidebar-sticky {
  padding: 2rem 1.5rem;
}

.sidebar-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.sidebar-group {
  margin-bottom: 1.5rem;
}

.sidebar-group-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.sidebar-group-header.strategic {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  color: #8b5cf6;
}

.sidebar-group-header.business {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  color: #3b82f6;
}

.sidebar-group-header.management {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  color: #10b981;
}

.sidebar-icon {
  font-size: 1.25rem;
}

.sidebar-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav-list li {
  margin-bottom: 0.25rem;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-gray);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.sidebar-nav-link:hover {
  background: var(--bg-light);
  color: var(--text-dark);
  border-color: var(--accent-color);
}

.sidebar-nav-link.active {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.05));
  color: var(--primary-color);
  font-weight: 600;
  border-color: var(--accent-color);
}

.nav-avatar {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Right Content Area */
.employees-content {
  flex: 1;
  padding: 5rem 0 3rem 0;
  background: var(--bg-light);
  overflow-y: auto;
}

.content-layer-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.content-layer-header.strategic {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  border-left: 6px solid #8b5cf6;
}

.content-layer-header.business {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  border-left: 6px solid #3b82f6;
}

.content-layer-header.management {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border-left: 6px solid #10b981;
}

.content-layer-header .layer-icon {
  font-size: 3rem;
}

.content-layer-header .layer-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.content-layer-header .layer-desc {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Employee Card */
.employee-card {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.employee-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.employee-card-header {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.05), rgba(10, 42, 90, 0.02));
  border-bottom: 2px solid var(--border-color);
}

.employee-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.employee-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.employee-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.employee-card .employee-english-name {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.employee-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-badge {
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
}

.meta-roi {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
}

.employee-card-body {
  padding: 2.5rem;
}

.employee-section {
  margin-bottom: 2rem;
}

.employee-section:last-child {
  margin-bottom: 0;
}

.employee-section .section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.employee-section .section-title::before {
  content: '';
  width: 4px;
  height: 1.25rem;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-content {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1rem;
}

.workflow-steps {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.workflow-step {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border-color);
}

.workflow-arrow {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.25rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.skill-category {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid var(--border-color);
}

.skill-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.skill-icon {
  font-size: 1.5rem;
}

.skill-count {
  font-size: 0.95rem;
}

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

.skill-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.skill-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Methodology Grid */
.methodology-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.methodology-badge {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(10, 42, 90, 0.05));
  color: var(--primary-color);
  padding: 0.625rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

.methodology-badge:hover {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(10, 42, 90, 0.1));
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Responsive */
@media (max-width: 1024px) {
  .employees-layout {
    padding: 0 1.5rem;
  }

  .employees-sidebar {
    width: 240px;
  }

  .employees-content {
    padding: 2rem 0 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .employees-layout {
    flex-direction: column;
    padding: 0 1rem;
    gap: 0;
  }

  .employees-sidebar {
    width: 100%;
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 2px solid var(--border-color);
  }

  .sidebar-sticky {
    padding: 1.5rem;
  }

  .employees-content {
    padding: 1.5rem 0;
  }
}

  .employee-card-header {
    flex-direction: column;
    text-align: center;
  }

  .employee-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .employee-meta {
    justify-content: center;
  }

  .workflow-steps {
    justify-content: center;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .employees-detailed-grid,
  .employees-grid-compact {
    grid-template-columns: 1fr;
  }

  .employee-detailed-header {
    flex-direction: column;
    text-align: center;
  }

  .skills-breakdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .layer-header-section {
    flex-direction: column;
    text-align: center;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-desc {
    font-size: 1rem;
  }
}

/* Employee Detail Placeholder */
.employee-detail-placeholder {
  text-align: center;
  padding: 6rem 2rem;
  color: #666;
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
}

.employee-detail-placeholder h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.employee-detail-placeholder p {
  font-size: 1rem;
  color: #666;
}

/* Employee Detail Card */
.employee-detail-card {
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.employee-detail-header {
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.employee-detail-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.employee-detail-info {
  flex: 1;
}

.employee-name-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.employee-detail-name {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.employee-detail-english {
  font-size: 1rem;
  color: #999;
  font-weight: 400;
  margin: 0;
}

.employee-positioning {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

.employee-detail-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.meta-badge.strategic {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
}

.meta-badge.business {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}

.meta-badge.management {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.meta-badge.level {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: white;
}

/* Employee Detail Body */
.employee-detail-body {
  padding: 3rem;
}

.detail-section {
  margin-bottom: 3rem;
}

.detail-section:last-child {
  margin-bottom: 0;
}

/* Three Columns Layout */
.detail-section-three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.detail-column {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
}

.detail-column .detail-section-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  border-bottom: none;
  padding-bottom: 0;
}

.detail-column .detail-list {
  margin: 0;
}

.detail-column .detail-list li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.detail-column .detail-list li::before {
  font-size: 0.875rem;
}

.detail-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.detail-section-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

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

.detail-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.8;
  color: #333;
}

.detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Workflow Diagram */
.workflow-diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.workflow-step {
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
}

.workflow-arrow {
  color: var(--accent-color);
  font-size: 1.25rem;
  font-weight: bold;
}

/* Methodology Grid */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.methodology-badge {
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-left: 3px solid var(--accent-color);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Section Description */
.section-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

/* Skill Category Section */
.skill-category-section {
  margin-bottom: 2.5rem;
}

.skill-category-header-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-left: 4px solid #ddd;
}

.skill-category-header-bar.scheduled {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-left-color: #3b82f6;
}

.skill-category-header-bar.event {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-left-color: #f97316;
}

.skill-category-header-bar.manual {
  background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
  border-left-color: #a855f7;
}

.skill-category-header-bar.approval {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-left-color: #ef4444;
}

.skill-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.skill-category-info {
  flex: 1;
}

.skill-category-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}

.skill-category-header-bar.scheduled .skill-category-title {
  color: #3b82f6;
}

.skill-category-header-bar.event .skill-category-title {
  color: #f97316;
}

.skill-category-header-bar.manual .skill-category-title {
  color: #a855f7;
}

.skill-category-header-bar.approval .skill-category-title {
  color: #ef4444;
}

.skill-category-desc {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.skill-count {
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  background: white;
  font-weight: 600;
  color: #666;
  flex-shrink: 0;
}

/* Skill Table */
.skill-table-wrapper {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 0 0 8px 8px;
}

.skill-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.skill-table thead {
  background: #f8f9fa;
}

.skill-table th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  border-bottom: 2px solid #e5e7eb;
  white-space: nowrap;
}

.skill-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s ease;
}

.skill-table tbody tr:last-child {
  border-bottom: none;
}

.skill-table tbody tr:hover {
  background: #f9fafb;
}

.skill-table td {
  padding: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  vertical-align: top;
}

.skill-name-cell {
  font-weight: 700;
  color: #1a1a1a;
}

.skill-trigger-cell {
  color: #666;
  font-weight: 500;
}

.skill-desc-cell {
  color: #555;
}

.skill-output-cell {
  color: #333;
  font-weight: 600;
}

.skill-category-section:nth-child(2) .skill-output-cell {
  color: #3b82f6;
}

.skill-category-section:nth-child(3) .skill-output-cell {
  color: #f97316;
}

.skill-category-section:nth-child(4) .skill-output-cell {
  color: #a855f7;
}

.skill-category-section:nth-child(5) .skill-output-cell {
  color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
  .employee-detail-header {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .employee-name-row {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
  }

  .employee-detail-name {
    font-size: 1.5rem;
  }

  .employee-detail-english {
    font-size: 0.875rem;
  }

  .employee-positioning {
    font-size: 1rem;
  }

  .employee-detail-body {
    padding: 2rem 1.5rem;
  }

  .detail-section-three-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .workflow-diagram {
    flex-direction: column;
    align-items: stretch;
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }

  .methodology-grid {
    grid-template-columns: 1fr;
  }

  .skill-category-header-bar {
    flex-wrap: wrap;
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }

  .skill-icon {
    font-size: 1.25rem;
  }

  .skill-category-info {
    flex: 1 1 100%;
    order: 2;
  }

  .skill-category-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .skill-category-desc {
    font-size: 0.75rem;
  }

  .skill-count {
    font-size: 0.8rem;
    order: 1;
  }

  /* 移动端表格优化 */
  .skill-table-wrapper {
    border-radius: 0 0 6px 6px;
  }

  .skill-table {
    font-size: 0.85rem;
  }

  .skill-table th,
  .skill-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }

  .skill-table th {
    font-size: 0.75rem;
  }

  /* 在小屏幕上隐藏部分列，只显示关键信息 */
  @media (max-width: 640px) {
    .skill-table th:nth-child(2),
    .skill-table td:nth-child(2) {
      display: none;
    }
  }
}
