/* =====================================================
   Job Detail Page – Inspired by Ashby Style
   ===================================================== */


/* Add spacing after hero banner on job detail page */
.hero-section + .join-hero.white,
.hero + .join-hero.white {
  margin-top: 2rem;
}


.join-hero + .join-hero.white {
  margin-top: 3rem;
}


/* Overall container & spacing */
.join-hero.white {
  max-width: 900px;
  margin: auto;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  margin-bottom: 2rem;
}

/* Job title emphasis */
.join-hero.white h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

/* Job meta info grouping box */
.join-hero.white img {
  width: 150px;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.join-hero.white p.panel-body {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin: 0.6rem 0;
}

/* Headings */
.join-hero.white h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
  margin: 1.5rem 0 0.6rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.35rem;
}

/* =========================
   List Items (Responsibilities, Requirements, etc.)
   ========================= */

/* Remove default list spacing */
.panel-body ul,
.panel-body ol {
  padding-left: 1.25rem;
  margin-top: 0.75rem;
  margin-bottom: 1.4rem;
}

/* Custom bullet style */
.panel-body ul li {
  position: relative;
  list-style: none;
  padding-left: 1.65rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #374151;
}

/* Add simple circle bullet similar to Ashby */
.panel-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background-color: #2563eb;
  border-radius: 50%;
}

/* Ordered list style (numbered) */
.panel-body ol li {
  margin-bottom: 0.85rem;
  padding-left: 0.85rem;
  font-weight: 500;
  font-size: 1rem;
  color: #374151;
}

/* Style for text emphasis inside lists */
.panel-body li strong {
  color: #111827;
}

/* Meta boxes for key job info */
.job-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.job-meta .meta-block {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.job-meta .meta-block span.label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
}

.job-meta .meta-block span.value {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

/* Horizontal divider impact (subtle) */
.join-hero.white hr.section-divider {
  border: none;
  height: 1px;
  background: #e5e7eb;
  margin: 1.75rem 0;
}

/* Small screens */
@media (max-width: 600px) {
  .join-hero.white {
    padding: 2rem 1rem;
  }

  .join-hero.white h3 {
    font-size: 1.6rem;
  }
  
  .panel-body ul li {
    font-size: 0.98rem;
  }
}
