.two-col {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (max-width: 820px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.preview-card {
    min-width: 0;
    overflow: hidden;
}

.file-preview-wrap {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
}

.fp-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.fp-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    color: var(--text);
    word-break: break-all;
    margin-bottom: .35rem;
    max-width: 100%;
}

.fp-meta {
    font-size: .8rem;
    color: var(--text3);
    margin-bottom: 1.1rem;
}

.fp-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-bg);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .22rem .65rem;
    border-radius: 20px;
    margin-bottom: 1.4rem;
}

.doc-lines {
    width: 150px;
    color: var(--accent);
    opacity: .22;
}

.fp-stats {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    margin-top: 1.4rem;
    flex-wrap: wrap;
}

.fp-stat {
    text-align: center;
}

.fp-stat-val {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--accent);
    line-height: 1;
}

.fp-stat-lbl {
    font-size: .7rem;
    color: var(--text3);
    margin-top: .25rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.file-pill {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .5rem .75rem;
    font-size: .8rem;
    color: var(--text2);
    margin-bottom: 1rem;
    word-break: break-all;
}
