/* ═══════════════════════════════════════════════════════════════════
   EvalCar · страница «Документы оценщика» (LAND-4): /documents
   Подключается ПОСЛЕ fonts.css, landing.css и legal.css: палитра
   --ec-*, шапка .doc-*, футер и колонка .doc-container — оттуда.
   Здесь — только карточки документов. Префикс .docs-*.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Список карточек ──────────────────────────────────────────────── */

.docs-list {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
}

.docs-card {
  background: var(--ec-surface);
  border: 1px solid var(--ec-border);
  border-radius: 12px;
  padding: 20px;
}

/* ── Миниатюра: первая страница документа ─────────────────────────── */

.docs-thumb {
  display: block;
  margin: 0 0 16px;
}

.docs-thumb img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  border: 1px solid var(--ec-border);
  border-radius: 6px;
  background: #fff;
}

/* ── Текст карточки ───────────────────────────────────────────────── */

.docs-card h2 {
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.docs-facts {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ec-text-2);
  margin: 0 0 16px;
}

/* ── Кнопка-ссылка «Открыть PDF» ──────────────────────────────────── */

.docs-open {
  display: inline-block;
  padding: 10px 22px;
  background: var(--ec-green-900);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.docs-open:hover { background: var(--ec-green-600); color: #fff; }

/* ── Десктоп: миниатюра слева, текст справа ───────────────────────── */

@media (min-width: 720px) {
  .docs-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
  }

  .docs-thumb {
    flex: 0 0 180px;
    margin: 0;
  }

  .docs-thumb img { max-width: 180px; }

  .docs-card-text { flex: 1; min-width: 0; }
}
