.article-container {
  display: block;
  margin-top: 60px;
}

.article-container .wrapper {
  width: 1200px;
  margin: auto;
}

.article-container .wrapper .article-title {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.article-container .wrapper .article-title h2 {
  font-size: 28px;
  color: #000;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.article-container .wrapper .article-title a {
  text-decoration: none;
  font-size: 16px;
  background: #0678b1;
  color: #fff;
  font-weight: 500;
  padding: 10px 40px;
  border-radius: 5px;
  border: solid 2px #0678b1;
  transition: 0.6s;
}

.article-container .wrapper .title a:hover {
  background: #fff;
  color: #0678b1;
}

.article-container .wrapper .Article {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  position: relative;
}

.article-container .wrapper .Article a {
  text-decoration: none;
}

.article-container .wrapper .Article a .ArticleData {
  display: block;
  background: #fff;
  width: 100%;
  border-radius: 5px;
  border: solid 1px #ddd;
  position: relative;
  transition: 0.6s;
  height: 370px;
  overflow-y: auto;
  scrollbar-width: none;
}

.article-container .wrapper .Article a .ArticleData .imageWrapper {
  position: relative;
}

.article-container .wrapper .Article a .ArticleData .imageWrapper img {
  width: 100%;
  height: 200px;
  transition: 0.6s;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
  z-index: 2;
}

.article-container .wrapper .Article a .ArticleData .imageWrapper i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

.article-container .wrapper .Article a .ArticleData .ArticleText {
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

.article-container .wrapper .Article a .ArticleData .ArticleText h2 {
  font-size: 22px;
  color: #111;
  margin: 0;
  padding: 0;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.article-container .wrapper .Article a .ArticleData .ArticleText .text {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 24px;
}

.article-container .wrapper .Article a .ArticleData .ArticleText .text h1,
.article-container .wrapper .Article a .ArticleData .ArticleText .text h2,
.article-container .wrapper .Article a .ArticleData .ArticleText .text h3,
.article-container .wrapper .Article a .ArticleData .ArticleText .text h4,
.article-container .wrapper .Article a .ArticleData .ArticleText .text h5,
.article-container .wrapper .Article a .ArticleData .ArticleText .text h6,
.article-container .wrapper .Article a .ArticleData .ArticleText .text p,
.article-container .wrapper .Article a .ArticleData .ArticleText .text div,
.article-container .wrapper .Article a .ArticleData .ArticleText .text span,
.article-container .wrapper .Article a .ArticleData .ArticleText .text strong,
.article-container .wrapper .Article a .ArticleData .ArticleText .text em,
.article-container .wrapper .Article a .ArticleData .ArticleText .text b,
.article-container .wrapper .Article a .ArticleData .ArticleText .text i,
.article-container .wrapper .Article a .ArticleData .ArticleText .text small {
  font-size: 16px !important;
  color: #000 !important;
  font-weight: 400 !important;
  margin: 0;
  line-height: 1.4;
  text-align: left !important;
}

.article-container .wrapper .Article a .ArticleData .ArticleText span {
  font-size: 16px;
  color: #0678b1;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.6s;
  margin-top: 15px;
  display: block;
}

.article-container .wrapper .Article a .ArticleData .ArticleText span:hover {
  text-decoration: none;
}

/* Responsive */
@media only screen and (max-width: 1299px) and (min-width: 360px) {
  .article-container {
    margin-top: 20px;
  }
  .article-container .wrapper {
    width: 100%;
    padding: 0px 10px;
  }
  .article-container .wrapper .article-title {
    flex-wrap: wrap;
  }
  .article-container .wrapper .article-title h2 {
    font-size: 18px;
  }
  .article-container .wrapper .article-title a {
    font-size: 18px;
    padding: 7px 20px;
  }
}
