/* Headings */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin: 20px 0;
}



.article-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.article-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
}
/* Paragraph */
.article-content p {
  margin: 15px 0;
}

/* Links */
.article-content a {
  color: #007bff;
  text-decoration: none;
}

.article-content a:hover {
  text-decoration: underline;
}

/* Images */
.article-content img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

/* Code */
.article-content code,
.article-content pre {
  font-family: "Courier New", Courier, monospace;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  display: block;
  margin: 20px 0;
  overflow-x: auto;
}

/* Blockquote */
.article-content blockquote {
  font-style: italic;
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 20px 0;
  padding: 10px 20px;
}

/* Lists */
.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding: 0 0 0 40px;
}

.article-content li {
  margin: 10px 0;
}

/* Table */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.article-content table,
.article-content th,
.article-content td {
  border: 1px solid #ddd;
}

.article-content th,
.article-content td {
  padding: 10px;
  text-align: left;
}

.article-content th {
  background: #f4f4f4;
}
