.jobs-page {
  background: #FFF;
}
.jobs-hero {
  position: relative;
  height: 560px;
  color: #FFF;
  background: #0F2D2B;
}
.jobs-hero-bg,
.jobs-hero-overlay {
  position: absolute;
  inset: 0;
}
.jobs-hero-bg {
  background: url("../../../images/jobs-hero.png") center bottom / cover no-repeat;
}
.jobs-hero-overlay {
  /* background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5.8px); */
}
.jobs-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 120px;
}
.jobs-hero-copy {
  width: min(960px, 100%);
}
.jobs-hero-copy h1 {
  font-size: calc(clamp(34px, 2.5vw, 48px) * var(--hz-font-scale));
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0;
}
.jobs-hero-copy p {
  font-family: var(--font-sans);
  font-size: calc(18px * var(--hz-font-scale));
  line-height: 28px;
  margin: 20px 0 0;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}
.jobs-category-bar {
  background: #FFF;
}
.jobs-category-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  gap: 64px;
}
.jobs-category-inner a {
  font-size: calc(20px * var(--hz-font-scale));
  line-height: 1.5;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.22s ease;
  white-space: nowrap;
  color: #333;
}
.jobs-category-inner a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  transition: background 0.22s ease;
  background: transparent;
}
.jobs-category-inner a.active,
.jobs-category-inner a:hover {
  color: #086B00;
}
.jobs-category-inner a.active::after,
.jobs-category-inner a:hover::after {
  background: #086B00;
}
.jobs-list-section {
  padding: 86px 0;
  background: #FFF;
}
.jobs-filter {
  display: grid;
  align-items: end;
  margin-bottom: 40px;
  grid-template-columns: minmax(260px, 1fr) 256px 256px 117px;
  gap: 48px;
}
.jobs-field {
  font-size: calc(16px * var(--hz-font-scale));
  line-height: 1.5;
  display: grid;
  min-width: 0;
  margin: 0;
  color: #777;
  gap: 8px;
}
.jobs-search-input,
.jobs-select-wrap {
  position: relative;
  overflow: hidden;
  height: 48px;
  border-radius: 12px;
}
.jobs-search-input {
  display: flex;
  align-items: center;
  border: 1px solid #AAA;
  background: #FFF;
}
.jobs-search-input img {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.jobs-search-input input {
  font-size: calc(16px * var(--hz-font-scale));
  line-height: 1.5;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 20px 0 48px;
  color: #333;
  border: 0;
  outline: 0;
  background: transparent;
}
.jobs-search-input input::placeholder,
.jobs-select-wrap select {
  color: #777;
}
.jobs-select-wrap {
  border: 1px solid #E2E8E2;
  background: #F8FAF8;
}
.jobs-select-wrap::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 24px;
  height: 24px;
  content: "";
  transform: translateY(-50%);
  pointer-events: none;
  background: url("../../../images/jobs-icon-select.svg") center / contain no-repeat;
}
.jobs-select-wrap select {
  font-size: calc(16px * var(--hz-font-scale));
  line-height: 1.5;
  width: 100%;
  height: 100%;
  padding: 0 48px 0 17px;
  border: 0;
  outline: 0;
  background: transparent;
  appearance: none;
}
.jobs-filter-submit {
  font-size: calc(16px * var(--hz-font-scale));
  line-height: 1.5;
  height: 49px;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  color: #FFF;
  border: 0;
  border-radius: 12px;
  background: #25C948;
  box-shadow: 0 4px 3px rgba(37, 201, 72, 0.2);
}
.jobs-filter-submit:hover {
  transform: translateY(-2px);
  background: #118E03;
  box-shadow: 0 12px 26px rgba(17, 142, 3, 0.2);
}
.job-list {
  display: grid;
  gap: 40px;
}
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 156px;
  padding: 34px;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
  border: 1.36px solid #E2E8E2;
  border-radius: 24px;
  background: #FFF;
  gap: 32px;
}
.job-card.is-hidden {
  display: none;
}
.job-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 201, 72, 0.45);
  box-shadow: 0 18px 42px rgba(5, 27, 5, 0.08);
}
.job-card-main {
  display: grid;
  flex: 1 1 auto;
  min-width: 0;
  gap: 12px;
}
.job-card-title {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 16px;
}
.job-card-title h2 {
  font-size: calc(28px * var(--hz-font-scale));
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0;
  color: #191C1D;
}
.job-card-title span {
  font-size: calc(19px * var(--hz-font-scale));
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 31px;
  padding: 4px 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  color: #086B00;
  border-radius: 999px;
  background: #E7F4E6;
}
.job-meta {
  font-size: calc(20px * var(--hz-font-scale));
  line-height: 1.5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #666;
  gap: 20px 32px;
}
.job-meta span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 9px;
}
.job-meta-icon {
  display: inline-block;
  flex-basis: 21px !important;
  flex-grow: 0;
  flex-shrink: 0;
  width: 21px !important;
  min-width: 21px;
  max-width: 21px;
  height: 21px !important;
  min-height: 21px;
  max-height: 21px;
  vertical-align: middle;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}
