.cst-text-wrap {
  margin-top: 30px;
  text-align: center;
}

.cb-career-section {
  margin: 0 auto;
}

.cb-career-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 20px;
}

.cb-career-grid--reverse {
  direction: rtl;
}

.cb-career-grid--reverse > * {
  direction: ltr;
}

.cb-career-text {
  line-height: 1.8;
}

.cb-career-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.cb-career-title--center {
  text-align: center;
  margin-bottom: 50px;
}

.cb-career-label {
  color: var(--brand);
  font-weight: bold;
  margin-bottom: 12px;
}

.cb-career-paragraph {
  font-size: 15px;
  margin-bottom: 16px;
}
.cb-career-image {
  max-height: clamp(300px, 25vw, 350px);
  overflow: hidden;
}

.cb-career-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .cb-career-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cb-career-grid--reverse {
    direction: ltr;
  }

  .cb-career-title {
    font-size: 22px;
  }

  .cb-career-paragraph {
    font-size: 14px;
  }
}

/* Section */
.interview {
  margin: 0 auto;
}

/* Title */
.interview-title {
  text-align: center;
  font-size: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(32px, 6vw, 64px);
  letter-spacing: 0.1em;
}

/* Grid */
.interview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(32px, 6vw, 64px) clamp(24px, 4vw, 48px);
}

/* Card */
.interview-card {
  text-align: left;
}

/* Image wrapper */
.interview-img {
  margin-bottom: clamp(12px, 2vw, 20px);
  max-height: 250px;
  overflow: hidden;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image */
.interview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name */
.interview-card h3 {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.4;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px;
  background-color: var(--white);
}

.interview-card h3 span {
  display: block;
  color: var(--brand);
  font-size: clamp(12px, 1.8vw, 14px);
  letter-spacing: 0.05em;
}

/* Description */
.interview-card p {
  font-size: clamp(13px, 1.8vw, 14px);
  line-height: 1.8;
  color: var(--text-color);
}

/* Section */
.entry-form {
  background-color: var(--light-gray);
}
.recuite-forem-wrap {
  max-width: 882px;
  width: 100%;
  margin: 0 auto;
}

/* recruit_info */
.recruit-info {
  background-color: #fff;
  position: relative;
  background-size: 100% auto;
  background-position: center top;
  background-image: url(../../images/staff/bg_01.jpg);
  background-repeat: no-repeat;
}
.recruit-info h3 {
  color: #729774;
  text-align: left;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .recruit-info h3 {
    text-align: center;
  }
}
/* table */
table {
  width: 100%;
}
.recruit-info {
  margin: 20px 0 60px;
  width: 100%;
}
.recruit-info td {
  padding: 10px 20px;
}
.recruit-info tr:nth-child(odd) th,
.recruit-info tr:nth-child(odd) td {
  background-color: #d9d9d9;
}
.recruit-info th {
  width: 280px;
  font-weight: 700;
  text-align: center;
  padding: 10px 20px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .recruit-info th {
    width: 140px;
    font-size: 18px;
  }
}

/* job info */
.job-info {
  margin: 0 auto;
}

.job-pair {
  margin: 0;
  border: 1px solid var(--gray-2);
  border-bottom: none;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr);
  grid-template-areas:
    "h1 h2"
    "b1 b2";
  background: var(--white);
}

.job-pair:last-of-type {
  border-bottom: 1px solid var(--gray-2);
}

.job-pair__dt {
  margin: 0;
  padding-left: clamp(10px, 1vw, 18px);
  padding-right: clamp(10px, 1vw, 18px);
  padding-top: clamp(10px, 1vw, 10px);
  padding-bottom: clamp(10px, 1vw, 10px);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 18px);
  border-bottom: 1px solid var(--gray-2);
  border-top: 1px solid var(--gray-2);
  background-color: var(--light-gray);
  color: var(--brand);
}

.job-pair__dd {
  margin: 0;
  padding: clamp(10px, 1vw, 18px);
  font-size: clamp(14px, 1vw, 16px);
}

/* grid placement for dt/dd order: dt,dd,dt,dd */
.job-pair > .job-pair__dt:nth-of-type(1) {
  grid-area: h1;
  border-right: 1px solid var(--gray-2);
}
.job-pair > .job-pair__dt:nth-of-type(2) {
  grid-area: h2;
}
.job-pair > .job-pair__dd:nth-of-type(1) {
  grid-area: b1;
  border-right: 1px solid var(--gray-2);
}
.job-pair > .job-pair__dd:nth-of-type(2) {
  grid-area: b2;
}

.job-pair__dd p {
  margin: 0;
}
.lead {
  font-weight: 700;
  margin: 0 0 8px;
}

