#blog ul {
  width: fit-content;
  padding: 0px;
  margin: auto;
}

#blog .view-more-button-container {
  padding: 16px;
  display: flex;
  flex-direction: row-reverse;
}

.article-card {
  list-style: none;
  height: 220px;
  overflow: hidden;
}

.article-card img {
  width: 100px;
  height: 100px;
}
.article-card a {
  text-decoration: black;
  color: black;
  height: 100%;
  display: block;
}

.article-container {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 16px;
  /* justify-content: center; */
  align-items: center;
}

.article-container:hover {
  background-color: var(--black-fade);
}
.article-container:active {
  background-color: var(--black-fade-active);
}

.article-card .article-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.article-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin: 0px;
}

.article-card h6 {
  margin: 0px;
}
.article-card p {
  font-size: 14px;
  margin: 0px;
}
