.article-col {
  animation: appear linear;
  animation-range: entry 0% cover 30%;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.featured-super-articles-banner {
  margin-bottom: 30px;
}
.featured-super-articles-banner .thumbnail {
  width: 100%;
  aspect-ratio: 2/1;
  background-size: cover;
}

main section {
  max-width: 1440px;
  width: 90%;
  padding: 20px 30px;
  background: #fff;
  margin: 0 auto;
}
main section .article-container .article-col {
  padding-bottom: 30px;
}
main section .article-container .article-col .meta-container > div {
  display: flex;
  gap: 8px;
  font-size: 12px;
  padding-top: 12px;
}
main section .article-container .article-col .meta-container > div span {
  color: #58a4b0;
}
main section .article-container h2 {
  font-size: 28px;
  transition: all 0.3s ease-in-out;
  padding-bottom: 5px;
}
main section .article-container h2:hover {
  color: #58a4b0;
}
main section .article-container .img-container {
  position: relative;
  background: #ccc;
}
main section .article-container .img-container img {
  width: 100%;
  object-fit: cover;
}
main section .article-container .img-container .category-container {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff856e;
  color: #fff;
  font-size: 12px;
  padding: 0 5px;
}
main section .article-container .img-container .category-container a {
  color: #fff;
  text-decoration: none;
}
main section .article-container .img-container .category-container a:hover {
  color: #fff;
  text-decoration: none;
}
main section .article-container .img-container .category-container a span {
  color: #fff;
}
main section .article-container .excerpt-container {
  margin-top: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #5b6170;
}
main section .article-container .read-more-container {
  margin-top: 15px;
}
main section .article-container .read-more-container > span {
  display: inline-flex;
  border: 1px solid #e0e0e0;
  padding: 5px 10px;
  font-size: 12px;
  color: #000;
  transition: all 0.3s ease-in-out;
}
main section .article-container .read-more-container > span:hover {
  background: #58a4b0;
  border: 1px solid #58a4b0;
  color: #fff;
}
main section .page-container > div {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
main section .page-container > div span.page-numbers.current {
  display: inline-flex;
  background: rgb(88, 164, 176);
  color: #fff;
}
main section .page-container > div .page-numbers {
  display: inline-flex;
  border: 1px solid rgb(88, 164, 176);
  font-weight: 300;
  padding: 5px 10px;
  min-height: 35px;
  align-items: center;
  transition: background 0.3s ease-in-out;
}
main section .page-container > div .page-numbers:hover {
  background: rgb(245, 245, 245);
}
main section .page-container > div .page-numbers svg {
  height: 8px;
}

@media (max-width: 576px) {
  main section {
    width: 100%;
    padding: 10px 20px;
  }
}

/*# sourceMappingURL=index.css.map */
