/* =========================================================
   PRIVATE JOBS PAGE (Conflict-free)
   Scope: only inside .jobs-page
   No background colors used
========================================================= */

.jobs-page{
  padding: 26px 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0f172a;
  line-height: 1.7;
}

.jobs-page .jobs-container{
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

/* HERO */
.jobs-page .jobs-hero h1{
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}

.jobs-page .jobs-hero p{
  margin: 0 0 10px;
  color: #334155;
  font-size: 16px;
}

/* CONTENT BLOCKS */
.jobs-page .jobs-content .block{
  padding: 18px 0;
  border-top: 1px solid #e2e8f0;
}

.jobs-page .jobs-content .block:first-child{
  border-top: 0;
  padding-top: 8px;
}

.jobs-page .jobs-content h2{
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.jobs-page .jobs-content h3{
  margin: 14px 0 6px;
  font-size: 18px;
  line-height: 1.3;
}

.jobs-page .jobs-content p{
  margin: 0 0 10px;
  color: #334155;
}

/* LIST GRID (2 columns desktop, 1 column mobile) */
.jobs-page .list-grid{
  list-style: disc;
  padding-left: 18px;
  margin: 10px 0 12px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 26px;

  color: #334155;
}

@media (max-width: 720px){
  .jobs-page .list-grid{
    grid-template-columns: 1fr;
  }
}

/* Normal bullets */
.jobs-page .bullet-list{
  padding-left: 18px;
  margin: 10px 0 12px;
  color: #334155;
}
.jobs-page .bullet-list li{
  margin: 8px 0;
}

/* CHECK LIST */
.jobs-page .check-list{
  list-style: none;
  padding-left: 0;
  margin: 10px 0 12px;
}

.jobs-page .check-list li{
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  color: #334155;
}

.jobs-page .check-list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

/* NOTE */
.jobs-page .note{
  border-left: 3px solid #94a3b8;
  padding-left: 12px;
  color: #334155;
  margin-top: 8px;
}

/* FAQ SECTION */
.jobs-page .jobs-faq{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.jobs-page .jobs-faq h2{
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

/* Accordion wrap */
.jobs-page .faq-wrap{
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.jobs-page .faq-item + .faq-item{
  border-top: 1px solid #e2e8f0;
}

/* FAQ question button */
.jobs-page .faq-q{
  width: 100%;
  background: transparent; /* ✅ no background color */
  border: 0;
  cursor: pointer;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font-weight: 700;
  color: #0f172a;
}

.jobs-page .faq-q span{
  flex: 1;
}

.jobs-page .faq-q:focus{
  outline: 2px solid #94a3b8;
  outline-offset: 2px;
}

/* Icon */
.jobs-page .faq-icon{
  width: 14px;
  height: 14px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex: 0 0 auto;
}

.jobs-page .faq-q[aria-expanded="true"] .faq-icon{
  transform: rotate(-135deg);
}

/* Answer panel */
.jobs-page .faq-a{
  padding: 0 14px 14px;
}

.jobs-page .faq-a p{
  margin: 0;
  color: #334155;
}