/*
Theme Name: BCLI Theme Child
Template: bcli-theme
Author: Your Name
Description: Child theme for BCLI Theme updated with static HTML/CSS layouts supplied by the user.  The child theme enqueues additional stylesheets (globals.css, styleguide.css, and per‑page CSS) and provides custom page templates to display the archived projects sections.
Version: 1.1.0
Text Domain: bcli-theme-child
*/

/* Place any custom overrides below.  Additional stylesheets are enqueued via functions.php. */

/* Override widths and positioning for archived layouts to allow responsive scaling */
.archived-projects-appendix,
.archived-projects-chapter2,
.archived-projects-chapter-1-table {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    position: relative !important;
}

.archived-projects-appendix .group-785,
.archived-projects-appendix .group-786,
.archived-projects-chapter2 .group-785,
.archived-projects-chapter2 .group-786,
.archived-projects-chapter-1-table .group-785,
.archived-projects-chapter-1-table .group-786 {
    position: relative !important;
}

/* Ensure container centers horizontally */
.container-center-horizontal {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Responsive text scaling */
@media (max-width: 767px) {
    .archived-projects-appendix, .archived-projects-chapter2, .archived-projects-chapter-1-table {
        font-size: 14px;
    }
}