/* =========================================
   LCA-BASE.CSS — Broadsheet Design System
   Shared across all pages
   ========================================= */

/* --- RESET & BASE --- */
body {
    font-family: 'Times New Roman', Times, serif;
    background: #fff;
    color: #000;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.55;
    hyphens: none;
}
a { color: #0000EE; }
a:visited { color: #551A8B; }
a:hover { color: #CC0000; }
img {
    display: block;
    border: none;
}

/* --- WRAPPER --- */
.page {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- MASTHEAD --- */
.masthead {
    padding: 18px 0 14px 0;
    text-align: center;
}
.masthead-rule-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}
.masthead-rule-top span {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #444;
    white-space: nowrap;
}
.masthead-rule-top hr {
    flex: 1;
    border: none;
    border-top: 1px solid #000;
    margin: 0;
}
.masthead-name {
    line-height: 1;
    margin: 0;
}
.masthead-name img {
    height: 64px;
    width: auto;
    display: inline-block;
}
.masthead-rule-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}
.masthead-rule-bottom hr {
    flex: 1;
    border: none;
    border-top: 1px solid #000;
    margin: 0;
}
.masthead-rule-bottom a {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
}
.masthead-rule-bottom a:hover { text-decoration: underline; }

/* --- SECTION DIVIDER --- */
.section-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 30px 0;
}
.section-divider hr {
    flex: 1;
    border: none;
    border-top: 1px solid #000;
    margin: 0;
}
.section-divider span {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* --- LIGHTBOX --- */
.lb-toggle {
    display: none;
}
.lb-trigger {
    cursor: zoom-in;
    display: block;
}
.lb-trigger img {
    pointer-events: none;
}
.lb-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 0;
}
.lb-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 8px solid #fff;
}
.lb-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #555;
    padding: 6px 14px;
    cursor: pointer;
}
.lb-close:hover {
    border-color: #fff;
}
.lb-toggle:checked ~ .lb-overlay {
    display: flex;
}

/* --- COLOPHON --- */
.colophon {
    border-top: 1px solid #000;
    padding: 20px 0 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.colophon-left {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #777;
    line-height: 1.8;
}
.colophon-left a { color: #777; }
.colophon-right a { color: #999; }
.colophon-right {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    text-align: right;
    line-height: 1.8;
}

/* --- MOBILE --- */
@media (max-width: 700px) {
    .masthead-name img { height: 36px; }
    .colophon { flex-direction: column; gap: 10px; }
    .colophon-right { text-align: left; }
}
