/* ─── Framework catalog styles ─────────────────────────────────────────────── */

/* Category cards on index page */
.fw-card {
  transition: transform .15s ease, box-shadow .15s ease;
  border-left: 4px solid transparent !important;
}
.fw-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1) !important;
}

/* Framework cards on category page */
.fw-framework-card {
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.fw-framework-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 .4rem 1rem rgba(0,0,0,.08) !important;
}

/* Card description truncation */
.fw-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Modal section headings */
.fw-modal-section-title {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #6c757d;
  margin-bottom: .5rem;
}
.fw-modal-section ul {
  padding-left: 1.25rem;
  font-size: .9rem;
  color: #495057;
}
.fw-modal-section ul li {
  margin-bottom: .25rem;
}

/* Input checklist with checkboxes */
.fw-checklist {
  list-style: none;
  padding-left: 0 !important;
}
.fw-checklist li::before {
  content: "\2610";
  margin-right: .5rem;
  color: #adb5bd;
}

/* Prompt box in modal */
.fw-prompt-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: .5rem;
  padding: 1rem 1.25rem;
}
.fw-prompt-text {
  font-size: .9rem;
  line-height: 1.6;
  color: #495057;
  white-space: pre-wrap;
}
