/* ══════════════════════════════════════════════════════════
   Terminal Content — Bounty Board, Top Builders, Library,
   LLM Predictions, How-to-Build, Inspection, LLM Costs,
   High Council
   ══════════════════════════════════════════════════════════ */

/* ── Bounty Tiers ────────────────────────────────────── */
.bounty-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.bounty-tier {
    background: #ede4cc;
    border: 1px solid #c9b99a;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.bounty-tier-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.bounty-tier-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.bounty-tier-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
}

.bounty-tier-desc {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.85rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid;
}

.bounty-tier-list {
    flex: 1;
}

/* Apprentice — earthy, humble */
.bounty-tier--apprentice {
    border-color: #a89279;
}

.bounty-tier--apprentice .bounty-tier-icon {
    color: #8b7355;
}

.bounty-tier--apprentice .bounty-tier-title {
    color: #6b5740;
}

.bounty-tier--apprentice .bounty-tier-desc {
    color: #8b7355;
    border-bottom-color: #c9b99a;
}

/* Journeyman — refined, silver-blue */
.bounty-tier--journeyman {
    background: #eae8e2;
    border-color: #8a8a9a;
}

.bounty-tier--journeyman .bounty-tier-icon {
    color: #5a5a7a;
}

.bounty-tier--journeyman .bounty-tier-title {
    color: #3d3d5c;
}

.bounty-tier--journeyman .bounty-tier-desc {
    color: #6a6a82;
    border-bottom-color: #b0b0be;
}

/* Master — regal, gold */
.bounty-tier--master {
    background: #f0e8d0;
    border-color: #c4a44a;
    box-shadow: inset 0 0 30px rgba(196, 164, 74, 0.08);
}

.bounty-tier--master .bounty-tier-icon {
    color: #8b6914;
}

.bounty-tier--master .bounty-tier-title {
    color: #5a4510;
}

.bounty-tier--master .bounty-tier-desc {
    color: #8b7740;
    border-bottom-color: #d4b85a;
}

.bounty-tier-count {
    margin-left: auto;
    font-size: 0.7rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    padding: 2px 8px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.06);
    color: inherit;
    opacity: 0.6;
}

/* Bounty items */
.bounty-item {
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.bounty-item:last-child {
    margin-bottom: 0;
}

.bounty-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.bounty-item-id {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: #8b7355;
    font-weight: 600;
}

.bounty-item-status {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 2px;
    font-weight: 600;
}

.bounty-item--open .bounty-item-status {
    color: #3d6b35;
    background: rgba(61, 107, 53, 0.1);
}

.bounty-item--claimed .bounty-item-status {
    color: #8b6914;
    background: rgba(139, 105, 20, 0.1);
}

.bounty-item--in_review .bounty-item-status {
    color: #5a5a7a;
    background: rgba(90, 90, 122, 0.1);
}

.bounty-item-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #3d2b1f;
    margin-bottom: 4px;
}

.bounty-item-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    color: #6b5740;
    margin-bottom: 8px;
}

.bounty-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: #8b7355;
}

.bounty-item-reward {
    font-weight: 600;
}

.bounty-item-location {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* Active (keyboard-selected) bounty item */
.bounty-item.active {
    border-color: #8b6914;
    box-shadow: 0 0 0 1px #8b6914, 0 2px 8px rgba(139, 105, 20, 0.2);
    background: rgba(255, 255, 255, 0.7);
}

/* Claimed/in-review items slightly muted */
.bounty-item--claimed,
.bounty-item--in_review {
    opacity: 0.7;
}

.bounty-item--claimed.active,
.bounty-item--in_review.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .bounty-tiers {
        grid-template-columns: 1fr;
    }
}

/* ── Top Builders ────────────────────────────────────── */
.builders-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.builders-column {
    background: #ede4cc;
    border: 1px solid #c9b99a;
    border-radius: 4px;
    padding: 20px;
}

.builders-column-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.builders-column-icon {
    font-size: 1.3rem;
    line-height: 1;
}

.builders-column-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
}

.builders-column-desc {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.85rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid;
}

/* Top All Time — gold */
.builders-column--top {
    background: #f0e8d0;
    border-color: #c4a44a;
    box-shadow: inset 0 0 30px rgba(196, 164, 74, 0.08);
}

.builders-column--top .builders-column-icon {
    color: #8b6914;
}

