/* ========================================
   Recruit Page Styles
   ======================================== */

/* Wanted Section */
.wanted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.wanted-card {
  text-align: center;
  padding: 24px 24px;
}
.wanted-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.wanted-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.wanted-card-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Recruit Message */
.recruit-message-grid {
  max-width: 800px;
  margin: 0 auto;
}
.recruit-message-lead {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 40px;
}
.recruit-message-body {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
}
.recruit-message-body p + p {
  margin-top: 1.5em;
}
.recruit-quote {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 2em 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.recruit-spirit {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.8;
  margin-top: 1.5em;
  padding: 1.25em 1.5em;
  background: linear-gradient(135deg, rgba(0, 201, 120, 0.08), rgba(222, 74, 168, 0.08));
  border-radius: var(--radius);
}

/* Wishes Section */
.wishes-list {
  max-width: 700px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wish-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wish-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.wish-icon {
  flex-shrink: 0;
  color: var(--accent);
}
.wishes-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
}

/* Jobs Section */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.job-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.job-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.job-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.job-card:hover .job-card-img img {
  transform: scale(1.05);
}
.job-card-body {
  padding: 24px;
}
.job-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.job-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.job-card-skills {
  font-size: 13px;
  color: var(--primary);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* Info Table */
.info-table-wrap {
  max-width: 800px;
  margin: 0 auto 40px;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid var(--border);
}
.info-table th,
.info-table td {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}
.info-table th {
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
  width: 20%;
  min-width: 7em;
}
.info-table td {
  color: var(--text);
}

/* Info Point */
.info-point {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.info-point-badge {
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.1em;
}
.info-point p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

/* Interview Section */
.interview-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.interview-card {
  display: flex;
  gap: 40px;
  align-items: center;
}
.interview-card.reverse {
  flex-direction: row-reverse;
}
.interview-card-photo {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.interview-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview-card-body {
  flex: 1;
  min-width: 0;
}
.interview-card-meta {
  margin-bottom: 8px;
}
.interview-position {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: 50px;
}
.interview-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}
.interview-section {
  margin-bottom: 20px;
}
.interview-section:last-child {
  margin-bottom: 0;
}
.interview-section h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  margin-bottom: 8px;
}
.interview-section p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .wanted-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wanted-card {
    padding: 32px 20px;
  }
  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .interview-card,
  .interview-card.reverse {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .interview-card-photo {
    width: 180px;
    height: 180px;
  }
  .info-table th {
    white-space: normal;
    min-width: 5em;
  }
  .info-point {
    flex-direction: column;
    gap: 12px;
  }
  .recruit-message-body br {
    display: none;
  }
}
@media (max-width: 480px) {
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
    padding: 8px 16px;
  }
  .info-table th {
    padding-bottom: 0;
    border-bottom: none;
  }
  .interview-card-photo {
    width: 150px;
    height: 150px;
  }
}
