/*
 * Trang tác giả /tran-van-thanh/ — phần bổ sung trên nền bang-gia.css:
 * trích dẫn phát biểu (.tvt-quote) + danh sách bài viết đứng tên (.tvt-posts).
 */

.tvt-quote {
    margin: 20px 0;
    padding: 14px 18px;
    border-left: 4px solid var(--accent);
    background: var(--band);
    border-radius: 0 12px 12px 0;
}

.tvt-quote p {
    margin: 0;
    font-weight: 600;
    font-style: italic;
    color: var(--ink);
}

.tvt-quote cite {
    display: block;
    margin-top: 6px;
    font-size: 13.5px;
    font-style: normal;
    color: var(--text-2);
}

.tvt-posts {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.tvt-posts li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--line-2);
    border-radius: 12px;
    background: var(--surface);
    transition: border-color 420ms var(--ease), background 420ms var(--ease);
}

.tvt-posts a {
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}

.tvt-posts a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

.tvt-posts time {
    font-size: 13.5px;
    color: var(--text-2);
    white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
    .tvt-posts li:hover {
        border-color: var(--primary);
        background: var(--band);
    }

    .tvt-posts a:hover {
        text-decoration: underline;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tvt-posts li {
        transition: none;
    }
}

@media (max-width: 640px) {
    .tvt-posts li {
        flex-direction: column;
        gap: 4px;
    }
}
