/* Control font size inside WP Job Manager listings */
ul.job_listings,
.single_job_listing {
  font-size: 16px !important;   /* normal readable body size */
  line-height: 1.4 !important;
}

/* Control the job title */
ul.job_listings h3,
.single_job_listing .job_listing-title h1 {
  font-size: 22px !important;   /* not giant */
  line-height: 1.3 !important;
  font-weight: 700;
  letter-spacing: 0;
}

/* Stop breaking words weirdly */
ul.job_listings *,
.single_job_listing * {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}


/* NorCAN Survey Page Typography */
.page-id-XXXX .entry-content p,
.page-id-XXXX .entry-content li,
.page-id-XXXX .entry-content blockquote {
  font-size: 16px !important;
  line-height: 1.55 !important;
  margin: 0.7rem 0 !important;
}

/* Headings hierarchy */
.page-id-XXXX .entry-content h1 {
  font-size: 28px !important;
  line-height: 1.3 !important;
  margin: 1rem 0 0.6rem !important;
}
.page-id-XXXX .entry-content h2 {
  font-size: 22px !important;
  line-height: 1.35 !important;
  margin: 0.9rem 0 0.5rem !important;
}
.page-id-XXXX .entry-content h3 {
  font-size: 18px !important;
  line-height: 1.4 !important;
  margin: 0.8rem 0 0.4rem !important;
}

/* Restore compact spacing */
.page-id-XXXX .entry-content > * {
  margin-top: 0.8rem !important;
  margin-bottom: 0.8rem !important;
}

/* Style quote block for clarity */
.page-id-XXXX .entry-content blockquote {
  border-left: 3px solid #ccc;
  background: #fafafa;
  padding: 0.8rem 1rem;
}

/* Uniform button style */
.page-id-XXXX .wp-block-button .wp-block-button__link {
  font-size: 16px !important;
  line-height: 1.3 !important;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .page-id-XXXX .entry-content p,
  .page-id-XXXX .entry-content li,
  .page-id-XXXX .entry-content blockquote {
    font-size: 15px !important;
  }
  .page-id-XXXX .entry-content h1 { font-size: 24px !important; }
  .page-id-XXXX .entry-content h2 { font-size: 20px !important; }
  .page-id-XXXX .entry-content h3 { font-size: 17px !important; }
}


