.article-social-links-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.article-social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  gap: 15px;
  list-style: none;
}
.article-social-links .article-social-item {
  list-style-type: none;
  background-color: rgb(30, 77, 55);
  width: 50px;
  height: 50px;
  border-radius: 9px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.article-social-links .article-social-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}
.article-social-links .article-social-item:hover {
  opacity: 0.8;
}