/*
 * employer.css — styles scoped to the SJS employer landing page.
 * Loaded ONLY when the employer page template is active (see functions.php).
 * Inherits Tailwind CDN and main.css variables:
 *   --purple: #763586
 *   --orange: rgb(255,85,0)
 * Adds employer-specific accent:
 *   --teal:   #0D9488
 *
 * Naming convention: all custom classes prefixed with emp- to avoid
 * collision with candidate-side styles.
 *
 * @package SJS
 */

/* ─────────────────────────────────────────────
   0. Custom Properties (employer scope)
   ───────────────────────────────────────────── */
:root {
  --emp-teal:        #0D9488;
  --emp-teal-light:  #CCFBF1;
  --emp-purple:      #763586;
  --emp-purple-dark: #5c2869;
  --emp-orange:      rgb(255, 85, 0);
  --emp-dark:        #0f172a;
  --emp-dark-card:   #1e293b;
  --emp-radius:      1rem;
  --emp-transition:  0.25s ease;
}


/* ─────────────────────────────────────────────
   1. Shared Button Styles
   ───────────────────────────────────────────── */

/* Primary — orange fill, white text */
.emp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background-color: var(--emp-orange);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  transition: background-color var(--emp-transition), transform var(--emp-transition), box-shadow var(--emp-transition);
  box-shadow: 0 4px 14px rgba(255, 85, 0, 0.35);
  border: 2px solid transparent;
  white-space: nowrap;
}
.emp-btn-primary:hover {
  background-color: #e04e00;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 85, 0, 0.45);
}
.emp-btn-primary:active {
  transform: translateY(0);
}

/* Primary inverted — for use on dark/gradient backgrounds */
.emp-btn-primary-inv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: #fff;
  color: var(--emp-purple);
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color var(--emp-transition), transform var(--emp-transition), box-shadow var(--emp-transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border: 2px solid transparent;
  white-space: nowrap;
}
.emp-btn-primary-inv:hover {
  background-color: #f3e8ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* Ghost — outlined purple */
.emp-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  background-color: transparent;
  color: var(--emp-purple);
  border-radius: 9999px;
  font-weight: 600;
  border: 2px solid var(--emp-purple);
  transition: background-color var(--emp-transition), color var(--emp-transition);
  white-space: nowrap;
}
.emp-btn-ghost:hover {
  background-color: var(--emp-purple);
  color: #fff;
}

/* Secondary — teal for "How it works" CTAs */
.emp-btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  background-color: var(--emp-teal);
  color: #fff;
  border-radius: 9999px;
  font-weight: 600;
  transition: background-color var(--emp-transition), transform var(--emp-transition);
}
.emp-btn-teal:hover {
  background-color: #0f766e;
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────
   2. Header / Nav
   ───────────────────────────────────────────── */
.emp-header {}

.emp-mobile-link {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  color: #4b5563;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background-color var(--emp-transition), color var(--emp-transition);
}
.emp-mobile-link:hover {
  background-color: #f3f4f6;
  color: var(--emp-purple);
}


/* ─────────────────────────────────────────────
   3. Hero Section
   ───────────────────────────────────────────── */
.emp-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #fdf4ff 0%, #f0fdf9 50%, #fff 100%);
}

/* Decorative background blob */
.emp-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(118,53,134,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.emp-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(13,148,136,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.emp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background-color: rgba(118,53,134,0.09);
  border: 1px solid rgba(118,53,134,0.18);
  border-radius: 9999px;
  color: var(--emp-purple);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.emp-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--emp-teal);
  animation: emp-pulse 2s infinite;
}

@keyframes emp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.emp-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--emp-dark);
  margin-bottom: 1.25rem;
}

