table {
  margin-top: 20px;
}
.blog-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(112, 103, 255, 0.05);
}

.article-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.article-image img {
  width: 300px;
}

.article-thumbnail {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.article-thumbnail img {
  height: 160px;
  max-width: 100%;
}

.article-content {
  display: flex;
  flex-direction: column;
  color: rgb(0, 0, 0, 0.5);
  font-weight: 300;
  padding: 16px;
  margin: 16px;
  margin-bottom: 50px;
  max-width: 800px;
  width: 85%;
  background-color: white;
  line-height: 1.5;
}

.article-content p {
  font-weight: 300;
}

.article-full-h1 {
  font-size: 30px;
  font-weight: 300;
  text-align: center;
  max-width: 830px;
  align-self: center;
  text-align: center;
  font-size: 30px;
}

.article-content h2 {
  font-size: 30px;
  font-weight: 500;
}

.article-content h3 {
  font-size: 24px;
  font-weight: 400;
}

.blog-content {
  max-width: 1200px;
  padding: 12px;
  font-weight: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.articles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.article {
  width: 250px;
  height: 448px;
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  margin: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-preview-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.article-footer {
  font-size: 12px;
}

.article:hover {
  margin-top: 4px;
  cursor: pointer;
  box-shadow: 0 25px 50px 0 rgba(29, 14, 126, 0.11);
  transition: box-shadow 0.3s ease-in, margin-top 0.3s ease;
}

.article h2 {
  font-size: 1.3em;
  font-weight: 400;
}

.article-link {
  text-decoration: none;
  color: black;
}

.article-content ul {
  margin-top: 0px;
}

.article-content ol {
  margin-top: 0px;
}

.article-full-view-footer {
  font-size: 13px;
  text-align: right;
  margin-top: 40px;
}

@media only screen and (min-width: 1080px) {
  .article {
    width: 332px;
    height: 448px;
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    margin: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .article-full-h1 {
    font-size: 46px;
  }

  .article-content {
    padding: 40px;
  }
}

.infographie {
  display: flex;
  justify-content: center;
}
