/*
* assets/css/pages/single-case-study.css
*
* Styles for the Single Case Study page to differentiate it.
* Uses a light grey color scheme.
*/

/* --- Single Page Hero --- */
.single-case-study .hero-overlay {
    background-color: rgba(96, 125, 139, 0.7); /* Professional Blue-Grey Overlay, same as guides */
}

/* --- Sidebar Widget Light Theme --- */
.single-case-study .sidebar-column .widget {
    background-color: #ffffff;
    color: #495057; /* Standard dark text color */
    border-color: #e9ecef; /* Light grey border */
}

.single-case-study .sidebar-column .widget.cta-widget {
    background-color: #f8f9fa; /* Slightly darker grey for CTA background */
}

.single-case-study .sidebar-column .widget-title {
    color: #212529; /* Darker title text */
    border-bottom-color: #e9ecef;
}

/* --- Sidebar Interactive Elements --- */

/* Table of Contents */
.single-case-study .toc-widget .table-of-contents li a {
    color: #495057;
}

.single-case-study .toc-widget .table-of-contents li a:hover {
    background-color: #fff8f0; /* Very light orange background on hover */
    color: #212529;
    border-left-color: #f97316; /* Accent orange */
}

/* CTA Widget */
.single-case-study .cta-widget p {
    color: #495057;
}

.single-case-study .widget.cta-widget .btn-cta-primary {
    /* This button color is reverted to orange in a separate step */
}

/* Social Icons */
.single-case-study .social-share-widget a {
    color: #6c757d; /* Muted gray for icons */
} 