/* ── Careers page ─────────────────────────────────────────────── */

.careers-hero {
  position: relative;
  overflow: hidden;
  background-color: #F2EFE9;
}

.careers-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.careers-hero__bg picture,
.careers-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.careers-hero__bg img {
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.careers-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.careers-hero__intro {
  max-width: 42rem;
}

.careers-hero__accent {
  width: 4rem;
  height: 2px;
  background: #BF8211;
}

.job-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #E4E0D8;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.job-card:hover {
  border-color: #BF8211;
  box-shadow: 0 4px 24px rgba(191, 130, 17, 0.08);
}

.job-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #5C5C4A;
}

.job-card__tag {
  font-size: 0.75rem;
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #BF8211;
  text-transform: uppercase;
}

.job-card__title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #2d2e1e;
}

.job-card__salary {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2e1e;
  white-space: nowrap;
}

.job-card__summary {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #514535;
}

.job-card__section-title {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2d2e1e;
  margin-bottom: 0.5rem;
}

.job-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.job-card__list li {
  padding-left: 1.125rem;
  position: relative;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #514535;
}

.job-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: #BF8211;
  border-radius: 50%;
}

.job-card__apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 0.8125rem;
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: #BF8211;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.job-card__apply:hover {
  background: #9A6A0E;
}

.careers-apply-band {
  background: #2d2e1e;
  color: #fff;
}

.apply-modal__body {
  margin: 0 0 1.5rem;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #514535;
}

.apply-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.apply-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 0.25rem;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.apply-modal__action .ui-icon {
  flex-shrink: 0;
}

.apply-modal__action--email {
  background: #BF8211;
  color: #fff;
}

.apply-modal__action--email:hover {
  background: #9A6A0E;
}

.apply-modal__action--whatsapp {
  background: #F2EFE9;
  color: #2d2e1e;
  border: 1px solid #E4E0D8;
}

.apply-modal__action--whatsapp:hover {
  background: #E4E0D8;
}

@media (max-width: 767px) {
  .job-card {
    padding: 1.125rem;
    gap: 1rem;
  }

  .job-card__header {
    flex-direction: column;
  }

  .job-card__salary {
    white-space: normal;
  }

  .job-card__summary,
  .job-card__list,
  .job-card__section-title {
    display: none;
  }

  .job-card__apply {
    width: 100%;
  }

  .careers-hero__intro .font-body-lg {
    display: none;
  }
}
