/* ===========================
   Job Posting Component Styles
   =========================== */

.job-posting {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--neutral-lightest);
  border-radius: 0.75rem;
  box-shadow: 0 6px 18px rgba(var(--neutral-darkest-alpha), 0.08);
  color: var(--neutral-darkest);
  line-height: 1.6;
}

.job-posting header {
  border-bottom: 2px solid var(--neutral-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
}

.job-posting header h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.job-posting header h2 {
  font-size: 1.125rem;
  color: var(--neutral-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.job-posting section {
  margin-bottom: 2rem;
}

.job-posting h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-darker);
  margin-bottom: 0.75rem;
}

.job-posting p {
  margin-bottom: 1rem;
}

.job-posting ul {
  list-style: disc inside;
  padding-left: 1rem;
}

.job-posting li {
  margin-bottom: 0.5rem;
}

.job-posting footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.job-posting footer .button {
  background: var(--accent);
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background 0.25s ease;
}

.job-posting footer .button:hover {
  background: var(--accent-dark);
}

.job-posting .apply a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
}

.job-posting .apply a:hover {
  color: var(--accent-dark);
}
