/* 
 * Careers Page CSS Fixes
 * Fix font size and bullet alignment issues
 */

/* Fix: Make h5 (Responsibilities:, Requirements:) same size as "Employment Type:" */
.job-details h5 {
    font-size: 1rem !important;      /* Match Employment Type size */
    font-weight: 600 !important;     /* Same weight as Employment Type */
    margin-top: 15px;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.6;
}

/* Fix: Bullet point alignment - ensure bullets don't extend past non-bulleted text */
.job-details ul {
    margin-left: 0 !important;
    padding-left: 20px !important;
    list-style-position: inside !important;
}

/* Fix: Make bullet text same size as paragraph text */
.job-details ul li {
    margin-bottom: 8px;
    padding-left: 0 !important;
    text-indent: 0 !important;
    font-size: 1rem !important;      /* Match paragraph text size */
    line-height: 1.6;
}

/* Ensure consistent spacing for all career section lists */
.career-intro ul,
.ohio-requirements ul,
.application-process ul {
    margin-left: 0 !important;
    padding-left: 20px !important;
    list-style-position: inside !important;
}

/* Make all list items match paragraph text size */
.career-intro ul li,
.ohio-requirements ul li,
.application-process ul li {
    margin-bottom: 8px;
    padding-left: 0 !important;
    font-size: 1rem !important;      /* Match paragraph text size */
    line-height: 1.6;
}


/* Fix: Allow page banner paragraph to flow naturally without early line breaks */
.page-banner p {
    max-width: 100% !important;
    width: 100% !important;
}