.job-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 62px;
  gap: 22px;
}
.job-detail-btn,
.job-apply-btn {
  font-size: calc(20px * var(--hz-font-scale));
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}
.job-detail-btn {
  min-width: 148px;
  padding: 12px 34px;
  letter-spacing: 0.05em;
  color: #1A1A1A;
  border: 1.36px solid #E2E8E2;
  border-radius: 3px;
  background: #FFF;
}
.job-apply-btn {
  width: 144px;
  color: #FFF;
  border: 0;
  border-radius: 8px;
  background: #25C948;
  box-shadow: 0 3.936px 2.952px rgba(37, 201, 72, 0.2);
}
.job-detail-btn:hover,
.job-apply-btn:hover {
  transform: translateY(-2px);
}
.job-detail-btn:hover {
  color: #118E03;
  border-color: #118E03;
}
.job-apply-btn:hover {
  background: #118E03;
  box-shadow: 0 12px 24px rgba(17, 142, 3, 0.2);
}
.jobs-more-wrap {
  margin-top: 40px;
  text-align: center;
}
.jobs-more {
  font-size: calc(18px * var(--hz-font-scale));
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(402px, 100%);
  height: 56px;
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  color: #118E03;
  border: 1px solid #118E03;
  border-radius: 999px;
  background: #FFF;
  gap: 24px;
}
.jobs-more:hover {
  transform: translateY(-2px);
  color: #FFF;
  background: #118E03;
  box-shadow: 0 12px 26px rgba(17, 142, 3, 0.18);
}
.jobs-more-icon {
  width: 16px;
  height: 16px;
  transform: rotate(45deg) translateY(-3px);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.jobs-process {
  position: relative;
  min-height: 860px;
  padding: 86px 0 172px;
  background: url("../../../images/jobs-process-bg.png") center / cover no-repeat;
}
.jobs-section-heading {
  display: grid;
  text-align: center;
  justify-items: center;
}
.jobs-section-heading h2 {
  font-size: calc(36px * var(--hz-font-scale));
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0;
  color: #191C1D;
}
.jobs-section-heading span {
  width: 80px;
  height: 6px;
  margin: 16px 0;
  border-radius: 999px;
  background: #25C948;
}
.jobs-section-heading p {
  font-size: calc(16px * var(--hz-font-scale));
  line-height: 1.5;
  margin: 0;
  color: #404A3B;
}
.process-grid {
  position: relative;
  display: grid;
  margin-top: 172px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.process-line {
  position: absolute;
  top: 79px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 201, 72, 0.08), rgba(37, 201, 72, 0.32), rgba(37, 201, 72, 0.08));
}
.process-item {
  position: relative;
  z-index: 1;
  min-width: 0;
  text-align: center;
}
.process-item img {
  width: 160px;
  height: 160px;
  margin: 0 auto 60px;
}
.process-item h3 {
  font-size: calc(36px * var(--hz-font-scale));
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0;
  color: #191C1D;
}
.process-item p {
  font-size: calc(16px * var(--hz-font-scale));
  line-height: 1.5;
  margin: 16px auto 0;
  color: #404A3B;
}
.job-apply-section {
  position: relative;
  padding: 86px 0;
  background: #FFF;
  isolation: isolate;
}
.job-apply-watermark {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 17.3%;
  width: 50%;
  pointer-events: none;
/*  background-size: contain; */
  /* opacity: 0.1; */
  background: url("../../../images/jobs-apply-bg.png") center / contain no-repeat;
}
.job-apply-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  justify-content: space-between;
  grid-template-columns: minmax(0, 732px) minmax(420px, 868px);
  gap: 80px;
}
.job-apply-copy {
  display: grid;
  gap: 80px;
}
.job-apply-heading h2 {
  font-size: calc(clamp(34px, 2.5vw, 48px) * var(--hz-font-scale));
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0;
  color: #191C1D;
}
.job-apply-heading p {
  font-size: calc(20px * var(--hz-font-scale));
  line-height: 1.5;
  margin: 8px 0 0;
  color: #404A3B;
}
.apply-contact-list {
  display: grid;
  gap: 24px;
}
.apply-contact-item {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 24px;
}
.apply-contact-item.align-start {
  align-items: flex-start;
}
.apply-contact-item > img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
}
.apply-contact-icon {
  display: inline-flex;
  align-items: center;
  flex: 0 0 64px;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background: rgba(5, 80, 0, 0.1);
}
.apply-contact-icon img {
  width: 32px;
  height: 32px;
}
.apply-contact-item h3 {
  font-size: calc(24px * var(--hz-font-scale));
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: #191C1D;
}
.apply-contact-item p {
  font-size: calc(16px * var(--hz-font-scale));
  line-height: 1.5;
  margin: 0;
  color: #404A3B;
}
.apply-qr {
  width: 96px;
  height: 96px;
  margin-top: 8px;
}
.job-apply-form {
  min-height: 536px;
  padding: 33px;
  border: 1px solid rgba(191, 202, 183, 0.3);
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.job-apply-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 16px;
}
.job-field-full {
  grid-column: 1 / -1;
}
.job-apply-form label {
  font-size: calc(20px * var(--hz-font-scale));
  line-height: 1.5;
  display: grid;
  margin: 0;
  color: #191C1D;
  gap: 8px;
}
.job-apply-form input[type="text"],
.job-apply-form input[type="tel"] {
  font-size: calc(18px * var(--hz-font-scale));
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: #191C1D;
  border: 0;
  border-radius: 8px;
  outline: 0;
  background: rgba(0, 0, 0, 0.05);
}
.job-apply-form input::placeholder {
  color: #6B7280;
}
.resume-upload {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 131px;
  padding: 34px;
  cursor: pointer;
  text-align: center;
  color: #404A3B;
  border: 2px dashed rgba(191, 202, 183, 0.5);
  border-radius: 8px;
  background: rgba(248, 250, 251, 0.5);
  gap: 8px;
}
.resume-upload img {
  width: 35px;
  height: 25px;
}
.resume-upload strong {
  font-size: calc(20px * var(--hz-font-scale));
  font-weight: 400;
  line-height: 1.5;
}
.resume-upload input {
  position: absolute;
  cursor: pointer;
  opacity: 0;
  inset: 0;
}
.job-submit {
  font-size: calc(20px * var(--hz-font-scale));
  line-height: 1.5;
  width: 100%;
  height: 56px;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  color: #FFF;
  border: 0;
  border-radius: 12px;
  background: #25C948;
  box-shadow: 0 3.936px 2.952px rgba(37, 201, 72, 0.2);
}
.job-submit:hover {
  transform: translateY(-2px);
  background: #118E03;
  box-shadow: 0 12px 26px rgba(17, 142, 3, 0.18);
}
@media (max-width: 1599.98px) {
  .jobs-filter {
    grid-template-columns: minmax(260px, 1fr) 220px 220px 110px;
    gap: 28px;
  }
  .job-card {
    padding: 30px;
  }
  .job-card-title h2 {
    font-size: calc(28px * var(--hz-font-scale));
  }
  .job-card-title span {
    font-size: calc(16px * var(--hz-font-scale));
    height: 30px;
    padding: 4px 18px;
  }
  .job-meta {
    font-size: calc(17px * var(--hz-font-scale));
  }
  .job-actions {
    height: 54px;
    gap: 14px;
  }
  .job-detail-btn {
    width: 132px;
  }
  .job-apply-btn {
    width: 128px;
  }
}
@media (max-width: 1199.98px) {
  .jobs-hero {
    height: 500px;
  }
  .jobs-hero-inner {
    padding-bottom: 88px;
  }
  .jobs-list-section,
  .job-apply-section {
    padding: 72px 0;
  }
  .jobs-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .jobs-filter-submit {
    grid-column: 2;
  }
  .job-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .job-actions {
    justify-content: flex-end;
    width: 100%;
  }
  .jobs-process {
    min-height: auto;
    padding: 72px 0 96px;
  }
  .process-grid {
    margin-top: 84px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 30px;
  }
  .process-line {
    display: none;
  }
  .process-item img {
    margin-bottom: 28px;
  }
  .job-apply-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 767.98px) {
  .jobs-hero {
    height: 460px;
  }
  .jobs-hero-inner {
    padding-bottom: 64px;
  }
  .jobs-hero-copy p {
    font-size: calc(16px * var(--hz-font-scale));
    line-height: 1.6;
    margin-top: 14px;
  }
  .jobs-category-inner {
    min-height: 92px;
    gap: 42px;
  }
  .jobs-category-inner a {
    font-size: calc(18px * var(--hz-font-scale));
  }
  .jobs-list-section,
  .job-apply-section {
    padding: 56px 0;
  }
  .jobs-filter {
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .jobs-filter-submit {
    width: 100%;
    grid-column: auto;
  }
  .job-list {
    gap: 20px;
  }
  .job-card {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 16px;
  }
  .job-card-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .job-card-title h2 {
    font-size: calc(22px * var(--hz-font-scale));
    line-height: 1.45;
  }
  .job-card-title span {
    font-size: calc(14px * var(--hz-font-scale));
    height: 28px;
    padding: 4px 14px;
  }
  .job-meta {
    font-size: calc(16px * var(--hz-font-scale));
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .job-actions {
    display: grid;
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .job-detail-btn,
  .job-apply-btn {
    width: 100%;
    height: 48px;
  }
  .jobs-more {
    font-size: calc(16px * var(--hz-font-scale));
    height: 48px;
  }
  .jobs-process {
    padding: 56px 0 72px;
  }
  .jobs-section-heading h2,
  .process-item h3 {
    font-size: calc(28px * var(--hz-font-scale));
  }
  .process-grid {
    margin-top: 54px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .process-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }
  .job-apply-watermark {
    left: 0;
    width: 100%;
    opacity: 0.08;
  }
  .job-apply-copy {
    gap: 42px;
  }
  .job-apply-heading p {
    font-size: calc(16px * var(--hz-font-scale));
  }
  .job-apply-heading h2 {
    font-size: calc(28px * var(--hz-font-scale));
  }
  .apply-contact-item {
    gap: 16px;
  }
  .apply-contact-item > img {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }
  .apply-contact-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    padding: 12px;
  }
  .apply-contact-icon img {
    width: 28px;
    height: 28px;
  }
  .apply-contact-item h3 {
    font-size: calc(22px * var(--hz-font-scale));
  }
  .job-apply-form {
    min-height: 0;
    padding: 22px 18px;
  }
  .job-apply-fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .job-apply-form label {
    font-size: calc(18px * var(--hz-font-scale));
  }
  .resume-upload {
    min-height: 118px;
  }
  .resume-upload strong {
    font-size: calc(16px * var(--hz-font-scale));
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) and (max-height: 960px) {
  .jobs-hero {
    height: 460px;
  }
  .jobs-hero-inner {
    padding-bottom: 76px;
  }
  .jobs-hero-copy h1 {
    font-size: calc(38px * var(--hz-font-scale));
    line-height: 1.3;
  }
  .jobs-hero-copy p {
    font-size: calc(16px * var(--hz-font-scale));
    line-height: 1.6;
    margin-top: 14px;
  }
  .jobs-category-inner {
    min-height: 82px;
    gap: 44px;
  }
  .jobs-category-inner a {
    font-size: calc(16px * var(--hz-font-scale));
  }
  .jobs-list-section,
  .job-apply-section {
    padding: 60px 0 68px;
  }
  .jobs-filter {
    margin-bottom: 32px;
    grid-template-columns: minmax(220px, 1fr) 210px 210px 104px;
    gap: 28px;
  }
  .jobs-field,
  .jobs-search-input input,
  .jobs-select-wrap select {
    font-size: calc(14px * var(--hz-font-scale));
  }
  .jobs-search-input,
  .jobs-select-wrap,
  .jobs-filter-submit {
    height: 42px;
  }
  .job-list {
    gap: 24px;
  }
  .job-card {
    min-height: 128px;
    padding: 26px;
    border-radius: 18px;
    gap: 24px;
  }
  .job-card-title h2 {
    font-size: calc(21px * var(--hz-font-scale));
    line-height: 1.45;
  }
  .job-meta {
    font-size: calc(15px * var(--hz-font-scale));
  }
  .job-actions {
    height: 44px;
  }
  .job-detail-btn,
  .job-apply-btn,
  .jobs-more {
    font-size: calc(15px * var(--hz-font-scale));
    height: 44px;
  }
  .jobs-process {
    min-height: 660px;
    padding: 60px 0 72px;
  }
  .jobs-section-heading h2,
  .process-item h3 {
    font-size: calc(28px * var(--hz-font-scale));
  }
  .jobs-section-heading p,
  .process-item p {
    font-size: calc(15px * var(--hz-font-scale));
  }
  .process-grid {
    margin-top: 72px;
  }
  .process-item img {
    width: 124px;
    height: 124px;
    margin-bottom: 22px;
  }
  .job-apply-layout {
    gap: 64px;
  }
  .job-apply-heading h2 {
    font-size: calc(34px * var(--hz-font-scale));
  }
  .job-apply-heading p {
    font-size: calc(16px * var(--hz-font-scale));
  }
  .apply-contact-list,
  .job-apply-copy {
    gap: 34px;
  }
  .apply-contact-item > img,
  .apply-contact-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }
  .apply-contact-item h3 {
    font-size: calc(21px * var(--hz-font-scale));
  }
  .job-apply-form {
    min-height: 460px;
    padding: 34px;
    border-radius: 18px;
  }
  .job-apply-form label {
    font-size: calc(16px * var(--hz-font-scale));
  }
  .job-apply-form input[type="text"],
  .job-apply-form input[type="tel"] {
    font-size: calc(15px * var(--hz-font-scale));
    height: 44px;
  }
  .resume-upload {
    min-height: 108px;
  }
  .resume-upload strong,
  .job-apply-form button {
    font-size: calc(16px * var(--hz-font-scale));
  }
}
