:root {
  --primary: #223a70;
  --border: #e6e6e6;
  --muted: #666;
  --bg: #fafafa;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.7;
  color: #333;
}

.main-wrap.recruit {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}

/* header */
.page-header h1 {
  font-size: 2.2rem;
}

.subtitle {
  color: var(--muted);
}

/* sections */
.section,
.lead,
.contact {
  margin-top: 40px;
}

/* job card */
.job-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  background: white;
}

/* header inside card */
.job-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.badge {
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
}

/* definition grid */
.job-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 20px;
}

.job-grid dt {
  font-weight: bold;
  color: var(--muted);
}

.job-grid dd {
  margin: 0;
}

/* contact */
.contact-box {
  font-style: normal;
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 12px;
  background: var(--bg);
}
