@keyframes breathing {
  0% { opacity: 0.03; }
  50% { opacity: 1; }
  100% { opacity: 0.03; }
}

.latest-news h2 {
  font-size: 70px;
  line-height: 80px;
  letter-spacing: 0.7px;
  margin-bottom: 69px;
}

.latest-news .article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 8px;
}

.latest-news .article-list .article-item {
  position: relative;
}

.latest-news .article-list .article-item .article-label {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 83px;
  height: 28px;
  background-color: var(--tether-white);
  z-index: 1;
}

.latest-news .article-list .article-item .article-label > img {
  width: 15px;
  height: 12px;
  transform: translateX(-6px);
  animation: breathing 1.2s infinite cubic-bezier(0.8, 0, 0.55, 0.94);
}

.latest-news .article-list .article-item .article-label > div {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.96px;
  color: var(--tether-black);
}

.latest-news .article-list .article-item .article-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.latest-news .article-list .article-item .article-image::before {
  display: block;
  content: "";
  width: 100%;
  height: 220px;
  background-color: var(--tether-grey);
}

.latest-news .article-list .article-item .img-article {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-news .article-list .article-item .article-bar {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.96px;
  margin: 12px 0;
}

.latest-news .article-list .article-item .article-category {
  text-transform: uppercase;
}

.latest-news .article-list .article-item .article-title {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0.26px;
  margin-bottom: 12px;
}

.latest-news .article-list .article-item .article-preview {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.54px;
  margin-bottom: 32px;
}

.latest-news .article-list .article-item .article-preview p {
  margin: 0;
}

.latest-news .article-list .article-item .article-more {
  display: flex;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.17px;
  color: var(--tether-black);
  text-decoration: none;
  height: 25px;
}

.latest-news .article-list .article-item .article-more > div {
  position: relative;
}

.latest-news .article-list .article-item .article-more > div::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--tether-black);
  content: '';
  transition: width 0.4s cubic-bezier(.215,.61,.355,1);
  z-index: 1;
}

.latest-news .article-list .article-item .article-more > div::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--tether-grey);
  content: '';
}

.latest-news .article-list .article-item .article-more > div:hover::before {
  width: 100%;
}

.latest-news .read-all-news {
  margin: 62px auto 0;
  padding: 12px 18px;
}

@media (max-width: 991.98px) {
  .latest-news h2 {
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 0.52px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 887.98px) {
  .latest-news .article-list {
    display: flex;
    grid-template-columns: unset;
    gap: 30px;
    overflow: auto;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px 8px;
    overflow-y: hidden;
  }

  .latest-news .article-list .article-item {
    width: 268px;
    min-width: 268px;
  }

  .latest-news .article-list::-webkit-scrollbar {
    display: none;
  }
  
  .latest-news .article-list {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
