/* Styles for careers.php */
.main-content-section.card h2 {
  margin-top: 0; /* In case there was a default top margin */
}

.main-content-section.card h3 {
  margin-top: 25px; /* Add space above h3 */
  margin-bottom: 10px;
}

.main-content-section.card ul {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove default padding */
  margin-bottom: 20px; /* Space before the Apply Now button or next element */
}

.main-content-section.card ul li {
  margin-bottom: 8px; /* Space between list items */
  padding-left: 15px; /* Indent list items a bit for visual structure */
  position: relative; /* For custom bullet or pseudo-element if desired later */
}

/* Optional: Add a subtle custom marker if you remove default bullets */
/*
.main-content-section.card ul li::before {
  content: "–"; 
  position: absolute;
  left: 0;
  color: var(--primary-color); 
}
*/

.main-content-section.card p {
    margin-bottom: 15px; /* Consistent bottom margin for paragraphs */
}

.main-content-section.card .btn-primary {
    margin-top: 10px; /* Ensure some space above the button if lists are short */
}

/* Job listings specific styles */
.job-listings {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.job-listing {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
}

.job-listing:last-child {
  border-bottom: none;
  padding-bottom: 0;
} 