/* ============================================================
   job/sales/index.php
   ============================================================ */

/* ── Content image ── */
.sales-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ── Body text ── */
.sales-body {
  font-size: 15px;
  color: var(--text);
  line-height: 2.1;
}

.sales-body p {
  margin-bottom: 1.25em;
}

.sales-body p:last-child {
  margin-bottom: 0;
}

/* ── Section backgrounds ── */
.sales-content-section {
  background: #fff;
}

.sales-yarigan-section {
  background: #fff;
  position: relative;
}

.sales-yarigan-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 75%;
  background: var(--light-yellow);
  z-index: 0;
}

.sales-yarigan-section .container {
  position: relative;
  z-index: 1;
}

.sales-mission-section {
  background: #fff;
}

.sales-interview-section {
  background: #fff;
  overflow: hidden;
}

.sales-timeline-section {
  background: #fff;
  overflow: visible;
  position: relative;
}

.sales-timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 30%;
  bottom: 180px;
  background: #f5f9ff;
  z-index: -1;
}

.sales-timeline-section .career-grid {
  grid-template-columns: 1fr;
}

.point-view-box {
  background: #f5f9ff;
  padding: 1.5rem;
  height: 100%;
}

.point-view-box .fs-5.fw-bold.blue {
  text-align: center;
}

.point-view-box-img {
  overflow: hidden;
  border-radius: 1000px;
  background: #fff;
  width: 60%;
  margin: auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.point-view-box-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* ── Timeline ── */
.sales-timeline-list {
  margin-top: 32px;
  overflow: hidden;
}

.sales-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
}

.sales-timeline-time {
  font-family: 'Poppins', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  width: 52px;
  padding-top: 2px;
}

.sales-timeline-dot {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 7px;
  position: relative;
}

.sales-timeline-item:not(:last-child) .sales-timeline-dot::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 9999px;
  background: #e1e1e1;
}

.sales-timeline-text {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.75;
}


/* ── Responsive ── */
@media (max-width: 767px) {
  .sales-img {
    margin-bottom: 8px;
  }

  .sales-interview-section .nums-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .sales-interview-section .nums-heading::before {
    margin-top: 5px;
  }

  .sales-interview-section .flex-wrap .d-flex {
    margin-top: 1rem;
  }
}