.emp-hero-title span {
  background: linear-gradient(135deg, var(--emp-purple), var(--emp-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.emp-hero-sub {
  font-size: 1.0625rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}

.emp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.emp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.emp-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

.emp-hero-meta-item svg {
  color: var(--emp-teal);
}

/* Pipeline illustration (right side of hero) */
.emp-pipeline-card {
  background: #fff;
  border-radius: var(--emp-radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,0.05);
}

.emp-pipeline-topbar {
  background: linear-gradient(135deg, var(--emp-purple), #9b59b6);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.emp-pipeline-topbar-title {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.emp-pipeline-topbar-dots {
  display: flex;
  gap: 0.3rem;
}

.emp-pipeline-topbar-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

.emp-pipeline-tabs {
  display: flex;
  border-bottom: 1px solid #f3f4f6;
  background: #fafafa;
  overflow-x: auto;
  scrollbar-width: none;
}
.emp-pipeline-tabs::-webkit-scrollbar { display: none; }

.emp-pipeline-tab {
  flex-shrink: 0;
  padding: 0.6rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  border-bottom: 2px solid transparent;
  cursor: default;
  white-space: nowrap;
}

.emp-pipeline-tab.active {
  color: var(--emp-purple);
  border-bottom-color: var(--emp-purple);
  background: #fff;
}

.emp-pipeline-body {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Candidate row inside pipeline illustration */
.emp-cand-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 0.625rem;
  transition: box-shadow var(--emp-transition);
}

.emp-cand-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.emp-cand-info { flex: 1; min-width: 0; }
.emp-cand-name { font-size: 0.8rem; font-weight: 600; color: #1f2937; }
.emp-cand-role { font-size: 0.7rem; color: #9ca3af; }

.emp-cand-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.emp-cand-badge.new       { background: #ede9fe; color: #7c3aed; }
.emp-cand-badge.shortlist { background: #d1fae5; color: #059669; }
.emp-cand-badge.review    { background: #fef3c7; color: #d97706; }

/* Floating stat cards in hero */
.emp-hero-stat {
  position: absolute;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1f2937;
  animation: emp-float 4s ease-in-out infinite;
  border: 1px solid rgba(0,0,0,0.05);
  z-index: 2;
}

.emp-hero-stat.stat-1 {
  top: -16px;
  left: -24px;
  animation-delay: 0s;
}
.emp-hero-stat.stat-2 {
  bottom: 16px;
  right: -16px;
  animation-delay: 2s;
}

@keyframes emp-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}


/* ─────────────────────────────────────────────
   4. Social Proof Bar
   ───────────────────────────────────────────── */
.emp-proof-bar {
  background: var(--emp-dark);
  padding: 1.25rem 0;
}

.emp-proof-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.emp-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 500;
}

.emp-proof-divider {
  width: 1px;
  height: 20px;
  background: #334155;
}

@media (max-width: 480px) {
  .emp-proof-divider { display: none; }
}


/* ─────────────────────────────────────────────
   5. Section Shared Styles
   ───────────────────────────────────────────── */
.emp-section {
  padding: 5rem 0;
}

.emp-section-alt {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.emp-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emp-teal);
  margin-bottom: 0.625rem;
}

.emp-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--emp-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.emp-section-sub {
  font-size: 1rem;
  color: #6b7280;
  max-width: 560px;
  line-height: 1.7;
}


/* ─────────────────────────────────────────────
   6. Feature Cards
   ───────────────────────────────────────────── */
.emp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.emp-feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--emp-radius);
  padding: 1.75rem;
  transition: box-shadow var(--emp-transition), transform var(--emp-transition), border-color var(--emp-transition);
  position: relative;
  overflow: hidden;
}

.emp-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emp-purple), var(--emp-teal));
  opacity: 0;
  transition: opacity var(--emp-transition);
}

.emp-feature-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: transparent;
}
.emp-feature-card:hover::before {
  opacity: 1;
}

.emp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--emp-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--emp-teal);
  flex-shrink: 0;
}

.emp-feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--emp-dark);
  margin-bottom: 0.5rem;
}

.emp-feature-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.65;
}


/* ─────────────────────────────────────────────
   7. How It Works — 3-step timeline
   ───────────────────────────────────────────── */
.emp-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 3.5rem;
}

@media (max-width: 768px) {
  .emp-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .emp-step-connector { display: none; }
}

.emp-step {
  text-align: center;
  padding: 0 1rem;
}

.emp-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emp-purple), var(--emp-teal));
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(118,53,134,0.35);
  position: relative;
  z-index: 1;
}

.emp-step-connector {
  display: flex;
  align-items: flex-start;
  padding-top: 1.75rem;
}

.emp-step-connector-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--emp-purple), var(--emp-teal));
  opacity: 0.3;
  border-radius: 9999px;
}

.emp-step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--emp-dark);
  margin-bottom: 0.5rem;
}

.emp-step-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
}


