/* VierenSamen.nl Custom Styles */
/* Feestelijke en toegankelijke CSS aanvullingen op Tailwind */

/* Screen reader only utility - WCAG compliance */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

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

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

/* Feestelijke animaties */
@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.sparkle {
  animation: sparkle 2s infinite;
}

@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.gentle-bounce {
  animation: gentle-bounce 3s infinite;
}

/* Hover effecten voor betere UX */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Focus styles voor toegankelijkheid - WCAG 2.1 */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid #eb6f47;
  outline-offset: 2px;
  border-radius: 4px;
}

/* High contrast mode ondersteuning */
@media (prefers-contrast: high) {
  .bg-christmas-50 { background-color: white; }
  .bg-forest-50 { background-color: white; }
  .text-gray-600 { color: black; }
  .border-gray-200 { border-color: black; }
}

/* Reduced motion voor gebruikers met vestibular disorders */
@media (prefers-reduced-motion: reduce) {
  .sparkle,
  .gentle-bounce,
  .card-hover {
    animation: none;
    transition: none;
  }
}

/* Kerst specifieke elementen */
.christmas-gradient {
  background: linear-gradient(135deg, #dc5a37 0%, #339968 100%);
}

.christmas-text-shadow {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Sneeuwval effect (optioneel, alleen als gebruiker animaties accepteert) */
@media (prefers-reduced-motion: no-preference) {
  .snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    user-select: none;
    cursor: default;
    animation-name: snowflakes-fall;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  @keyframes snowflakes-fall {
    to {
      transform: translateY(100vh);
    }
  }
}

/* Form styling improvements */
input[type="email"],
input[type="text"],
input[type="tel"],
select,
textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: #eb6f47;
  box-shadow: 0 0 0 3px rgba(235, 111, 71, 0.1);
}

/* Error states */
.error-border {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.error-text {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Success states */
.success-border {
  border-color: #059669 !important;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1) !important;
}

/* Loading states */
.loading-overlay {
  position: relative;
}

.loading-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Modal animations */
.modal-enter {
  opacity: 0;
  transform: scale(0.95);
}

.modal-enter-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.modal-exit {
  opacity: 1;
  transform: scale(1);
}

.modal-exit-active {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    color: black;
    background: white;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
}

/* Dark mode ondersteuning (voor toekomst) */
@media (prefers-color-scheme: dark) {
  /* Dark mode styles kunnen hier worden toegevoegd */
}

/* Responsive font sizes voor betere leesbaarheid */
@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .text-4xl { font-size: 2rem; }
  .text-6xl { font-size: 2.5rem; }
}

/* Verbeterde focus indicators voor toetsenbord navigatie */
.nav-link:focus-visible {
  background-color: rgba(235, 111, 71, 0.1);
  border-radius: 4px;
}

/* Statusberichten styling */
.status-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
  border-left: 4px solid;
}

.status-message.success {
  background-color: #f0f9f4;
  color: #166534;
  border-left-color: #22c55e;
}

.status-message.error {
  background-color: #fef2f2;
  color: #991b1b;
  border-left-color: #ef4444;
}

.status-message.warning {
  background-color: #fffbeb;
  color: #92400e;
  border-left-color: #f59e0b;
}

.status-message.info {
  background-color: #eff6ff;
  color: #1e40af;
  border-left-color: #3b82f6;
}

/* Verbeterde button states */
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

button:disabled:hover {
  transform: none;
}

/* Kerst-iconen styling */
.christmas-icon {
  color: #dc5a37;
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}

.forest-icon {
  color: #339968;
  filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}

/* Blog Typography Styling - Enhanced Reading Experience */
.article-content {
  line-height: 1.8 !important;
  color: #374151 !important;
  font-size: 1.125rem !important;
}

/* More aggressive selectors to ensure CSS applies */
.article-content *, 
.bg-white .article-content *,
div[class*="article-content"] * {
  box-sizing: border-box;
}

/* Blog Headings with stronger selectors */
.article-content h1,
div[class*="article-content"] h1 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin-top: 3rem !important;
  margin-bottom: 2rem !important;
  line-height: 1.2 !important;
  border-bottom: 3px solid #eb6f47 !important;
  padding-bottom: 1rem !important;
  display: block !important;
  clear: both !important;
}

