/* Style for the article buttons */
.article-buttons .article-btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 5px;
  background-color: #333; /* Dark gray for the button */
  color: #fff;
  text-decoration: none;
  border: 2px solid #333; /* Border matches button color */
  border-radius: 30px; /* Rounded border */
  font-size: 16px; /* Larger font size */
  font-weight: bold; /* Bold font weight */
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Smooth transition */
}

.article-buttons .article-btn:hover {
  background-color: #222; /* Darker shade of gray on hover */
  border-color: #222; /* Darker border on hover */
}