.builders-column--top .builders-column-title {
    color: #5a4510;
}

.builders-column--top .builders-column-desc {
    color: #8b7740;
    border-bottom-color: #d4b85a;
}

/* X/Twitter — dark with gold accents */
.builders-column--twitter {
    background: #2a2218;
    border-color: #8b6914;
}

.builders-column--twitter .builders-column-icon {
    color: #d4a853;
}

.builders-column--twitter .builders-column-title {
    color: #e8dcc4;
}

.builders-column--twitter .builders-column-desc {
    color: #a89279;
    border-bottom-color: #5a4510;
}

.builders-column--twitter .builder-row {
    background: rgba(212, 168, 83, 0.08);
    border-color: rgba(212, 168, 83, 0.15);
}

.builders-column--twitter .builder-rank {
    color: #d4a853;
}

.builders-column--twitter .builder-name {
    color: #e8dcc4;
}

.builders-column--twitter .builder-meta {
    color: #a89279;
}

.builder-name--handle {
    font-size: 0.78rem;
    letter-spacing: 0.3px;
}

.builders-empty {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.82rem;
    font-style: italic;
    color: #a89279;
    padding: 16px 10px;
    text-align: center;
}

/* Recent — silver-blue */
.builders-column--recent {
    background: #eae8e2;
    border-color: #8a8a9a;
}

.builders-column--recent .builders-column-icon {
    color: #5a5a7a;
}

.builders-column--recent .builders-column-title {
    color: #3d3d5c;
}

.builders-column--recent .builders-column-desc {
    color: #6a6a82;
    border-bottom-color: #b0b0be;
}

/* Builder rows */
.builder-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    margin-bottom: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 3px;
}

.builder-row:last-child {
    margin-bottom: 0;
}

.builder-rank {
    font-size: 0.7rem;
    font-weight: 600;
    color: #8b7355;
    min-width: 24px;
}

.builder-name {
    font-weight: 600;
    color: #3d2b1f;
}

.builder-build {
    font-size: 0.78rem;
    color: #6b5740;
    font-style: italic;
}

.builder-meta {
    margin-left: auto;
    font-size: 0.7rem;
    color: #8b7355;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .builders-columns {
        grid-template-columns: 1fr;
    }
    .builders-columns--row2 {
        grid-template-columns: 1fr;
    }
}

/* Second row — 2 columns */
.builders-columns--row2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Experience — earthy green */
.builders-column--experience {
    background: #e6ebe0;
    border-color: #7a9a5a;
    box-shadow: inset 0 0 30px rgba(122, 154, 90, 0.08);
}

.builders-column--experience .builders-column-icon {
    color: #4a6a2a;
}

.builders-column--experience .builders-column-title {
    color: #3a5520;
}

.builders-column--experience .builders-column-desc {
    color: #6a8050;
    border-bottom-color: #a0b888;
}

/* Delvs — warm amber */
.builders-column--delvs {
    background: #f2e8d4;
    border-color: #c49a4a;
    box-shadow: inset 0 0 30px rgba(196, 154, 74, 0.08);
}

.builders-column--delvs .builders-column-icon {
    color: #9a7020;
}

.builders-column--delvs .builders-column-title {
    color: #6a4e18;
}

.builders-column--delvs .builders-column-desc {
    color: #9a8050;
    border-bottom-color: #d4b878;
}

/* First 100 Builders — standalone section below columns */
.builders-first100 {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #c9b99a;
}

.builders-first100-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.builders-first100-icon {
    font-size: 1.1rem;
    color: #8b7355;
    line-height: 1;
}

.builders-first100-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #6b5740;
    margin: 0;
}

.builders-first100-desc {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.82rem;
    line-height: 1.6;
    font-style: italic;
    color: #8b7355;
    margin: 0 0 14px;
}

.builders-first100-list {
    max-width: 400px;
}

/* ── Library Entries ──────────────────────────────────── */
.library-entries {
    margin-top: 24px;
}

.library-entry {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 8px;
    background: #ede4cc;
    border: 1px solid #c9b99a;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: left;
}

.library-entry:last-child {
    margin-bottom: 0;
}

.library-entry:hover {
    background: rgba(61, 43, 31, 0.06);
    border-color: #8b7355;
    transform: translateX(4px);
}

.library-entry.active {
    border-color: #d4a853;
    box-shadow: 0 0 0 1px #d4a853;
    transform: translateX(4px);
}

