/* =========================================================
   Career page styles
   ========================================================= */

.career-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.career-hero .hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.career-hero .pill {
  margin-bottom: 16px;
}

.career-hero .hero-sub {
  max-width: 560px;
  margin-bottom: 28px;
}

.career-hero .hero-ctas {
  margin-bottom: 8px;
}

.career-hero .scroll-hint {
  margin-top: auto;
  padding-top: 32px;
}

/* Culture */
.culture-section {
  padding: 80px 0 64px;
  background: #fff;
}

.culture-section .section-head {
  margin-bottom: 48px;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.culture-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.culture-card:hover {
  border-color: rgba(15, 141, 235, 0.28);
  box-shadow: var(--shadow-hover);
}

.culture-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  flex-shrink: 0;
}

.culture-icon .lucide {
  width: 22px;
  height: 22px;
}

.ic-star {
  background: rgba(15, 141, 235, 0.12);
}

.ic-growth {
  background: rgba(59, 130, 246, 0.12);
}

.ic-shield {
  background: rgba(16, 185, 129, 0.12);
}

.ic-support {
  background: rgba(236, 72, 153, 0.12);
}

.culture-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0;
}

.culture-card p {
  color: var(--text-body);
  line-height: 1.75;
  font-size: 14px;
  margin: 0;
}

/* Vacancies */
.vacancies-section {
  padding: 80px 0 88px;
  background: var(--bg-grey);
}

.vacancies-section .section-head {
  margin-bottom: 40px;
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.vacancy-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: var(--shadow-card);
}

.vacancy-item:hover {
  border-color: rgba(15, 141, 235, 0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.vacancy-item:hover .apply-link {
  gap: 10px;
}

.vacancy-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.vacancy-meta {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

.apply-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-500);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.apply-link .lucide {
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .culture-grid,
  .vacancy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .culture-section,
  .vacancies-section {
    padding: 64px 0;
  }

  .culture-section .section-head,
  .vacancies-section .section-head {
    margin-bottom: 32px;
  }

  .culture-grid,
  .vacancy-grid {
    gap: 16px;
  }

  .culture-card {
    padding: 26px 22px;
  }

  .vacancy-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px;
  }

  .apply-link {
    align-self: flex-end;
  }
}
