/* Styles specific to probation.html - Probation Services */

/* Two-column layout for main content and sidebar */
.page-container-two-col {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column */
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 992px) { /* Adjust breakpoint as needed */
    .page-container-two-col {
        grid-template-columns: 2.5fr 1fr; /* Main content wider than sidebar */
    }
}

.content-main .page-content-section {
    padding-top: 0; 
    padding-bottom: 1.5rem; 
}
.content-main .page-content-section:last-child {
    padding-bottom: 0;
}
.content-main h2, .content-main h3, .content-main h4 {
    text-align: left; 
    margin-bottom: 0.75rem; /* Consistent bottom margin for headings in main content */
}
.content-main h2::after, .content-main h3::after, .content-main h4::after {
    margin-left: 0; 
    margin-right: auto;
    display: none; /* Remove auto-underline from global if not desired here */
}
.content-main small {
    display: block;
    color: var(--text-color-medium);
    font-size: 0.85rem;
    margin-bottom: 1rem; /* Increased margin for the date */
}
.content-main ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}
.content-main ul li {
    margin-bottom: 0.25rem;
}


/* Sidebar specific styles - similar to jjs.css */
.content-sidebar {
    background-color: var(--background-color-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    height: fit-content; 
}

.profile-sidebar {
    text-align: center;
}

.profile-sidebar h3 { /* Title above image: "Chief Probation Officer" */
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.profile-sidebar img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 0.75rem auto;
    border: 4px solid var(--accent-color);
}

.profile-sidebar .director-name { /* Name below image */
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Accordion styles - inherited from jjs.css through global .accordion classes */
/* No new accordion styles needed if classes are the same */

@media (max-width: 991px) { 
    .page-container-two-col {
        grid-template-columns: 1fr;
    }
    .content-sidebar {
        margin-top: 2rem;
    }
}