.doc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 22px;
}

.doc-card {
    display: flex;
    gap: 18px;
    background: #fff;
    border: 1.5px solid #e5e9f2;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 14px rgba(20, 24, 40, .05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(20, 24, 40, .10);
    border-color: #d0d9f0;
}

.doc-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffe8d1 0%, #ffd0a3 100%);
    color: #c9560a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.doc-card-body {
    flex: 1;
    min-width: 0;
}

.doc-card-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #1a2035;
    margin: 8px 0 8px;
}

.doc-card-desc {
    font-size: .88rem;
    color: #5b6579;
    line-height: 1.55;
    margin-bottom: 14px;
}

.doc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.doc-tag {
    font-size: .72rem;
    font-weight: 600;
    color: #4a5568;
    background: #f0f3fa;
    border: 1px solid #e0e6f0;
    padding: 3px 10px;
    border-radius: 999px;
}

.doc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .8rem;
    color: #8a94a6;
    margin-bottom: 16px;
}

.doc-meta i {
    margin-right: 4px;
}

.doc-actions .tt-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 575px) {
    .doc-card { flex-direction: column; }
    .doc-card-icon { width: 48px; height: 48px; font-size: 1.25rem; }
}
