/* Recruit Page */

/* ── Mission Block (existing) ── */
.recruit-mission {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-10);
  background: var(--color-green-pale);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-12);
}

.recruit-mission__logo {
  flex-shrink: 0;
  width: 200px;
}

.recruit-mission__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-mission__heading {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-4);
}

.recruit-mission__desc {
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-500);
}

/* ── Section Layout ── */
.recruit-section {
  padding-top: var(--space-16);
}

.recruit-section + .recruit-section {
  border-top: 1px solid var(--color-gray-200);
}

.recruit-section__heading {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: var(--space-10);
}

.recruit-section__subheading-wrap {
  text-align: center;
  margin-bottom: var(--space-8);
}

.recruit-section__subheading {
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-green-500);
  display: inline-block;
}

/* ── 2-Column: Image Left + Text Right ── */
.recruit-section__grid {
  display: flex;
  align-items: flex-start;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.recruit-section__image {
  flex: 0 0 48%;
}

.recruit-section__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.recruit-section__text {
  flex: 1;
}

.recruit-section__text h4 {
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}

.recruit-section__text ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: var(--space-4);
  color: var(--color-gray-700);
  line-height: var(--leading-relaxed);
}

.recruit-section__text p {
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-700);
  margin-bottom: var(--space-4);
}

.recruit-section__text p strong {
  font-weight: var(--weight-bold);
  color: var(--color-gray-900);
}

/* ── Full-Width Banner ── */
.recruit-banner {
  display: none;
  margin-bottom: var(--space-12);
}

.recruit-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* ── Centered Image (strength illustration) ── */
.recruit-section__image--center {
  max-width: 700px;
  margin: 0 auto var(--space-10);
}

.recruit-section__image--center img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Certification Grid ── */
.recruit-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2) var(--space-8);
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: var(--space-4);
  color: var(--color-gray-700);
  line-height: var(--leading-relaxed);
}

/* ── Strengths List ── */
.recruit-strengths {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
}

.recruit-strengths li {
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-700);
  list-style: disc;
  margin-left: 1.25em;
}

/* ── Recruit Items (h4 + ul block list) ── */
.recruit-items {
  margin-bottom: var(--space-10);
}

.recruit-items h4 {
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  color: var(--color-green-700);
  margin-bottom: var(--space-2);
  padding-left: var(--space-2);
  border-left: 3px solid var(--color-green-500);
}

.recruit-items ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: var(--space-6);
  color: var(--color-gray-700);
  line-height: var(--leading-relaxed);
}

/* ── Interview Cards (2-column grid) ── */
.recruit-interviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.recruit-interview-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: opacity var(--duration-fast);
}

.recruit-interview-card:hover {
  opacity: 0.85;
}

.recruit-interview-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .recruit-mission {
    flex-direction: column;
    text-align: center;
    padding: var(--space-8) var(--space-6);
  }

  .recruit-mission__logo {
    width: 160px;
  }

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

  .recruit-section__image {
    flex: none;
    width: 100%;
  }

  .recruit-cert-grid {
    grid-template-columns: 1fr;
  }

  .recruit-interviews {
    grid-template-columns: 1fr;
  }
}
