/* Headings Styling (H1 through H6) */
  .parsed-article-content h1,
  .parsed-article-content h2,
  .parsed-article-content h3,
  .parsed-article-content h4,
  .parsed-article-content h5,
  .parsed-article-content h6 {
    color: #18181b !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.3 !important;
    display: block !important;
  }

  .parsed-article-content h1 {
    font-size: 1.75rem !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    border-bottom: 2px solid #e4e4e7 !important;
    padding-bottom: 0.5rem !important;
  }

  .parsed-article-content h2 {
    font-size: 1.5rem !important;
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
    border-bottom: 1px solid #e4e4e7 !important;
    padding-bottom: 0.5rem !important;
  }

  .parsed-article-content h3 {
    font-size: 1.25rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.75rem !important;
  }

  .parsed-article-content h4,
  .parsed-article-content h5,
  .parsed-article-content h6 {
    font-size: 1.125rem !important;
    margin-top: 1.25rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Paragraphs and Text Spacing */
  .parsed-article-content p {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.7 !important;
  }

  /* Standard Bold Text styling */
  .parsed-article-content strong,
  .parsed-article-content b {
    color: #18181b !important;
    font-weight: 700 !important;
    font-size: inherit !important;
  }

  /* Lists */
  .parsed-article-content ul {
    list-style-type: disc !important;
    padding-left: 1.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .parsed-article-content ol {
    list-style-type: decimal !important;
    padding-left: 1.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .parsed-article-content li {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Blockquotes */
  .parsed-article-content blockquote {
    border-left: 4px solid #2563eb !important;
    background-color: #f0f9ff !important;
    padding: 1.25rem 1.5rem !important;
    border-radius: 12px !important;
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
    font-style: normal !important;
    font-size: 0.95rem !important;
    line-height: 1.625 !important;
    color: #1e3a8a !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  /* Table Styling */
  .parsed-article-content table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
    border: 1px solid #e4e4e7 !important;
    border-radius: 12px !important;
  }

  .parsed-article-content th {
    background-color: #f4f4f5 !important;
    color: #18181b !important;
    font-weight: 700 !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid #e4e4e7 !important;
    text-align: left !important;
  }

  .parsed-article-content td {
    padding: 0.75rem 1rem !important;
    border: 1px solid #e4e4e7 !important;
    color: #3f3f46 !important;
  }

  .parsed-article-content tr:nth-child(even) {
    background-color: #fafafa !important;
  }

  /* Interactive Question Accordions (<details> & <summary>) */
  .parsed-article-content details {
    background-color: #ffffff !important;
    border: 1px solid #e4e4e7 !important;
    border-radius: 1rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    overflow: hidden !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.04) !important;
  }

  .parsed-article-content details[open] {
    border-color: #2563eb !important;
    box-shadow: 0 4px 12px -2px rgba(37, 99, 235, 0.1) !important;
  }

  .parsed-article-content summary {
    padding: 1rem 1.25rem !important;
    font-weight: 700 !important;
    font-size: 0.975rem !important;
    color: #18181b !important;
    background-color: #fafafa !important;
    cursor: pointer !important;
    outline: none !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    list-style: none !important;
    transition: background-color 0.15s ease !important;
  }

  .parsed-article-content summary::-webkit-details-marker {
    display: none !important;
  }

  .parsed-article-content summary::after {
    content: '▶' !important;
    font-size: 0.7rem !important;
    color: #2563eb !important;
    transition: transform 0.2s ease !important;
    margin-left: 0.75rem !important;
    flex-shrink: 0 !important;
  }

  .parsed-article-content details[open] summary::after {
    transform: rotate(90deg) !important;
  }

  .parsed-article-content details[open] summary {
    background-color: #eff6ff !important;
    color: #1e40af !important;
    border-bottom: 1px solid #dbeafe !important;
  }

  .parsed-article-content details > *:not(summary) {
    padding: 0.75rem 1.25rem !important;
  }

  .parsed-article-content details p {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.65 !important;
  }

  .parsed-article-content details ul,
  .parsed-article-content details ol {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    padding-left: 1.25rem !important;
  }