.article-content h1:first-child,
div[class*="article-content"] h1:first-child {
  margin-top: 0 !important;
}

.article-content h2,
div[class*="article-content"] h2 {
  font-size: 1.875rem !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin-top: 3rem !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.3 !important;
  position: relative !important;
  padding-left: 1.5rem !important;
  display: block !important;
  clear: both !important;
}

.article-content h2:before,
div[class*="article-content"] h2:before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.3rem !important;
  width: 4px !important;
  height: 1.5rem !important;
  background: linear-gradient(135deg, #eb6f47, #339968) !important;
  border-radius: 2px !important;
}

.article-content h3,
div[class*="article-content"] h3 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #dc5a37 !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
  display: block !important;
  clear: both !important;
}

/* Blog Paragraphs with stronger selectors */
.article-content p,
div[class*="article-content"] p {
  margin-bottom: 1.5rem !important;
  text-align: left !important;
  hyphens: auto !important;
  line-height: 1.8 !important;
  color: #374151 !important;
  display: block !important;
  clear: both !important;
}

.article-content p:first-of-type,
div[class*="article-content"] p:first-of-type {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  color: #1f2937 !important;
  margin-bottom: 2rem !important;
}

/* Blog Lists with stronger selectors and better spacing */
.article-content ul, 
.article-content ol,
div[class*="article-content"] ul,
div[class*="article-content"] ol {
  margin: 2rem 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
  display: block !important;
  clear: both !important;
}

.article-content li,
div[class*="article-content"] li {
  margin-bottom: 0.75rem !important;
  line-height: 1.7 !important;
  position: relative !important;
  padding-left: 2rem !important;
  display: list-item !important;
  color: #374151 !important;
}

.article-content ul li:before,
div[class*="article-content"] ul li:before {
  content: '• ' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-size: 1.2rem !important;
  color: #eb6f47 !important;
  font-weight: bold !important;
}

.article-content ol,
div[class*="article-content"] ol {
  counter-reset: list-counter !important;
}

.article-content ol li,
div[class*="article-content"] ol li {
  counter-increment: list-counter !important;
}

.article-content ol li:before,
div[class*="article-content"] ol li:before {
  content: counter(list-counter) '. ' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-weight: 600 !important;
  color: #eb6f47 !important;
  width: auto !important;
}

/* Blog Links with stronger selectors */
.article-content a,
div[class*="article-content"] a {
  color: #eb6f47 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(235, 111, 71, 0.3) !important;
  text-underline-offset: 3px !important;
  transition: all 0.2s ease !important;
}

.article-content a:hover,
div[class*="article-content"] a:hover {
  color: #dc5a37 !important;
  text-decoration-color: #dc5a37 !important;
  text-decoration-thickness: 2px !important;
}

/* Blog Blockquotes with stronger selectors */
.article-content blockquote,
div[class*="article-content"] blockquote {
  border-left: 4px solid #eb6f47 !important;
  background: #fef7f0 !important;
  padding: 1.5rem 2rem !important;
  margin: 2rem 0 !important;
  font-style: italic !important;
  font-size: 1.25rem !important;
  border-radius: 0 0.5rem 0.5rem 0 !important;
  display: block !important;
  clear: both !important;
}

.article-content blockquote p,
div[class*="article-content"] blockquote p {
  margin-bottom: 0 !important;
}

/* Blog Strong and Emphasis with stronger selectors */
.article-content strong,
div[class*="article-content"] strong {
  font-weight: 700 !important;
  color: #1f2937 !important;
}

.article-content em,
div[class*="article-content"] em {
  font-style: italic !important;
  color: #4b5563 !important;
}

/* Additional spacing helpers */
.article-content > *,
div[class*="article-content"] > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Ensure proper spacing between all elements */
.article-content > * + *,
div[class*="article-content"] > * + * {
  margin-top: 1rem !important;
}

.article-content > h2 + *,
.article-content > h3 + *,
div[class*="article-content"] > h2 + *,
div[class*="article-content"] > h3 + * {
  margin-top: 0.5rem !important;
}

/* Blog Images (for future use) */
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin: 2rem 0;
}

