/* public/assets/css/blog.css */

/* Styling untuk konten artikel dari Rich Text Editor */
#article-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #262729;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

#article-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #262729;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

#article-content p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

#article-content ul,
#article-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
  list-style-position: outside;
}

#article-content ul {
  list-style-type: disc;
}

#article-content ol {
  list-style-type: decimal;
}

#article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

#article-content a {
  color: #cc0000;
  text-decoration: underline;
  font-weight: 500;
}

#article-content a:hover {
  color: #a30000;
}

#article-content blockquote {
  border-left: 4px solid #cc0000;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #4b5563;
  background-color: #f9fafb;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1.5rem;
}

#article-content img {
  width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

/* Pagination & Scrollbar hide */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