.library-entry-icon {
    font-size: 1.4rem;
    color: #8b6914;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

.library-entry.active .library-entry-icon {
    color: #d4a853;
}

.library-entry-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.library-entry-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3d2b1f;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.library-entry:hover .library-entry-title,
.library-entry.active .library-entry-title {
    color: #3d2b1f;
}

.library-entry-desc {
    font-size: 0.78rem;
    color: #8b7355;
    font-style: italic;
    transition: color 0.2s;
}

.library-entry:hover .library-entry-desc,
.library-entry.active .library-entry-desc {
    color: #6b5740;
}

.library-entry-arrow {
    font-size: 1.1rem;
    color: #c9b99a;
    flex-shrink: 0;
    transition: color 0.2s;
}

.library-entry.active .library-entry-arrow {
    color: #d4a853;
}

/* ── LLM Predictions ─────────────────────────────────── */
.llm-predictions {
    margin-top: 8px;
}

.llm-updated {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.75rem;
    color: #8b7355;
    font-style: italic;
    margin-bottom: 24px;
}

.llm-provider {
    margin-bottom: 32px;
}

.llm-provider:last-child {
    margin-bottom: 0;
}

.llm-provider-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.llm-provider-name {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #3d2b1f;
    margin: 0;
}

.llm-provider-site {
    font-size: 0.72rem;
    color: #8b7355;
    letter-spacing: 0.5px;
}

.llm-provider-notes {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.78rem;
    color: #6b5740;
    font-style: italic;
    margin: 0 0 12px;
    line-height: 1.5;
}

/* Table */
.llm-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.78rem;
}

.llm-table thead th {
    text-align: left;
    padding: 8px 10px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b5740;
    border-bottom: 2px solid #c9b99a;
    white-space: nowrap;
}

.llm-table tbody td {
    padding: 8px 10px;
    border-bottom: 1px solid #e0d9ce;
    vertical-align: top;
    color: #3d2b1f;
}

.llm-row--legacy td {
    opacity: 0.5;
}

.llm-row--flagship td {
    background: rgba(139, 105, 20, 0.06);
}

.llm-model-name {
    display: block;
    font-weight: 600;
    white-space: nowrap;
}

.llm-model-note {
    display: block;
    font-size: 0.68rem;
    color: #8b7355;
    font-style: italic;
    margin-top: 2px;
    white-space: normal;
}

.llm-col-input,
.llm-col-output {
    font-weight: 600;
    white-space: nowrap;
}

.llm-col-context,
.llm-col-released {
    white-space: nowrap;
    color: #6b5740;
}

.llm-col-use {
    font-size: 0.72rem;
    color: #6b5740;
}

/* Status badges */
.llm-status {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 7px;
    border-radius: 2px;
    font-weight: 600;
    white-space: nowrap;
}

.llm-status--active {
    color: #3d6b35;
    background: rgba(61, 107, 53, 0.1);
}

.llm-status--flagship {
    color: #8b6914;
    background: rgba(139, 105, 20, 0.12);
}

.llm-status--legacy {
    color: #8b7355;
    background: rgba(139, 115, 85, 0.1);
}

.llm-status--preview {
    color: #5a5a7a;
    background: rgba(90, 90, 122, 0.1);
}

.llm-status--deprecated {
    color: #8b4040;
    background: rgba(139, 64, 64, 0.1);
}

@media (max-width: 768px) {
    .llm-table {
        font-size: 0.7rem;
    }
    .llm-col-use,
    .llm-col-released {
        display: none;
    }
}

/* ── How To Build ───────────────────────────────────── */
.how-to-build {
    font-family: 'Georgia', 'Times New Roman', serif;
}

.htb-notice {
    background: rgba(61, 107, 53, 0.08);
    border: 1px solid rgba(61, 107, 53, 0.25);
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 0.82rem;
    color: #3d6b35;
    line-height: 1.6;
    margin-bottom: 28px;
}

.htb-heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3d2b1f;
    margin: 24px 0 8px;
}

.htb-heading:first-of-type {
    margin-top: 0;
}

.htb-text {
    font-size: 0.82rem;
    color: #5c4a38;
    line-height: 1.7;
    margin: 0 0 12px;
}

.htb-steps {
    list-style: none;
    counter-reset: htb-step;
    padding: 0;
    margin: 0 0 12px;
}

