/*
 * Component: about-technology-component
 * File:      about-technology-component.css
 * BEM prefix: fc-tech__
 * Theme:      FelixChess dark — #0a0c0a bg / #aaff00 lime accent
 *
 * Clientlib category: felixchess.about.technology
 * Fonts: Playfair Display + Source Sans 3 — loaded once in base page template
 */

/* ── Section wrapper ──────────────────────────────────────────────────────── */

.fc-tech {
    background-color: #0a0c0a;
    color: #e8e8e0;
    font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
    padding: 5rem 3.5rem;
    box-sizing: border-box;
}

/* ── Overline ─────────────────────────────────────────────────────────────── */

.fc-tech__overline {
    font-size: 0.6875rem;           /* 11px */
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #aaff00;
    margin: 0 0 1.25rem;
    padding: 0;
    text-align: center;
}

/* ── Headline ─────────────────────────────────────────────────────────────── */

.fc-tech__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #f5f5ee;
    margin: 0 0 3.5rem;
    text-align: center;
}

.fc-tech__headline-accent {
    color: #aaff00;
    font-style: normal;
}

/* ── Definition list wrapper ──────────────────────────────────────────────── */

.fc-tech__list {
    margin: 0;
    padding: 0;
}

/* ── Individual row ───────────────────────────────────────────────────────── */

.fc-tech__row {
    display: grid;
    grid-template-columns: 13rem 1fr;
    gap: 0 3rem;
    padding: 2rem 0;
    border-top: 1px solid #1a201a;
    align-items: start;
}

.fc-tech__row:last-child {
    border-bottom: 1px solid #1a201a;
}

/* ── Term (left column) ───────────────────────────────────────────────────── */

.fc-tech__term {
    font-size: 0.8125rem;           /* 13px */
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #aaff00;
    opacity: 0.65;
    padding: 0;
    margin: 0;
    padding-top: 0.1em;             /* optical alignment with first line of desc */
}

/* ── Description (right column) ──────────────────────────────────────────── */

.fc-tech__desc {
    font-size: 0.9375rem;           /* 15px */
    font-weight: 300;
    line-height: 1.8;
    color: #7a8070;
    margin: 0;
    padding: 0;
    max-width: 640px;
}

/* ── Inline stat highlight — "30 million games" ───────────────────────────── */

.fc-tech__stat {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-style: italic;
    color: #aaff00;
}

/* ── Responsive — narrow viewports ───────────────────────────────────────── */

@media (max-width: 680px) {
    .fc-tech {
        padding: 3.5rem 1.5rem;
    }

    .fc-tech__row {
        grid-template-columns: 1fr;
        gap: 0.5rem 0;
        padding: 1.75rem 0;
    }

    .fc-tech__term {
        opacity: 0.9;               /* more readable as a heading at narrow width */
    }
}