/* ============================================================
   course/n-course/index.php
   ============================================================ */


/* ── Feature section (白背景) ── */
.ncrs-feature-section {
  background: #fff;
}

.ncrs-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ncrs-feature-list {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.ncrs-feature-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-bottom: 1px solid var(--navy);
  margin-bottom: 1rem;
}

.ncrs-feature-badge {
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 25px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.ncrs-feature-text {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
}


/* ── Mission section (薄青背景) ── */
.ncrs-mission-section {
  background: #fff;
  overflow: visible;
  position: relative;
}

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

.ncrs-mission-body {
  color: var(--text);
  line-height: 2.1;
  font-size: 15px;
}

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

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


/* ── Strength section (白背景) ── */
.ncrs-strength-section {
  background: var(--light-yellow);
}

.ncrs-strength-col {
  text-align: center;
}

.ncrs-strength-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 20px;
}

.ncrs-strength-icon {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}

.ncrs-strength-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}

.ncrs-strength-title strong {
  display: block;
  font-size: 1.125rem;
  color: var(--navy);
}

.ncrs-strength-desc {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  margin: 0 auto;
  width: 60%;
  text-align: start;
}


/* ── Jobs section (navy 背景) ── */
.ncrs-jobs-section {
  background: var(--navy);
  padding-bottom: 0;
  overflow: hidden;
}

.ncrs-jobs-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ncrs-jobs-title::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #ffc300;
  flex-shrink: 0;
}

.ncrs-jobs-section .job-card img {
  aspect-ratio: 1 / 1;
}

/* ── Interview section ── */
.ncrs-interview-section {
  background: #fff;
  overflow: hidden;
}



/* ── Responsive ── */
@media (max-width: 767px) {
  .ncrs-interview-section .nums-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

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

  .ncrs-feature-row {
    padding: 12px 14px;
  }
}