.article-content figure {
  margin: 2rem 0;
  text-align: center;
}

.article-content figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
}

/* Blog Code (for future use) */
.article-content code {
  background: #f3f4f6;
  color: #db2777;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

.article-content pre {
  background: #1f2937;
  color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.article-content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

/* Responsive Blog Typography */
@media (max-width: 768px) {
  .article-content,
  div[class*="article-content"] {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
  
  .article-content h1,
  div[class*="article-content"] h1 {
    font-size: 2rem !important;
    margin-top: 2rem !important;
  }
  
  .article-content h2,
  div[class*="article-content"] h2 {
    font-size: 1.5rem !important;
    margin-top: 2rem !important;
  }
  
  .article-content h3,
  div[class*="article-content"] h3 {
    font-size: 1.25rem !important;
    margin-top: 1.5rem !important;
  }
  
  .article-content p:first-of-type,
  div[class*="article-content"] p:first-of-type {
    font-size: 1.125rem !important;
  }
  
  .article-content blockquote,
  div[class*="article-content"] blockquote {
    padding: 1rem 1.5rem !important;
    font-size: 1.125rem !important;
  }
}

/* Force override any Tailwind classes */
.article-content h1,
.article-content h2, 
.article-content h3,
.article-content p,
.article-content ul,
.article-content ol,
.article-content li,
div[class*="article-content"] h1,
div[class*="article-content"] h2, 
div[class*="article-content"] h3,
div[class*="article-content"] p,
div[class*="article-content"] ul,
div[class*="article-content"] ol,
div[class*="article-content"] li {
  all: unset;
  display: block !important;
}

/* Reapply our specific styles */
.article-content h2,
div[class*="article-content"] h2 {
  font-size: 1.875rem !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin-top: 3rem !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.3 !important;
  position: relative !important;
  padding-left: 1.5rem !important;
  display: block !important;
  clear: both !important;
  font-family: system-ui, -apple-system, sans-serif !important;
}

.article-content h3,
div[class*="article-content"] h3 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #dc5a37 !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
  display: block !important;
  clear: both !important;
  font-family: system-ui, -apple-system, sans-serif !important;
}

.article-content p,
div[class*="article-content"] p {
  font-size: 1.125rem !important;
  line-height: 1.8 !important;
  color: #374151 !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
  font-family: system-ui, -apple-system, sans-serif !important;
}

.article-content ul li,
.article-content ol li,
div[class*="article-content"] ul li,
div[class*="article-content"] ol li {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: #374151 !important;
  margin-bottom: 0.75rem !important;
  position: relative !important;
  padding-left: 2rem !important;
  display: list-item !important;
  font-family: system-ui, -apple-system, sans-serif !important;
}

/* Reading Progress Indicator */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #eb6f47, #339968);
  z-index: 100;
  transition: width 0.2s ease;
}

/* Blog Content Sections Styling */
.article-content section {
  margin: 3rem 0;
}

/* Enhanced Focus States for Blog Content */
.article-content a:focus-visible {
  outline: 3px solid #eb6f47;
  outline-offset: 2px;
  border-radius: 3px;
}

/* Print Styles for Blog Content */
@media print {
  .article-content {
    font-size: 12pt;
    line-height: 1.6;
    color: black;
  }
  
  .article-content h1,
  .article-content h2,
  .article-content h3 {
    page-break-after: avoid;
    color: black;
  }
  
  .article-content blockquote {
    border-left-color: black;
    background: white;
  }
}

/* CRITICAL: Super aggressive CSS to ensure our styling takes precedence */
body .bg-white .article-content h2,
body div[class*="bg-white"] div[class*="article-content"] h2 {
  font-size: 1.875rem !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin-top: 3rem !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.3 !important;
  position: relative !important;
  padding-left: 1.5rem !important;
  display: block !important;
  clear: both !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

body .bg-white .article-content h2:before,
body div[class*="bg-white"] div[class*="article-content"] h2:before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.3rem !important;
  width: 4px !important;
  height: 1.5rem !important;
  background: linear-gradient(135deg, #eb6f47, #339968) !important;
  border-radius: 2px !important;
}

body .bg-white .article-content h3,
body div[class*="bg-white"] div[class*="article-content"] h3 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #dc5a37 !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
  display: block !important;
  clear: both !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

body .bg-white .article-content p,
body div[class*="bg-white"] div[class*="article-content"] p {
  font-size: 1.125rem !important;
  line-height: 1.8 !important;
  color: #374151 !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

body .bg-white .article-content ul,
body .bg-white .article-content ol,
body div[class*="bg-white"] div[class*="article-content"] ul,
body div[class*="bg-white"] div[class*="article-content"] ol {
  margin: 2rem 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
  display: block !important;
  clear: both !important;
}

body .bg-white .article-content ul li,
body .bg-white .article-content ol li,
body div[class*="bg-white"] div[class*="article-content"] ul li,
body div[class*="bg-white"] div[class*="article-content"] ol li {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: #374151 !important;
  margin-bottom: 0.75rem !important;
  position: relative !important;
  padding-left: 2rem !important;
  display: list-item !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

body .bg-white .article-content ul li:before,
body div[class*="bg-white"] div[class*="article-content"] ul li:before {
  content: '• ' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-size: 1.2rem !important;
  color: #eb6f47 !important;
  font-weight: bold !important;
}

/* UNIVERSAL CONTENT STYLING - Apply to ALL prose classes and content areas */
/* This ensures ALL pages get proper typography, not just blog posts */

/* Apply all article-content styles to prose class as well */
.prose,
.prose *,
div[class*="prose"],
div[class*="prose"] * {
  box-sizing: border-box;
}

/* Universal Headings - Apply to both .prose and .article-content */
.prose h1,
div[class*="prose"] h1 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  margin-top: 3rem !important;
  margin-bottom: 2rem !important;
  line-height: 1.2 !important;
  border-bottom: 3px solid #eb6f47 !important;
  padding-bottom: 1rem !important;
  display: block !important;
  clear: both !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

.prose h1:first-child,
div[class*="prose"] h1:first-child {
  margin-top: 0 !important;
}

.prose h2,
div[class*="prose"] h2 {
  font-size: 1.875rem !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin-top: 3rem !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.3 !important;
  position: relative !important;
  padding-left: 1.5rem !important;
  display: block !important;
  clear: both !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

.prose h2:before,
div[class*="prose"] h2:before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.3rem !important;
  width: 4px !important;
  height: 1.5rem !important;
  background: linear-gradient(135deg, #eb6f47, #339968) !important;
  border-radius: 2px !important;
}

.prose h3,
div[class*="prose"] h3 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #dc5a37 !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
  display: block !important;
  clear: both !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

/* Universal Paragraphs */
.prose p,
div[class*="prose"] p {
  font-size: 1.125rem !important;
  line-height: 1.8 !important;
  color: #374151 !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
  text-align: left !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

.prose p:first-of-type,
div[class*="prose"] p:first-of-type {
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  color: #1f2937 !important;
  margin-bottom: 2rem !important;
}

/* Universal Lists */
.prose ul, 
.prose ol,
div[class*="prose"] ul,
div[class*="prose"] ol {
  margin: 2rem 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
  display: block !important;
  clear: both !important;
}

.prose li,
div[class*="prose"] li {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: #374151 !important;
  margin-bottom: 0.75rem !important;
  position: relative !important;
  padding-left: 2rem !important;
  display: list-item !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

.prose ul li:before,
div[class*="prose"] ul li:before {
  content: '• ' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-size: 1.2rem !important;
  color: #eb6f47 !important;
  font-weight: bold !important;
}

.prose ol,
div[class*="prose"] ol {
  counter-reset: list-counter !important;
}

.prose ol li,
div[class*="prose"] ol li {
  counter-increment: list-counter !important;
}

.prose ol li:before,
div[class*="prose"] ol li:before {
  content: counter(list-counter) '. ' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-weight: 600 !important;
  color: #eb6f47 !important;
  width: auto !important;
}

/* Universal Links */
.prose a,
div[class*="prose"] a {
  color: #eb6f47 !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(235, 111, 71, 0.3) !important;
  text-underline-offset: 3px !important;
  transition: all 0.2s ease !important;
}

.prose a:hover,
div[class*="prose"] a:hover {
  color: #dc5a37 !important;
  text-decoration-color: #dc5a37 !important;
  text-decoration-thickness: 2px !important;
}

/* Universal Blockquotes */
.prose blockquote,
div[class*="prose"] blockquote {
  border-left: 4px solid #eb6f47 !important;
  background: #fef7f0 !important;
  padding: 1.5rem 2rem !important;
  margin: 2rem 0 !important;
  font-style: italic !important;
  font-size: 1.25rem !important;
  border-radius: 0 0.5rem 0.5rem 0 !important;
  display: block !important;
  clear: both !important;
}

.prose blockquote p,
div[class*="prose"] blockquote p {
  margin-bottom: 0 !important;
}

/* Universal Strong and Emphasis */
.prose strong,
div[class*="prose"] strong {
  font-weight: 700 !important;
  color: #1f2937 !important;
}

.prose em,
div[class*="prose"] em {
  font-style: italic !important;
  color: #4b5563 !important;
}

/* Universal spacing helpers */
.prose > *,
div[class*="prose"] > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.prose > * + *,
div[class*="prose"] > * + * {
  margin-top: 1rem !important;
}

.prose > h2 + *,
.prose > h3 + *,
div[class*="prose"] > h2 + *,
div[class*="prose"] > h3 + * {
  margin-top: 0.5rem !important;
}

/* SUPER AGGRESSIVE OVERRIDES - Apply to ALL content containers */
body .bg-white .prose h2,
body div[class*="bg-white"] div[class*="prose"] h2,
body .rounded-lg .prose h2,
body div[class*="rounded-lg"] div[class*="prose"] h2 {
  font-size: 1.875rem !important;
  font-weight: 600 !important;
  color: #1f2937 !important;
  margin-top: 3rem !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.3 !important;
  position: relative !important;
  padding-left: 1.5rem !important;
  display: block !important;
  clear: both !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

body .bg-white .prose h2:before,
body div[class*="bg-white"] div[class*="prose"] h2:before,
body .rounded-lg .prose h2:before,
body div[class*="rounded-lg"] div[class*="prose"] h2:before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.3rem !important;
  width: 4px !important;
  height: 1.5rem !important;
  background: linear-gradient(135deg, #eb6f47, #339968) !important;
  border-radius: 2px !important;
}

body .bg-white .prose h3,
body div[class*="bg-white"] div[class*="prose"] h3,
body .rounded-lg .prose h3,
body div[class*="rounded-lg"] div[class*="prose"] h3 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: #dc5a37 !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
  display: block !important;
  clear: both !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

body .bg-white .prose p,
body div[class*="bg-white"] div[class*="prose"] p,
body .rounded-lg .prose p,
body div[class*="rounded-lg"] div[class*="prose"] p {
  font-size: 1.125rem !important;
  line-height: 1.8 !important;
  color: #374151 !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
  text-align: left !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

body .bg-white .prose ul,
body .bg-white .prose ol,
body div[class*="bg-white"] div[class*="prose"] ul,
body div[class*="bg-white"] div[class*="prose"] ol,
body .rounded-lg .prose ul,
body .rounded-lg .prose ol,
body div[class*="rounded-lg"] div[class*="prose"] ul,
body div[class*="rounded-lg"] div[class*="prose"] ol {
  margin: 2rem 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
  display: block !important;
  clear: both !important;
}

body .bg-white .prose ul li,
body .bg-white .prose ol li,
body div[class*="bg-white"] div[class*="prose"] ul li,
body div[class*="bg-white"] div[class*="prose"] ol li,
body .rounded-lg .prose ul li,
body .rounded-lg .prose ol li,
body div[class*="rounded-lg"] div[class*="prose"] ul li,
body div[class*="rounded-lg"] div[class*="prose"] ol li {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: #374151 !important;
  margin-bottom: 0.75rem !important;
  position: relative !important;
  padding-left: 2rem !important;
  display: list-item !important;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
}

body .bg-white .prose ul li:before,
body div[class*="bg-white"] div[class*="prose"] ul li:before,
body .rounded-lg .prose ul li:before,
body div[class*="rounded-lg"] div[class*="prose"] ul li:before {
  content: '• ' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-size: 1.2rem !important;
  color: #eb6f47 !important;
  font-weight: bold !important;
}