/* ==========================================================================
   Evidence List
   Overview list header and row layout.
   ========================================================================== */

/* -------------------------------------------------------------------------
   Evidence Overview / List
   ------------------------------------------------------------------------- */

.evidence-list-header {
    margin-bottom: var(--space-xl);
}

.evidence-list-header h1 {
    margin-bottom: var(--space-sm);
}

.evidence-list-header p {
    color: var(--text-secondary);
}

/* -------------------------------------------------------------------------
   Evidence List — Row Layout
   Stacked <li> rows replacing the old card grid.
   ------------------------------------------------------------------------- */

.evidence-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.evidence-row {
    border-bottom: 1px solid var(--border);
}

.evidence-row:first-child {
    border-top: 1px solid var(--border);
}

.evidence-row__link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    text-decoration: none;
    color: inherit;
    transition: background-color var(--duration-fast) var(--ease-out);
}

.evidence-row__link:hover {
    background: var(--bg-surface-alt);
}

.evidence-row__thumbnail {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.evidence-row__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evidence-row__thumb-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-surface-alt);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
}

.evidence-row__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    min-width: 0;
}

.evidence-row__title {
    font-size: var(--text-body);
    font-weight: 500;
    color: var(--text-primary);
    line-height: var(--leading-small);
}

.evidence-row__verse {
    font-family: var(--font-mono);
    font-size: var(--text-small);
    color: var(--text-muted);
}

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .evidence-row__link {
        padding: var(--space-sm) var(--space-md);
    }

    .evidence-row__thumbnail {
        width: 56px;
        height: 56px;
    }

    .evidence-row__title {
        font-size: var(--text-small);
    }
}
