/* News Article Styles - Centralized */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Prose styling for article content */
.prose {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1.125rem;
}

.prose h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.prose h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.prose p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

.prose blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  margin: 3rem 0;
  font-style: italic;
  background: #f9fafb;
  border-radius: 0.75rem;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: relative;
}

/* Custom large quote mark - override prose plugin */
.prose blockquote::before {
  content: "" !important;
  font-size: 4rem;
  color: #9ca3af;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
  opacity: 0.8;
  font-family: Georgia, serif;
}

/* Remove any other automatic quotes */
.prose blockquote::after {
  content: none !important;
}

/* Ensure no quotes are added by prose plugin to paragraph */
.prose blockquote p::before,
.prose blockquote p::after {
  content: none !important;
}

.prose blockquote p {
  margin-bottom: 0;
  font-size: 1.5rem;
  color: #1f2937;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.prose strong {
  color: var(--color-text-dark);
  font-weight: 700;
}

.prose ul,
.prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.prose li::marker {
  color: var(--color-primary);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}
