/* Модуль «Документы (PDF)» */
.documents-module { margin: 1.5rem 0; }
.documents-title { margin-bottom: 1rem; font-size: 1.5rem; }

/* Список */
.documents-list { list-style: none; padding: 0; margin: 0; }

/* Список в несколько колонок (набор: документов в ряд 2–4) */
.documents-list-grid { display: grid; grid-template-columns: repeat(var(--doc-cols, 2), 1fr); gap: 12px; align-items: start; }
@media (max-width: 768px) {
    .documents-list-grid { grid-template-columns: 1fr; }
}
.documents-item { border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.documents-row { display: flex; align-items: center; gap: 12px; padding: 12px 16px; flex-wrap: wrap; }
.documents-icon { color: #c0392b; font-size: 1.6rem; line-height: 1; }
.documents-icon .bi-file-earmark-pdf::before { color: #c0392b; }
.documents-info { display: flex; flex-direction: column; flex: 1; min-width: 200px; }
.documents-name { font-weight: 600; }
.documents-desc { font-size: .875rem; color: #64748b; }
.documents-actions { display: flex; gap: 8px; }

/* Встроенный просмотр в списке */
.doc-viewer { border-top: 1px solid #e2e8f0; }
.doc-viewer[hidden] { display: none; }
.doc-viewer iframe, .doc-viewer object { display: block; width: 100%; height: 70vh; border: 0; background: #525659; }

/* Сетка карточек */
.documents-grid, .documents-cards { display: grid; grid-template-columns: repeat(var(--doc-cols, 2), 1fr); gap: 16px; }
@media (max-width: 768px) {
    .documents-grid, .documents-cards { grid-template-columns: 1fr; }
}
.documents-card { border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }

/* Карточки со встроенным просмотром: PDF отрисовывается PDF.js как картинка, без скроллов */
.documents-card-preview { background: #fff; font-size: 0; }
.documents-card-preview .doc-pages { display: block; }
.documents-card-preview .doc-page-canvas { display: block; width: 100%; height: auto; }
.documents-card-preview .doc-embed { display: block; width: 100%; height: 420px; border: 0; }
/* Заголовок над превью — как шапка карточки */
.documents-card > .documents-card-title { padding: 10px 16px 0; margin: 0; font-size: 1.05rem; }
.documents-card-body { padding: 10px 16px 14px; }
.documents-card-body .documents-card-title { font-size: 1.05rem; margin-bottom: 6px; }
.documents-card-desc { font-size: .875rem; color: #64748b; margin-bottom: 10px; }
.documents-card-actions { display: flex; gap: 8px; }

/* Модальное окно просмотра (fallback) */
.doc-viewer-modal .modal-body { padding: 0; height: 80vh; }
.doc-viewer-modal iframe, .doc-viewer-modal object { width: 100%; height: 100%; border: 0; background: #525659; }