/* gear — terse grouped kit list. accent (orange) set by foundation. */
.gear {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2.5rem;
}

.gear-group { min-width: 0; }

.gear-head {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-bottom: 0.4rem;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.gear-count {
    color: var(--dim);
    font-size: 0.75rem;
    font-weight: 400;
}

.gear-list { list-style: none; }

.gear-row {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    padding: 0.2rem 0;
}

.gear-item {
    color: var(--fg);
    flex: 0 0 11rem;
}

.gear-note {
    color: var(--dim);
    flex: 1;
    min-width: 0;
    font-size: 0.92rem;
}

/* a faint connecting dash before each note, terminal-style */
.gear-note::before {
    content: '— ';
    color: var(--line);
}

.gear-foot {
    margin-top: 2.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
    color: var(--dim);
    font-size: 0.85rem;
}

@media (max-width: 700px) {
    .gear {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gear-row {
        flex-direction: column;
        gap: 0;
        padding: 0.35rem 0;
    }
    .gear-item { flex: none; }
    .gear-note::before { content: ''; }
}
