/* ============================================================
   The Tech Pad — chat-first workspace hero styles
   Light theme only (cards #fff, borders #dfe6e2, text #14231e,
   accent #128c7e). Mounts on the overview dashboard.
   ============================================================ */

.chat-first-hero {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(135deg, #0d2b22 0%, #14503f 100%);
  color: #dff5eb;
  border-radius: 14px;
  padding: 22px 24px;
  margin: 0 0 16px;
  box-shadow: 0 6px 22px rgba(13, 43, 34, .18);
}
.chat-first-hero .cfh-icon {
  font-size: 30px;
  line-height: 1;
  background: rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 10px 12px;
  flex: 0 0 auto;
}
.chat-first-hero .cfh-body { flex: 1; min-width: 0; }
.chat-first-hero .step-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #7fe0cd;
  margin-bottom: 6px;
}
.chat-first-hero h2 { margin: 0 0 6px; font-size: 20px; color: #fff; }
.chat-first-hero p { margin: 0 0 12px; font-size: 14px; color: #cfe7df; line-height: 1.5; }
.chat-first-hero .cfh-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.chat-first-hero .cfh-btn {
  display: inline-block;
  border-radius: 9px;
  padding: 8px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
}
.chat-first-hero .cfh-btn.primary { background: #128c7e; color: #fff; }
.chat-first-hero .cfh-btn.primary:hover { background: #17a08f; }
.chat-first-hero .cfh-btn.ghost {
  background: transparent;
  color: #dff5eb;
  border-color: rgba(223, 245, 235, .45);
}
.chat-first-hero .cfh-btn.ghost:hover { background: rgba(255, 255, 255, .1); border-color: #dff5eb; }
.chat-first-hero .cfh-note { margin: 10px 0 0; font-size: 12.5px; color: #9fc4b8; }

@media (max-width: 760px) {
  .chat-first-hero { flex-direction: column; padding: 18px; }
}