@media (max-width: 768px) {
  .job-pair {
    grid-template-columns: 1fr;
    grid-template-areas:
      "h1"
      "b1"
      "h2"
      "b2";
  }

  .job-pair > .job-pair__dt:nth-of-type(1),
  .job-pair > .job-pair__dd:nth-of-type(1) {
    border-right: none;
  }

  .job-pair > .job-pair__dt:nth-of-type(2) {
    border-top: 1px solid var(--gray-2);
  }

  .job-pair > .job-pair__dd:nth-of-type(2) {
    border-top: 1px solid var(--gray-2);
  }
}

/* =========================
   Interview Component
   ========================= */

/* Wrapper (optional) */
.cb-interview {
  /* add spacing if you want */
}

/* Header */
.cb-interview__header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.cb-interview__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.cb-interview__dept {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.cb-interview__name {
  font-size: 26px;
  margin: 6px 0;
}

.cb-interview__year {
  font-size: 14px;
  color: #888;
  margin: 0 0 8px;
}

/* Quote */
.cb-interview__quote {
  font-size: 20px;
  color: var(--brand);
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

.cb-interview-modal-quote-desktop {
  display: block;
}
.cb-interview-modal-quote-mobile {
  display: none;
}

/* Body layout */
.cb-interview__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px) clamp(24px, 4vw, 48px);
}

/* Keep your existing body HTML classes */
.cb-interview-modal-body-left {
  grid-column: 1 / 2;
}

.cb-interview-modal-body-right {
  grid-column: 2 / 3;
}

.cb-interview-modal-body-left > div,
.cb-interview-modal-body-right > div {
  margin-bottom: 40px;
}

.cb-interview__body h4 {
  font-size: 20px;
  margin: 0 0 10px;
  padding-left: 12px;
  border-left: 4px solid var(--brand);
}

.cb-interview__body p,
.cb-interview__body li {
  font-size: 16px;
  margin: 0;
}

.cb-interview__body p + p,
.cb-interview__body p + ul,
.cb-interview__body p + ol,
.cb-interview__body ul + p,
.cb-interview__body ol + p {
  margin-top: 10px;
}

.san-container-job {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
/* =========================
   Mobile
   ========================= */
@media (max-width: 768px) {
  .cb-interview__header {
    gap: 16px;
  }

  .cb-interview__avatar {
    width: 100px;
    height: 100px;
  }

  .cb-interview__quote {
    font-size: 18px;
  }

  .cb-interview-modal-quote-desktop {
    display: none;
  }
  .cb-interview-modal-quote-mobile {
    display: block;
    margin-bottom: 20px;
  }

  .cb-interview__body {
    grid-template-columns: 1fr;
    grid-area: 0;
  }

  .cb-interview-modal-body-left,
  .cb-interview-modal-body-right {
    grid-column: 1;
  }

  .cb-interview-modal-body-left > div,
  .cb-interview-modal-body-right > div {
    margin-bottom: 28px;
  }
}

/* new job section listing */
.job-section {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.job-item {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 50px);
  margin-bottom: 80px;
}

.job-item.reverse {
  flex-direction: row-reverse;
}

.job-image {
  flex: 1;
  height: clamp(250px, 32vw, 320px);
}

.job-image img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.job-content {
  flex: 1;
}

.job-content h2 {
  font-size: clamp(28px, 3vw, 32px);
  margin-bottom: 20px;
  font-weight: 600;
}

.job-content p {
  font-size: 16px;
  color: var(--light-black);
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: var(--brand);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--green);
}

/* ===== Responsive ===== */
@media (max-width: 700px) {
  .job-item,
  .job-item {
    flex-direction: column;
    gap: clamp(10px, 2vw, 20px);
    align-items: flex-start;
    margin-bottom: clamp(60px, 4vw, 80px);
  }
  .job-image {
    flex: 1;
    height: clamp(180px, 25vw, 250px);
  }
  .job-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .job-content h2 {
    font-size: clamp(22px, 7vw, 32px);
    margin-bottom: clamp(10px, 3vw, 20px);
  }
}

/* staff listing  */
.sji-staff-section {
  margin: 0 auto;
}

/* Grid */
.sji-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.sji-staff-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  background: #eee;
}

.sji-staff-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover */
.sji-staff-card:hover .sji-staff-image {
  transform: scale(1.05);
}

/* Bottom info */
.sji-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Text */
.sji-card-dept {
  font-size: 12px;
  color: #666;
}

.sji-card-name {
  font-size: 22px;
  margin: 6px 0;
  font-weight: 600;
}

.sji-card-year {
  font-size: 13px;
  color: #666;
}

/* View more */
.sji-view-more {
  text-align: center;
  width: 60px;
  margin: auto 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .sji-staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sji-staff-grid {
    grid-template-columns: 1fr;
  }
}
