.listNews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.25rem;
}
.listNews .itemPost {
  margin-bottom: 0.5rem;
  border-radius: 0.75rem;
  background: var(--white-2, #F6F9FC);
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.listNews .itemPost .imageNew {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}
.listNews .itemPost .imageNew img {
  border-radius: 0.75rem;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  transition: transform 0.3s ease;
}
.listNews .itemPost .title {
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Semi";
  font-style: normal;
  line-height: 130%;
  letter-spacing: -0.00625rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 44px;
  color: var(--black-1);
  font-size: 1.125rem;
  margin-bottom: 0px;
}
.listNews .itemPost:hover .imageNew img {
  transform: scale(1.5) rotate(12deg);
}
.listNews .itemPost:hover .title {
  color: var(--main-1);
}

.btn-more {
  text-align: center;
  padding: 1.125rem 0rem;
  margin-top: 1.5rem;
}
.btn-more a {
  border-radius: 3.125rem;
  border: 1px solid var(--main-1, #293A8E);
  padding: 1.125rem 1.5rem;
  border-radius: 3.125rem;
  border: 1px solid var(--main-1, #293A8E);
}
.btn-more a span {
  padding-right: 1.25rem;
  position: relative;
  color: var(--main-1);
  text-align: center;
  font-family: "Medium";
  font-size: 0.875rem;
  font-style: normal;
  line-height: 130%;
  text-transform: uppercase;
}
.btn-more a span svg {
  position: absolute;
  top: 0px;
  right: 0px;
}
.btn-more a span .svgHover {
  display: none;
}
.btn-more a:hover {
  background: var(--main-1, #293A8E);
}
.btn-more a:hover span {
  color: #fff;
}
.btn-more a:hover span .svgOften {
  display: none;
}
.btn-more a:hover span .svgHover {
  display: block;
}

@media screen and (max-width: 768px) {
  .listNews {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.75rem;
  }
  .listNews .itemPost {
    margin-bottom: 0px;
  }
  .listNews .itemPost .title {
    overflow: hidden;
    color: var(--black-1, #061020);
    font-family: "medium";
    font-size: 0.875rem;
    font-style: normal;
    line-height: 130%;
    height: 35px;
    text-transform: unset;
  }
}

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