/* ===== Bố cục 2 cột: trái = lọc, phải = danh sách ===== */
.rd-docs { align-items: flex-start; }

.rd-docs-left .rd-docs-filters {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px;
  position: sticky; top: 20px;
}
.rd-docs-left .rd-docs-filters .row { display: block; }
.rd-docs-left .rd-docs-filters .col { width: 100% !important; margin-bottom: 10px; }

/* Mobile: bỏ sticky cho đỡ cấn */
@media (max-width: 849px){
  .rd-docs-left .rd-docs-filters { position: static; top: auto; margin-bottom: 16px; }
}

/* ===== Danh sách tài liệu: mỗi item là 1 hàng, ICON TRÁI – NỘI DUNG PHẢI ===== */
.rd-docs-list .rd-docs-item.doc-row {
  display: grid;
  grid-template-columns: 48px 1fr;   /* icon | nội dung */
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.doc-body { min-width: 0; }
.doc-title { margin: 0 0 4px; font-size: 1.05rem; line-height: 1.35; }
.doc-desc  { font-size: 12px; opacity: .85; }

/* Icon */
.doc-icon, .doc-icon a {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
}
.doc-svg { width: 28px; height: 28px; fill: #e74c3c; }  /* màu đỏ PDF */

/* Đếm số tài liệu (nếu có) */
.rd-docs-count { margin-bottom: 8px; opacity: .75; }

/* Ẩn ngày + nút (phòng khi theme còn render) */
.rd-docs-meta, .rd-docs-actions { display: none !important; }
