/* Styles for CMS-driven content (jobs accordion, service grid tweaks).
   Kept separate from the Webflow CSS so it is easy to maintain. */

.section_careers_job-listings .padding-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 60rem;
  margin: 0 auto;
}

.cms-job {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 1.1rem 1.35rem;
  transition: box-shadow 0.15s ease;
}
.cms-job[open] {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.cms-job_summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}
.cms-job_summary::-webkit-details-marker {
  display: none;
}
.cms-job_title {
  font-weight: 600;
  font-size: 1.15rem;
  color: #111827;
}
.cms-job_meta {
  display: block;
  margin-top: 0.25rem;
  color: #6b7280;
  font-size: 0.9rem;
}
.cms-job_toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #9ca3af;
  flex: none;
  transition: transform 0.15s ease;
}
.cms-job[open] .cms-job_toggle {
  transform: rotate(45deg);
}
.cms-job_body {
  margin-top: 1rem;
  color: #374151;
  line-height: 1.6;
}
.cms-job_body :is(h1, h2, h3, h4, p, ul, ol) {
  margin: 0 0 0.75rem;
}
.cms-job_apply {
  display: inline-block;
  margin-top: 0.75rem;
}
