/* 06-components/_fixed-row.css — .c-fixed-row: a fixed fault in the history list. */
.c-fixed-row { display: grid; grid-template-columns: 7rem 1fr; gap: var(--space-md); padding: var(--space-sm) var(--space-md); background: var(--surface); border: var(--stroke) solid var(--rule); border-radius: var(--radius-md); }
.c-fixed-row__date { font-family: var(--font-mono); font-size: var(--text-sm); color: var(--ink-muted); }
.c-fixed-row__title { font-weight: var(--weight-semibold); display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-xs); }
.c-fixed-row__meta { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--ink-faint); margin-top: 2px; }
.c-fixed-row__note { margin-top: var(--space-xs); padding: var(--space-xs) var(--space-sm); background: var(--band-ok-fill); border-inline-start: var(--stroke-edge) solid var(--dot-ok); border-radius: var(--radius-sm); color: var(--ink); font-size: var(--text-sm); }
@media (max-width: 40rem) { .c-fixed-row { grid-template-columns: 1fr; gap: var(--space-2xs); } }
