/* PDG Job Postings — neutral front-end styling.
   Deliberately minimal so it sits reasonably well inside most
   themes without a fight. Override any of this from the theme's
   own stylesheet if it needs to match more closely. */

.pdg-job {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
}

.pdg-job-header {
  text-align: center;
  margin-bottom: 24px;
}

.pdg-job-eyebrow {
  font-size: 13px;
  color: #666;
  margin: 0 0 6px;
}

.pdg-job-title {
  font-size: 26px;
  margin: 0;
  color: var(--pdg-heading-color, #1a1a1a);
}

.pdg-job-stats {
  display: grid;
  grid-template-columns: repeat(var(--pdg-stat-count, 3), minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.pdg-job-stat {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.pdg-job-stat-value {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pdg-job-stat-label {
  font-size: 12px;
  color: #777;
}

.pdg-job-apply-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.pdg-job-apply-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  background: var(--pdg-button-color, #1a1a1a);
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s;
}
.pdg-job-apply-btn:hover {
  background: var(--pdg-button-hover-color, #000);
  color: #fff !important;
}

.pdg-job-about {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.pdg-job-section {
  margin-bottom: 28px;
}

.pdg-job-section-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--pdg-subheading-color, #1a1a1a);
}

.pdg-job-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
}

.pdg-job-back {
  margin-top: 32px;
}
.pdg-job-back a {
  font-size: 14px;
}

/* ── Archive ── */

.pdg-job-archive-title {
  font-size: 26px;
  margin-bottom: 24px;
  color: var(--pdg-heading-color, #1a1a1a);
}

.pdg-job-archive-intro {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
  max-width: 600px;
}

.pdg-job-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdg-job-card {
  display: block;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}
.pdg-job-card:hover {
  border-color: #999;
}

.pdg-job-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pdg-job-card-meta {
  font-size: 13px;
  color: #777;
}

.pdg-job-empty {
  color: #777;
}

@media (max-width: 600px) {
  .pdg-job-stats {
    grid-template-columns: 1fr;
  }
}

/* .pdg-job-card, .pdg-job-card-title, and .pdg-job-card-meta already
   exist above for the archive page, and the [pdg_job_openings]
   shortcode reuses those same classes rather than duplicating them. */
