/* ===== page about-careers (compiled from Vue SCSS) ===== */
@charset "UTF-8";
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.border-top {
  border-top: 1px solid #d9e5e0;
}

.overflow-hidden {
  overflow: hidden;
}

.d-block {
  display: block;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.hover-underline:hover {
  text-decoration: underline;
}

.view-detail-btn {
  transition: all 0.3s ease;
}
.view-detail-btn:hover {
  background-color: #0b6b5a;
  color: #ffffff;
  border-color: #0b6b5a;
}
.view-detail-btn:active {
  transform: scale(0.96);
}

.action-btn {
  transition: all 0.3s ease;
}
.action-btn:hover, .action-btn:focus {
  background-color: #0b6b5a !important;
  color: #ffffff !important;
  border-color: #0b6b5a !important;
}
.action-btn:active {
  background-color: #0b6b5a;
  color: #ffffff;
  border-color: #0b6b5a;
  transform: scale(0.96) translateY(2px);
}

.clear-btn {
  background: transparent;
  border: none;
  color: #66736e;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: color 0.3s;
}
.clear-btn:hover {
  color: #0b6b5a;
}

/* 顶部 Hero 容器 */
.careers-hero {
  min-height: 360px;
  border-radius: 12px;
}

/* 表单控件 */
.form-select,
.form-input {
  padding: 10px 12px;
  border: 1px solid #d9e5e0;
  border-radius: 4px;
  font-size: 14px;
  color: #1e2b27;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.3s;
}
.form-select:focus,
.form-input:focus {
  border-color: #0b6b5a;
}

.btn-text {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.btn-text:hover {
  text-decoration: underline;
}

/* Reverted from utilities.scss */
.p-10 {
  padding: 40px 60px;
}

.mb-6 {
  margin-bottom: 48px;
}

.mb-4 {
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.text-secondary {
  color: #66736e;
}

.text-main {
  color: #1e2b27;
}

.text-sm {
  font-size: 14px;
}

.line-height-lg {
  line-height: 1.8;
}

.cursor-pointer {
  cursor: pointer;
}

.hover-primary {
  transition: color 0.3s;
}
.hover-primary:hover {
  color: #0b6b5a;
}

.p-5 {
  padding: 32px;
}

.mb-10 {
  margin-bottom: 40px;
}

.mb-2 {
  margin-bottom: 12px;
}

.mr-2 {
  margin-right: 12px;
}

.text-primary {
  color: #0b6b5a;
}

.max-w-1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.py-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.px-4 {
  padding-left: 24px;
  padding-right: 24px;
}

.px-3 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.mb-3 {
  margin-bottom: 16px;
}

.text-white {
  color: #ffffff;
}

.text-xs {
  font-size: 12px;
}

.font-weight-bold {
  font-weight: bold;
}

.max-w-800 {
  max-width: 800px;
}

.opacity-50 {
  opacity: 0.5;
}

.bg-light {
  background-color: #f7faf9;
}

.bg-primary {
  background-color: #0b6b5a;
}

.border {
  border: 1px solid #d9e5e0;
}

.rounded {
  border-radius: 8px;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

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

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-3 {
  gap: 16px;
}

.w-full {
  width: 100%;
}

.transition-colors {
  transition: color 0.3s;
}

.hover-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-up:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(11, 107, 90, 0.08);
}

.mt-10 {
  margin: 20px 0;
}

.gap-4 {
  gap: 24px;
}

.px-8 {
  padding-left: 80px;
  padding-right: 80px;
}

.gap-5 {
  gap: 32px;
}

.mt-6 {
  margin-top: 48px;
}

.mt-4 {
  margin-top: 24px;
}

.pt-4 {
  padding-top: 24px;
}

.opacity-90 {
  opacity: 0.9;
}

.gap-1 {
  gap: 8px;
}

/* Reverted responsive */
@media (max-width: 767px) {
  .careers-hero .p-10 {
    padding: 40px 20px;
  }
  .careers-hero {
    min-height: auto;
  }
}
@media (max-width: 1199px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .align-items-end {
    align-items: stretch;
  }
}