/* Article container */
.article-content,
.articles-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Article titles */
.article-content h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.article-content h2 {
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 600;
}

/* Paragraphs */
.article-content p {
  line-height: 1.65;
  margin: 15px 0;
  color: var(--text);
}

/* Lists */
.article-content ul,
.article-content ol {
  list-style: initial;
  margin-left: 1.5rem;
  padding-left: 1rem;
}

.article-content li {
  display: list-item !important;
  list-style: inherit !important;
  margin: 6px 0;
}

/* Article cards */
.article-card,
.article-card-wrapper {
  background: var(--bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.article-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}