/* ClaimBar.com — Custom styles (supplements Tailwind CDN) */

/* Smooth transitions on cards */
.settlement-card {
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.settlement-card:hover {
  transform: translateY(-1px);
}

/* Prose styling for article content */
.prose h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}
.prose h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #334155;
}
.prose p {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: #475569;
}
.prose ul, .prose ol {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}
.prose li {
  margin-bottom: 0.25rem;
  color: #475569;
}
.prose a {
  color: #2563eb;
  text-decoration: underline;
}
.prose a:hover {
  color: #1d4ed8;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.prose th, .prose td {
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 0.875rem;
}
.prose th {
  background: #f8fafc;
  font-weight: 600;
}

/* Line clamp utility */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Category pill active state */
.active-cat {
  border-color: transparent !important;
}

/* Focus ring consistency */
input:focus, select:focus, textarea:focus {
  outline: none;
}
