
body {
  font-family: 'Montserrat', sans-serif;
}

.sj-heading {
  text-align: center;
  font-size: 2.5rem;
  margin: 40px 0;
  font-weight: 600;
  color: #2a2a2a;
}

.sportjob-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.sportjob-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  background: #fafafa;
  transition: box-shadow 0.3s;
}

.sportjob-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sportjob-card h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #1e1e1e;
}

.sportjob-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 12px;
}

.details-link {
  text-decoration: none;
  color: #0073aa;
  font-weight: 600;
}

.details-link:hover {
  text-decoration: underline;
}

.sportjob-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
}

.sportjob-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.sportjob-header .meta {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
}

.sportjob-content {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333;
}

.sportjob-apply .apply-button {
  display: inline-block;
  background: #0073aa;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.sportjob-apply .apply-button:hover {
  background: #005b8d;
}

.sj-empty {
  text-align: center;
  color: #777;
}
