.article {
  min-height: 20vh;
  padding: 4rem 1rem 4rem 1rem;
  background-image: url(../img/article/bg-light.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.article h2 {
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
  display: -webkit-box;
  height: 40px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 95%;
}
.article .navigation {
  display: flex;
  gap: 0.5rem;
  position: relative;
  padding: 0rem;
}

.article .navigation a {
  display: block;
  color: rgba(74, 101, 124, 0.75);
}
.article .navigation .nav-hover {
  position: relative;
  font-size: 18px;
  width: 90px;
}
.article .navigation .nav-hover:hover a {
  visibility: hidden;
}
.article .navigation .nav-hover:hover .hover {
  visibility: visible;
}
.article .navigation .nav-hover .hover {
  visibility: hidden;
  position: absolute;
  top: 0;
  -webkit-text-stroke: 0.9px rgba(74, 101, 124, 1);
  width: 200px;
}
.desc-art {
  display: none;
}
.article .navigation a:hover {
  color: rgba(74, 101, 124, 1);
}
.article .navigation .active {
  -webkit-text-stroke: 0.9px rgba(74, 101, 124, 1);
  color: rgba(74, 101, 124, 1);
}
.article .article-card {
  margin-top: 1rem;
  width: 100wv;
  height: 180px;
  background-color: rgba(250, 249, 246, 1);
  display: flex;
  overflow: hidden;
}
.article .article-card:hover {
  outline: 1px solid rgba(74, 101, 124, 1);
  cursor: pointer;
}
.article .article-card .wrap-article {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 55%;
}
.article .article-card .wrap-article .wrap-article-title {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
}
.article .article-card .wrap-article .wrap-article-desc {
  display: flex;
  justify-content: space-between;
  width: 150px;
  align-items: center;
}
.article .article-card .wrap-article .wrap-article-desc p:nth-child(2) {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
}

.article .article-card .wrap-article .wrap-article-desc svg {
  display: none;
}
.article .article-card hr {
  margin-top: 1rem;
  height: 0.5px;
  background-color: rgba(74, 101, 124, 1);
}
.article .article-card .wrap-article .wrap-article-svg {
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
.article .article-card .wrap-article .wrap-article-svg .wrap-svg {
  display: flex;
}
.article .article-card .wrap-article .wrap-article-svg svg:hover {
  fill: rgba(74, 101, 124, 1);
}
.article .article-card .wrap-article .wrap-article-svg span {
  margin-right: 1rem;
  margin-left: 5px;
  color: rgba(74, 101, 124, 1);
}
.article .article-card img {
  width: 45%;
  object-fit: cover;
  height: auto;
}
.article .btn-more-article {
  margin: auto;
}
.article .btn-more {
  margin-top: 2rem;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  width: auto;
  height: 16px;
  padding: 0.8rem;
  transition: 400ms all ease-in-out;
  -webkit-transition: 400ms all ease-in-out;
  -moz-transition: 400ms all ease-in-out;
  -ms-transition: 400ms all ease-in-out;
  -o-transition: 400ms all ease-in-out;
}
.article .btn-more:hover {
  transform: translateY(8px);
  -webkit-transform: translateY(8px);
  -moz-transform: translateY(8px);
  -ms-transform: translateY(8px);
  -o-transform: translateY(8px);
  transition: 400ms all ease-in-out;
  -webkit-transition: 400ms all ease-in-out;
  -moz-transition: 400ms all ease-in-out;
  -ms-transition: 400ms all ease-in-out;
  -o-transition: 400ms all ease-in-out;
}
.article .article-card .wrap-article .wrap-article-desc .wrap-date {
  display: flex;
  gap: 5px;
}
.article .article-card .wrap-article .wrap-article-desc .wrap-date p {
  font-size: 12px;
}
@media only screen and (min-width: 992px) {
  .article {
    background-image: url(../img/article/bg-light.png);
    background-size: cover;
    object-fit: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
  .article .navigation .nav-hover {
    position: relative;
    font-size: 18px;
    width: 100px;
  }
  .desc-art {
    display: block;
  }
  .article .wrap-article {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    gap: 2rem;
    padding: 0rem 4rem;
  }
  .article .wrap-article:not(:nth-child(2)) {
    margin-top: 4rem;
  }
  .article .navigation {
    margin-left: 1rem;
    padding: 0rem 6rem;
    display: flex;
    gap: 3rem;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  .article .navigation a {
    font-size: 24px;
  }
  .article .wrap-article .article-card {
    width: 325px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: rgba(250, 249, 246, 1);
  }
  .article .article-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    /* height: auto; */
  }
  .article .article-card hr {
    width: auto;
    display: none;
  }
  .article .article-card .wrap-article {
    padding: 2rem;
    padding-right: 2.5rem;
    display: flex;
    gap: 0.5rem;
    width: 100%;
  }
  .article .article-card .wrap-article .wrap-article-svg {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .article .article-card .wrap-article .wrap-article-svg svg {
    font-size: 16px;
  }
  .article .article-card .wrap-article .wrap-article-svg svg:nth-child(2) {
    margin-right: 4rem;
  }
  .article .article-card .wrap-article .wrap-article-svg .wrap-svg span {
    color: rgba(74, 101, 124, 1);
    padding-top: 5px;
  }
  .article .article-card .wrap-article .wrap-article-svg .wrap-svg {
    display: flex;
    align-items: center;
  }
  .article h2 {
    font-size: 30px;
    font-weight: 400;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    display: -webkit-box;
    height: 50px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding-bottom: 2rem;
  }
  .article p {
    font-size: 18px;
    max-width: 80%;
    font-weight: 400;
  }
  .article .navigation {
    display: flex;
    gap: 1rem;
    position: relative;
  }
  .article .navigation a {
    font-size: 22px;
    color: rgba(74, 101, 124, 0.75);
  }
  .article .navigation a:hover {
    color: rgba(74, 101, 124, 1);
  }
  .article .navigation .active {
    color: rgba(74, 101, 124, 1);
    -webkit-text-stroke: 0.9px rgba(74, 101, 124, 1);
  }
  .article .article-card .wrap-article .wrap-article-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-top: 1rem;
  }
  .article .article-card .wrap-article .wrap-article-title svg {
    display: none;
  }

  .article .article-card .wrap-article .wrap-article-title {
    order: 2;
  }
  .article .article-card .wrap-article .wrap-article-desc {
    order: 1;
  }
  .article .article-card .wrap-article p {
    order: 3;
  }
  .article .article-card .wrap-article .desc-art {
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    display: -webkit-box;
    height: 40px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(74, 101, 124, 1);
  }
  .article .article-card .wrap-article hr {
    order: 3;
  }
  .article .article-card .wrap-article .wrap-article-svg {
    order: 4;
  }
  .article .article-card .wrap-article .wrap-article-desc {
    width: auto;
  }
  .article .article-card .wrap-article .wrap-article-desc .wrap-date {
    display: flex;
    gap: 5px;
  }
  .article .article-card .wrap-article .wrap-article-desc .wrap-date p {
    font-size: 14px;
  }
  .article .article-card .wrap-article .wrap-article-desc svg {
    margin-right: 4rem;
  }
  .article .wrap-article-desc {
    display: flex;
    flex-direction: row;
    width: auto;
  }
}
