.title{
  display: flex;
  justify-content: space-between;
  font-size: max(20px, 2rem);
  font-weight: bold;
  margin-bottom: max(16px, 2rem);
  line-height: 1;
}
.title span {
  color: var(--themeColor);
  padding-bottom: max(10px, 1rem);
  border-bottom: 1px solid var(--activeColor);
}
.title img{
  width: max(18px, 1.5rem);
  height: auto;
  object-fit: contain;
}
.news{
  padding: 3.75rem 15px;
}
.newsList{
  display: flex;
  flex-wrap: wrap;
  gap: 1.37rem;
}
.newsItem{
  width: 32%;
  display: flex;
  flex-direction: column;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s ease-in-out;
  overflow: hidden;
}
.newsItem .newsImage{
  width: 100%;
  height: max(200px, 15rem);
  object-fit: cover;
}
.newsItem .info{
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  line-height: 1.3;
  gap: 12px;
}
.newsItem .news-title{
  font-size: max(16px, 1.25rem) ;
  font-weight: bold;
}
.newsItem .news-desc{
  color: #333;
}
.newsItem .toDetail{
  color: #004177;
  font-size: 18px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.newsItem .toDetail img{
  width: 40px;
  height: auto;
}
.news .moreNews{
  margin-top: 3.5rem;
  width: fit-content;
  margin-left: auto;
  font-size: 16px;
  color: var(--themeColor);
}
.loadMore{
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.loadMore-text{
  margin-right: 8px;
  color: var(--themeColor);
}
.loadMore .spinner{
  width: 20px;
  height: 20px;
  color: var(--activeColor);
}
@media (hover: hover){
  .newsItem:hover{
    transform: translateY(-10px);
  }
}

@media screen and (max-width:768px){
  .newsList{
    gap: 12px;
  }
  .newsItem{
    width: 48%;
  }
}
@media screen and (max-width:576px){
  .newsItem{
    width: 100%;
  }
}