/* ==========================================================================
   YOUR LABOR - Worker Labor Hub Pool Enrollment Styles
   ========================================================================== */

.labor-hub-worker-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 22px 18px;
  color: white;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #334155;
}

.hub-worker-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(234, 88, 12, 0.25);
  color: #fb923c;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(234, 88, 12, 0.4);
}

.hub-worker-title {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 6px;
  line-height: 1.25;
}

.hub-worker-desc {
  font-size: 0.78rem;
  color: #cbd5e1;
  line-height: 1.45;
}

/* Enrollment Status Card */
.enrollment-status-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.enrollment-status-box.active-crew {
  border-color: #10b981;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.status-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.status-indicator-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

.status-indicator-badge.enrolled {
  color: #047857;
}

.btn-toggle-enroll {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-toggle-enroll.leave {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.btn-toggle-enroll.join {
  background: var(--worker-gradient);
  color: white;
  box-shadow: var(--shadow-orange-glow);
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-sm);
}

.benefit-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff7ed;
  color: var(--worker-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-text h5 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
}

.benefit-text p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Current Project Deployment Block */
.deployment-card {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 20px;
}

.deployment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.deployment-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e40af;
}

.deployment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  margin-bottom: 6px;
  color: #334155;
}

.deployment-row strong {
  color: #0f172a;
}