.htb-steps li {
    counter-increment: htb-step;
    position: relative;
    padding: 12px 16px 12px 48px;
    margin-bottom: 8px;
    font-size: 0.82rem;
    color: #5c4a38;
    line-height: 1.6;
    background: rgba(61, 43, 31, 0.03);
    border: 1px solid rgba(61, 43, 31, 0.08);
    border-radius: 4px;
}

.htb-steps li::before {
    content: counter(htb-step);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 22px;
    height: 22px;
    background: #3d2b1f;
    color: #f4edd8;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.htb-steps li strong {
    color: #3d2b1f;
}

.htb-providers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.htb-provider {
    padding: 10px 14px;
    background: rgba(61, 43, 31, 0.03);
    border: 1px solid rgba(61, 43, 31, 0.1);
    border-radius: 4px;
}

.htb-provider-name {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #3d2b1f;
}

.htb-provider-url {
    display: block;
    font-size: 0.7rem;
    color: #8b7355;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .htb-providers {
        grid-template-columns: 1fr;
    }
}

/* ── Inspection Tool ───────────────────────────────── */
.it-notice {
    background: rgba(0, 102, 153, 0.08);
    border: 1px solid rgba(0, 102, 153, 0.25);
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 0.82rem;
    color: #1a5276;
    line-height: 1.6;
    margin-bottom: 28px;
}

.it-heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3d2b1f;
    margin: 24px 0 8px;
}

.it-heading:first-of-type {
    margin-top: 0;
}

.it-subheading {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5c4a38;
    margin: 18px 0 6px;
}

.it-text {
    font-size: 0.82rem;
    color: #5c4a38;
    line-height: 1.7;
    margin: 0 0 12px;
}

/* Key reference cards */
.it-keys {
    margin: 0 0 16px;
}

.it-key-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    margin-bottom: 6px;
    background: rgba(61, 43, 31, 0.03);
    border: 1px solid rgba(61, 43, 31, 0.08);
    border-radius: 4px;
}

.it-key {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #3d2b1f;
    color: #f4edd8;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.it-key-body {
    flex: 1;
}

.it-key-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3d2b1f;
    margin-bottom: 2px;
}

.it-key-desc {
    display: block;
    font-size: 0.78rem;
    color: #5c4a38;
    line-height: 1.6;
}

/* Field reference list */
.it-fields {
    margin: 0 0 16px;
}

.it-field {
    padding: 8px 0;
    border-bottom: 1px solid rgba(61, 43, 31, 0.06);
}

.it-field:last-child {
    border-bottom: none;
}

.it-field-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #3d2b1f;
    margin-bottom: 2px;
}

.it-label-green {
    color: #2d6a2e;
}

.it-label-red {
    color: #a33;
}

.it-field-desc {
    display: block;
    font-size: 0.78rem;
    color: #6b5740;
    line-height: 1.6;
}

/* Builder tips */
.it-tips {
    list-style: none;
    counter-reset: it-tip;
    padding: 0;
    margin: 0 0 12px;
}

.it-tips li {
    counter-increment: it-tip;
    position: relative;
    padding: 12px 16px 12px 48px;
    margin-bottom: 8px;
    font-size: 0.82rem;
    color: #5c4a38;
    line-height: 1.6;
    background: rgba(61, 43, 31, 0.03);
    border: 1px solid rgba(61, 43, 31, 0.08);
    border-radius: 4px;
}

.it-tips li::before {
    content: counter(it-tip);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 22px;
    height: 22px;
    background: #3d2b1f;
    color: #f4edd8;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.it-tips li strong {
    color: #3d2b1f;
}

/* Action link (used in library subsections) */
.it-action {
    margin: 16px 0 8px;
}
.it-action-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #3d2b1f, #5a3d28);
    border: 1px solid #8b7355;
    border-radius: 4px;
    color: #e8dcc4;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.2s ease;
}
.it-action-link:hover {
    background: linear-gradient(135deg, #5a3d28, #6b4c1e);
    border-color: #d4a853;
    color: #fff;
}

/* ── LLM Cost Estimates ─────────────────────────────── */
.llm-cost-heading {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3d2b1f;
    margin: 0 0 8px;
}

.llm-cost-intro {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.8rem;
    color: #5c4a38;
    line-height: 1.6;
    margin: 0 0 20px;
}

/* Cost comparison table */
.llm-cost-table .llm-col-provider {
    font-size: 0.72rem;
    color: #8b7355;
    white-space: nowrap;
}

.llm-col-cost {
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    color: #3d2b1f;
}

.llm-col-cost--per10 {
    color: #3d6b35;
}

.llm-col-cost--perhour {
    color: #5c4a38;
}

/* Notes */
.llm-cost-notes {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #e0d9ce;
}

.llm-cost-note {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.72rem;
    color: #8b7355;
    line-height: 1.5;
    margin: 0 0 4px;
}

/* Section divider between cost estimates and full pricing */
.llm-section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #c9b99a 20%, #c9b99a 80%, transparent);
    margin: 32px 0;
}

