/* ==========================================
   DIVO CRM v2 — СТИЛИ ГЛАВНОЙ СТРАНИЦЫ
   ========================================== */

/* Сетка 2×2 */
.divo-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

/* Карточка блока */
.divo-dashboard-card {
  background: #18181b;
  border: 1.5px solid #27272a;
  border-radius: 16px;
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all .2s;
}
.divo-dashboard-card:hover {
  border-color: #3f3f46;
}

/* Шапка карточки */
.divo-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.divo-dashboard-title-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.divo-dashboard-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.divo-dashboard-title {
  font-size: 18px;
  font-weight: 700;
  color: #fafafa;
}
.divo-dashboard-desc {
  font-size: 12px;
  color: #71717a;
  margin-top: 2px;
}

/* Тело карточки */
.divo-dashboard-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #71717a;
  font-size: 14px;
  text-align: center;
}
.divo-dashboard-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.divo-dashboard-placeholder-icon {
  font-size: 36px;
  opacity: 0.4;
}

/* Адаптив */
@media (max-width: 700px) {
  .divo-dashboard {
    grid-template-columns: 1fr;
  }
  .divo-dashboard-card {
    min-height: 200px;
    padding: 20px;
  }
}
