html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Poppins, sans-serif;
  color: #4d4643;
  background: #fff;
}

.career-page {
  width: 100%;
  background: #fff;
}

.career-wrap {
  padding: 74px 0;
  background: #eeeae7;
}

.career-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.career-heading {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.career-heading h2 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  color: #000;
}

.career-heading span {
  display: inline-block;
  margin-top: 14px;
  width: 50px;
  height: 3px;
  background: #f18d1b;
}

.career-heading p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5c544f;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.career-card {
  min-height: 245px;
  background: #f7f3ef;
  border-radius: 0 0 36px 0;
  border: 1px solid #e8e1d9;
  padding: 26px 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(60, 60, 60, .09);
  cursor: pointer;
  transition: transform .28s cubic-bezier(.2, .7, .3, 1), box-shadow .28s ease;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(60, 60, 60, .14);
}

.career-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #f18d1b;
}

.career-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-top: 0;
}

.career-card h2 {
  min-width: 0;
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 21px;
  line-height: 1.35;
  color: #1f2a22;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.career-salary {
  flex: 0 0 auto;
  max-width: 48%;
  padding-top: 2px;
  font-size: clamp(11px, 1.05vw, 14px);
  font-weight: 800;
  line-height: 1.35;
  color: #f18d1b;
  text-align: right;
  white-space: nowrap;
}

.career-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #4d4643;
}

.career-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.career-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 3px;
  background: #eee8e2;
  border: 1px solid #e3dbd3;
  color: #6a625d;
  font-size: 13px;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.career-summary {
  display: grid;
  gap: 5px;
  margin-top: 18px;
}

.career-info {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.career-info p {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.career-skill p {
  color: #f18d1b;
}

.career-icon {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: #9a8f88;
  border: 0;
}

.career-icon-office {
  width: 14px;
  height: 12px;
  margin-top: 1px;
  border: 1.6px solid currentColor;
  border-radius: 2px;
}

.career-icon-office::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: -4px;
  height: 4px;
  border: 1.6px solid currentColor;
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
}

.career-icon-office::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 2px;
  height: 2px;
  background: currentColor;
  box-shadow: 4px 0 0 currentColor, 0 4px 0 currentColor, 4px 4px 0 currentColor;
}

.career-icon-pin {
  width: 13px;
  height: 13px;
  border: 1.7px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.career-icon-pin::after {
  content: "";
  position: absolute;
  width: 3.5px;
  height: 3.5px;
  top: 3.1px;
  left: 3.1px;
  border-radius: 50%;
  background: currentColor;
}

.career-divider {
  height: 1px;
  background: #f0ece8;
  margin: auto 0 16px;
}

.career-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.career-card-footer time {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #9a8f88;
}

.career-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f18d1b;
  font-size: 13.5px;
  font-weight: 700;
  transition: gap .2s, color .2s;
}

.career-card:hover .career-link {
  gap: 10px;
  color: #ce7017;
}

.career-empty {
  grid-column: 1 / -1;
  padding: 36px 28px;
  background: #f7f3ef;
  border: 1px solid #e8e1d9;
  border-radius: 0 0 28px 0;
  color: #7b736f;
  text-align: center;
  font-weight: 700;
}

.career-skeleton {
  pointer-events: none;
}

.skeleton-line,
.skeleton-divider {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, #eee6de 25%, #fbf8f5 50%, #eee6de 75%);
  background-size: 220% 100%;
  animation: career-shimmer 1.35s ease-in-out infinite;
}

.skeleton-line {
  width: 100%;
  height: 14px;
  margin-top: 15px;
}

.skeleton-line.short {
  width: 62%;
}

.skeleton-label {
  width: 74px;
  height: 12px;
  margin-top: 0;
}

.skeleton-title {
  width: 82%;
  height: 24px;
  margin-top: 14px;
}

.skeleton-divider {
  width: 100%;
  height: 1px;
  margin: auto 0 16px;
  border-radius: 0;
}

.skeleton-link {
  width: 112px;
  height: 14px;
  margin-top: 0;
}

@keyframes career-shimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@media (max-width: 768px) {
  .career-wrap {
    padding: 54px 18px 68px !important;
  }

  .career-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .page-title {
    font-size: 36px !important;
  }

  .hero-banner {
    height: 315px !important;
  }

  .career-card {
    padding: 22px 20px 20px;
  }

  .career-card-head {
    align-items: flex-start;
    flex-direction: row;
    gap: 12px;
  }

  .career-salary {
    max-width: 48%;
    text-align: right;
  }

  .career-card-footer {
    align-items: center;
    flex-direction: row;
  }
}

@media (max-width: 430px) {
  .career-grid {
    grid-template-columns: 1fr !important;
  }
}
