header {
  background-color: #7CD1BE;
  position: unset;
}

.section_title {
  text-align: left;
}

.news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.news li {
  background-color: #f5fbfa;
  border-radius: 0.5rem;
  margin-bottom: 1.6rem;
  overflow: hidden;
}

.news li .info {
  padding: 1.5rem;
}

.news li .info h3 {
  font-family: Roboto-Bold;
  font-size: 0.8rem;
  font-weight: normal;
  font-stretch: normal;
  line-height: 1.2rem;
  letter-spacing: 0rem;
  color: #434343;
  margin-bottom: 0.5rem;
}

.news li .info p {
  font-family: Roboto-Light;
  font-size: 0.7rem;
  font-weight: normal;
  font-stretch: normal;
  line-height: 1.2rem;
  letter-spacing: 0rem;
  color: #434343;
}

.news li .time {
  font-family: Roboto-Regular;
  font-size: 0.6rem;
  font-weight: normal;
  font-stretch: normal;
  line-height: 1.2rem;
  letter-spacing: 0rem;
  color: #959595;
}

.imgbox {
  overflow: hidden;
  line-height: 0;
}

.imgbox img {
  width: 100%;
  transition: transform 0.3s ease;
}

.news li:hover img {
  transform: scale(1.1);
}

.news .btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.news .btns button {
  background-color: #7CD1BE;
  color: #fff;
  border-radius: 1.5rem;
}

.loadmore {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loadmore button {
  width: 10rem;
  height: 2.5rem;
  background-image: linear-gradient(90deg,
      #559d6b 0%,
      #7cd1be 100%),
    linear-gradient(#559d6b,
      #559d6b);
  background-blend-mode: normal,
    normal;
  border-radius: 1.225rem;
  font-family: Roboto-Bold;
  font-size: 0.9rem;
  color: #ffffff
}

@media screen and (max-width:768px) {
  .news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}