/* css/about_scorefac.css
 * Sole stylesheet for about_scorefac.php (the ScoreFactory dev log). Loaded only
 * by that page, on top of the dark ScoreFactory chrome (header-score.php, body.sf-dark).
 *
 * Mirrors css/about.css's layout so the two dev logs read as the same product, but
 * restyled for the dark theme. Everything is scoped under .sf-devlog so it can never
 * collide with the light about.css. Brass #d4af37 is the shared accent.
 */

.sf-devlog.devlog-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 4px 48px;
    color: #d4d8dd;
}

.sf-devlog .devlog-header {
    margin: 0 0 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #3a3f47;
}
.sf-devlog .devlog-header h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.8rem;
    margin: 0 0 4px;
    color: #f4f4f2;
}
.sf-devlog .devlog-lead {
    margin: 0;
    color: #8a929c;
    font-size: 0.95rem;
}

.sf-devlog .devlog-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
}
@media (min-width: 900px) {
    .sf-devlog .devlog-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .sf-devlog .devlog-column:not(:first-child) {
        padding-left: 32px;
        border-left: 1px solid #3a3f47;
    }
}

.sf-devlog .devlog-column h2,
.sf-devlog .devlog-sitewide h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.15rem;
    margin: 0 0 14px;
    padding-bottom: 6px;
    color: #f4f4f2;
    letter-spacing: 0.02em;
    border-bottom: 2px solid #d4af37;
}

.sf-devlog .devlog-entry {
    margin: 0 0 18px;
    padding: 0;
}
.sf-devlog .devlog-entry:last-child { margin-bottom: 0; }

.sf-devlog .devlog-entry time {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    color: #8a929c;
    margin-bottom: 2px;
}
.sf-devlog .devlog-entry h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1rem;
    margin: 2px 0 4px;
    color: #f4f4f2;
}
.sf-devlog .devlog-entry p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.45;
    color: #c7ccd2;
}
.sf-devlog .devlog-entry p + p { margin-top: 8px; }
.sf-devlog .devlog-entry strong { color: #e8ebee; }

.sf-devlog .devlog-sitewide {
    margin-bottom: 12px;
    padding-top: 16px;
    border-top: 1px solid #3a3f47;
}
.sf-devlog .devlog-sitewide .devlog-columns { margin-bottom: 0; }

/* Per-column "Show More" toggle (entries past the 6th collapse behind it). */
.sf-devlog .devlog-more-toggle {
    display: inline-block;
    margin-top: 4px;
    padding: 6px 14px;
    font: inherit;
    font-weight: 600;
    color: #1a1d21;
    background: #d4af37;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
}
.sf-devlog .devlog-more-toggle:hover { background: #c19f2f; }
