/** Shopify CDN: Minification failed

Line 540:3 Unexpected "/"

**/
/* /* ===============================
   BASE
================================ */
.careers-page {
  background: #000;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.page-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===============================
   HERO
================================ */
.career-hero {
  background: #fff;
  color: #000;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.career-hero h1 {
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  margin-top:30px;
}

.career-hero p {
  font-size: 20px;
  max-width: 620px;
  opacity: 0.85;
  margin-bottom: 40px;
}

.career-hero .btn {
 background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.career-hero .btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ===============================
   SECTIONS
================================ */
.career-jobs,
.career-benefits,
.career-culture,
.career-growth,
.career-tips {
  padding: 100px 0;
}

h2 {
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 800;
  margin-bottom: 60px;
}

/* ===============================
   JOB LIST (CLEAN VERSION)
================================ */
.career-jobs {
  background: #fff;
  color: #000;
  padding: 120px 0;
}

.career-jobs h2 {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #000;
  max-width: 600px;
  margin-bottom: 60px;
}

.job-grid {
  display: flex;
  flex-direction: column;
}

.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 30px 40px;
  border-top: 1px solid #222;
  transition: background 0.35s ease, color 0.35s ease;
  cursor: pointer;
}

.job-card:last-child {
  border-bottom: 1px solid #222;
}

.job-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.job-info .department {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
}

.job-card a {
  font-size: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease;
}

.job-card:hover {
  background: #fff;
  color: #000;
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.job-card:hover .department {
  color: #555;
}

.job-card:hover a {
  transform: translateX(8px);
}

/* View more button already styled earlier */
.view-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.view-more button {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.view-more button:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* mobile */
@media (max-width: 768px) {
  .career-jobs {
    padding: 80px 0;
  }

  .job-card {
    padding: 24px;
    gap: 16px;
  }

  .job-info h3 {
    font-size: 22px;
  }
}

/* ===============================
   BENEFITS - why
================================ */
.career-benefits {
  background: #fff;
}
.career-benefits .page-width h2{
  margin-bottom: 30px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.benefit-card {
  padding: 40px 30px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 2px solid #000;
}

.benefit-card .icon {
  font-size: 36px;
  display: inline-block;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 16px;
  color: #555;
}


/* ===============================
  GROWTH
================================ */
.career-growth {
  background: #fff !important;
  color: #000;
  padding: 120px 0;
}

.career-growth .page-width h2{
  color: #000 !important;
}

.growth-accordion {
  max-width: 90vw;
  margin: 0 auto;
}

.growth-item {
  border-bottom: 1px solid #e5e5e5;
}

.growth-header {
  width: 100%;
  background: none;
  border: none;
  color: #000;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.growth-header .icon {
  font-size: 32px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.growth-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.growth-content p {
  font-size: 16px;
  color: #555;              /* FIXED: readable on white */
  line-height: 1.6;
  padding-bottom: 28px;
  max-width: 700px;
}


.growth-item.active .growth-content {
  max-height: 200px;
}

.growth-item.active .growth-header .icon {
  transform: rotate(45deg); /* + → − style */
}


.growth-header:hover {
  color: #000;
}

/* mobile */
@media (max-width: 768px) {
  .career-growth {
    padding: 80px 0;
  }

  .growth-header {
    font-size: 18px;
  }
}


/* ===============================
   CULTURE
================================ */
.career-culture {
  background: #f9f9f9;
  padding: 120px 0;
}

.career-culture h2 {
  max-width: 800px;
  margin-bottom: 40px;
}

.culture-content {
  max-width: 820px;
}

.culture-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 28px;
}

.culture-content p:last-child {
  margin-bottom: 0;
}

/* subtle accent line */
.culture-content::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #000;
  margin-bottom: 40px;
}

/* mobile */
@media (max-width: 768px) {
  .career-culture {
    padding: 80px 0;
  }

  .culture-content p {
    font-size: 18px;
  }
}


/* ===============================
   GROWTH
================================ */
.career-growth {
  background: #000;
  color: #fff;
  padding: 120px 0;
}
.career-growth .page-width h2{
  color:#fff;
}
.career-growth h2 {
  margin-bottom: 60px;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.growth-card {
  padding: 42px 32px;
  border: 1px solid #222;
  border-radius: 16px;
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  
}

.growth-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255,255,255,0.08);
}

.growth-card .icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: inline-block;
}

.growth-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.growth-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

/* mobile */
@media (max-width: 768px) {
  .career-growth {
    padding: 80px 0;
  }
}



/* ===============================
   TIPS
================================ */
.career-tips {
  background: #fff;
  color: #000;
  padding: 120px 0;
}

.career-tips h2 {
  margin-bottom: 60px;
}

.tips-list {
  max-width: 820px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list li {
  display: flex;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid #e5e5e5;
}

.tips-list li:last-child {
  border-bottom: none;
}

.tips-list .step {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  min-width: 60px;
}

.tips-list h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.tips-list p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* mobile */
@media (max-width: 768px) {
  .career-tips {
    padding: 80px 0;
  }

  .tips-list li {
    flex-direction: column;
    gap: 12px;
  }
}


/* ===============================
   ANIMATION
================================ */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .page-width {
    padding: 0 20px;
  }

  .career-hero {
    min-height: 70vh;
  }

  .career-hero h1 {
    font-size: 42px;
  }

  .job-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .job-card a {
    justify-self: flex-start;
  }
} */
