/* ============================================
   Article Content Formatting
   ============================================ */

.article-content {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #1a1a2e;
  font-family: 'Inter', sans-serif;
  text-align: justify;
  font-weight: 400;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
}

/* Headings */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-top: 1.1rem;
  margin-bottom: 0.5rem;
}

.article-content h1 { font-size: 2rem; }
.article-content h2 { font-size: 1.6rem; border-bottom: 2px solid #e5e7eb; padding-bottom: 0.4rem; }
.article-content h3 { font-size: 1.3rem; }
.article-content h4 { font-size: 1.1rem; }
.article-content h5,
.article-content h6 { font-size: 1rem; color: #4b5563; }

/* Paragraphs */
.article-content p {
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #1a1a2e;
  text-align: justify;
}

/* Links */
.article-content a {
  color: #0284c7;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.article-content a:hover {
  color: #0369a1;
}

/* Lists */
.article-content ul,
.article-content ol {
  margin: 1rem 0 1.25rem 1.5rem;
  padding-left: 0.5rem;
}

.article-content ul {
  list-style-type: disc;
}

.article-content ol {
  list-style-type: decimal;
}

.article-content ul ul {
  list-style-type: circle;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.article-content ol ol {
  list-style-type: lower-alpha;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.article-content li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
  color: #374151;
}

/* Blockquote */
.article-content blockquote {
  border-left: 4px solid #0ea5e9;
  background: #f0f9ff;
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #1e40af;
  font-style: italic;
}

.article-content blockquote p {
  margin-bottom: 0;
  color: #1e40af;
}

/* Images */
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
}

/* Code */
.article-content code {
  background: #f1f5f9;
  color: #0f172a;
  font-size: 0.875rem;
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-family: 'Courier New', monospace;
}

.article-content pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: 0.75rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: 0.875rem;
  line-height: 1.7;
}

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

/* Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.article-content th {
  background: #f1f5f9;
  font-weight: 600;
  text-align: left;
  padding: 0.6rem 0.9rem;
  border: 1px solid #e2e8f0;
  color: #1e293b;
}

.article-content td {
  padding: 0.6rem 0.9rem;
  border: 1px solid #e2e8f0;
  color: #374151;
}

.article-content tr:nth-child(even) td {
  background: #f8fafc;
}

/* Horizontal rule */
.article-content hr {
  border: none;
  border-top: 2px solid #e5e7eb;
  margin: 2rem 0;
}

/* Strong / Em */
.article-content strong {
  font-weight: 700;
  color: #111827;
}

.article-content em {
  font-style: italic;
  color: #4b5563;
}

.z-index-full-1{
z-index: 9999999;
}