/* Article content styles */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  color: white;
}

.article-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: white;
}

.article-content img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}
.article-content img {
  display: block; /* Biến ảnh thành block element để có thể dùng margin auto */
  margin: 20px auto; /* Căn giữa ảnh theo chiều ngang và thêm lề trên dưới */
  max-width: 100%; /* Đảm bảo ảnh không rộng quá container của nó (responsive) */
  height: auto; /* Giữ tỷ lệ khung hình khi ảnh thay đổi kích thước (responsive) */
}
@media (min-width: 1024px) {
  .article-content {
    max-width: 800px;
    padding: 0 40px;
  }
}