/* ─────────────────────────────────────────────
   8. Recruiter Type Cards
   ───────────────────────────────────────────── */
.emp-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.emp-type-card {
  border-radius: var(--emp-radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--emp-transition), box-shadow var(--emp-transition);
}
.emp-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.emp-type-card-hr {
  background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%);
  border: 1px solid rgba(118,53,134,0.15);
}

.emp-type-card-freelance {
  background: linear-gradient(135deg, #f0fdf9 0%, #ccfbf1 100%);
  border: 1px solid rgba(13,148,136,0.15);
}

.emp-type-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.emp-type-icon-hr       { background: var(--emp-purple); color: #fff; }
.emp-type-icon-freelance { background: var(--emp-teal);   color: #fff; }

.emp-type-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--emp-dark);
  margin-bottom: 0.5rem;
}

.emp-type-sub {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.emp-type-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.emp-type-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

.emp-type-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  margin-top: 2px;
}

.emp-type-list-hr li::before       { background: var(--emp-purple); opacity: 0.25; }
.emp-type-list-freelance li::before { background: var(--emp-teal);   opacity: 0.25; }

/* Override with checkmark */
.emp-type-list li::before {
  content: '✓';
  width: auto;
  height: auto;
  background: none;
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 0;
}
.emp-type-list-hr li::before       { color: var(--emp-purple); opacity: 1; }
.emp-type-list-freelance li::before { color: var(--emp-teal);   opacity: 1; }


/* ─────────────────────────────────────────────
   9. Pricing Cards
   ───────────────────────────────────────────── */
.emp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}

.emp-price-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: var(--emp-radius);
  padding: 2rem;
  position: relative;
  transition: transform var(--emp-transition), box-shadow var(--emp-transition);
}

.emp-price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
}

.emp-price-card.popular {
  border-color: var(--emp-purple);
  box-shadow: 0 8px 32px rgba(118,53,134,0.15);
}

.emp-price-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--emp-purple), var(--emp-teal));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.emp-price-name {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--emp-teal);
  margin-bottom: 0.5rem;
}

.emp-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--emp-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.emp-price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: #9ca3af;
}

.emp-price-billing {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.emp-price-divider {
  height: 1px;
  background: #f3f4f6;
  margin-bottom: 1.25rem;
}

.emp-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.emp-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

.emp-price-features li .check {
  color: var(--emp-teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.emp-price-features li .cross {
  color: #d1d5db;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.emp-price-note {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 1.5rem;
}


/* ─────────────────────────────────────────────
   10. FAQ Accordion
   ───────────────────────────────────────────── */
.emp-faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.emp-faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--emp-transition);
}
.emp-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.emp-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.125rem 1.25rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}

.emp-faq-q {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--emp-dark);
  line-height: 1.4;
}

.emp-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--emp-transition), transform var(--emp-transition);
  color: var(--emp-purple);
}

.emp-faq-item.open .emp-faq-icon {
  background: var(--emp-purple);
  color: #fff;
  transform: rotate(45deg);
}

.emp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}
.emp-faq-item.open .emp-faq-answer {
  max-height: 300px;
  padding: 0 1.25rem 1.25rem;
}

.emp-faq-answer p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
}


/* ─────────────────────────────────────────────
   11. Footer
   ───────────────────────────────────────────── */
.emp-footer {
  background: #ffffff;
}

.emp-footer-cta {
  background: linear-gradient(135deg, var(--emp-purple-dark), var(--emp-purple), #9b59b6);
  padding: 4rem 1rem;
}

.emp-footer-body {
  background: #ffffff;
}

.emp-footer-link {
  display: inline-block;
  color: #4b5563;
  font-size: 0.875rem;
  transition: color var(--emp-transition);
}
.emp-footer-link:hover { color: #111827; }

.emp-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #6b7280;
  transition: background var(--emp-transition), color var(--emp-transition);
}
.emp-social-link:hover {
  background: var(--emp-teal);
  color: #fff;
}


/* ─────────────────────────────────────────────
   12. Scroll Reveal Animation
   All elements with data-reveal start invisible.
   JS adds .emp-visible when they enter viewport.
   ───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].emp-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }


/* ─────────────────────────────────────────────
   13. Utilities
   ───────────────────────────────────────────── */
.emp-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .emp-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .emp-container { padding-left: 2rem; padding-right: 2rem; }
}