.llm-pricing-heading {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3d2b1f;
    margin: 0 0 20px;
}

@media (max-width: 768px) {
    .llm-cost-table .llm-col-provider {
        display: none;
    }
}

/* ── High Council ───────────────────────────────────── */
.hc-intro {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.88rem;
    color: #5c4a38;
    line-height: 1.7;
    margin: 0 0 28px;
    font-style: italic;
}

.hc-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hc-column {
    background: #ede4cc;
    border: 1px solid #c9b99a;
    border-radius: 4px;
    padding: 20px;
}

.hc-column-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.hc-column-icon {
    font-size: 1.3rem;
    color: #8b6914;
    line-height: 1;
}

.hc-column-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #3d2b1f;
    margin: 0;
}

.hc-column-desc {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.82rem;
    line-height: 1.6;
    font-style: italic;
    color: #8b7355;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #c9b99a;
}

/* Individual seat card */
.hc-seat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hc-seat:last-child {
    margin-bottom: 0;
}

.hc-seat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #3d2b1f;
    color: #f4edd8;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin-top: 2px;
}

.hc-seat-body {
    flex: 1;
}

.hc-seat-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3d2b1f;
    margin-bottom: 2px;
}

.hc-seat-role {
    display: block;
    font-size: 0.78rem;
    color: #6b5740;
    line-height: 1.5;
}

/* Vacant seat — dimmed */
.hc-seat--vacant {
    opacity: 0.5;
    border-style: dashed;
}

.hc-seat--vacant .hc-seat-number {
    background: #8b7355;
}

.hc-seat-name--vacant {
    font-style: italic;
    font-weight: 400;
    color: #8b7355;
}

/* Filled seat — gold accent */
.hc-seat--filled {
    border-color: rgba(139, 105, 20, 0.2);
    background: rgba(212, 168, 83, 0.08);
}

.hc-seat--filled .hc-seat-number {
    background: #8b6914;
    color: #f4edd8;
}

@media (max-width: 768px) {
    .hc-columns {
        grid-template-columns: 1fr;
    }
}

/* Compact roster (used in library article) */
.hc-roster {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding: 18px 20px;
    background: rgba(61, 43, 31, 0.04);
    border: 1px solid rgba(61, 43, 31, 0.1);
    border-radius: 4px;
}

.hc-roster-chamber {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hc-roster-label {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6b5740;
}

.hc-roster-seats {
    display: flex;
    gap: 8px;
}

.hc-roster-seat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: default;
}

.hc-roster-seat--filled {
    background: #8b6914;
    color: #f4edd8;
    border: 2px solid #d4a853;
}

.hc-roster-seat--vacant {
    background: transparent;
    color: #c9b99a;
    border: 2px dashed #c9b99a;
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .hc-roster {
        flex-direction: column;
        gap: 16px;
    }
}

/* ─── Hot Keys Section ─────────────────────────────────── */

.hk-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

@media (max-width: 700px) {
    .hk-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.hk-col {}

.hk-heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: #3d2b1f;
    margin: 24px 0 8px;
}

.hk-heading:first-of-type {
    margin-top: 0;
}

.hk-keys {
    margin: 0 0 16px;
}

.hk-key-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    margin-bottom: 4px;
    background: rgba(61, 43, 31, 0.03);
    border: 1px solid rgba(61, 43, 31, 0.08);
    border-radius: 4px;
}

.hk-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 28px;
    padding: 0 8px;
    background: #3d2b1f;
    color: #f4edd8;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.hk-desc {
    flex: 1;
    font-size: 0.8rem;
    color: #5c4a38;
    line-height: 1.5;
}

.hk-desc strong {
    color: #3d2b1f;
}
