.news-list-stage {
  padding-top: 140px;
  padding-bottom: 100px;
}

.news-list-title {
  font-size: 44px;
  color: rgb(51, 51, 51);
  font-weight: bold;
  padding: 0 0 60px;
  text-align: center;
}

.news-entry {
  box-shadow: 0px 6px 32px rgba(6, 51, 145, 0.15);
  padding: 60px 75px 60px 80px;
  display: flex;
  gap: 60px;
}

.news-entry:not(:last-child) {
  margin-bottom: 60px;
}

.news-entry:hover {
  box-shadow: 0px 6px 32px rgba(6, 51, 145, 0.28);
  background: #dce0ec;
}

.news-left {
  width: 0;
  flex-grow: 60;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.news-right {
  width: 0;
  flex-grow: 75;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.news-img {
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease-in-out;
}

.news-entry:hover .news-img {
  transform: scale(1.1);
}

.news-entry:nth-of-type(1) .news-img {
  background-image: url("/img/news1/1.png");
}

.news-entry:nth-of-type(2) .news-img {
  background-image: url("/img/news2/2.png");
}

.news-entry:nth-of-type(3) .news-img {
  background-image: url("/img/news3/2.png");
}

.news-entry:nth-of-type(4) .news-img {
  background-image: url("/img/news4/1.png");
}

.news-title {
  font-size: 28px;
  font-weight: bold;
  color: rgb(51, 51, 51);
}

.news-entry:hover .news-title {
  color: rgb(5, 51, 145);
}

.news-sep-line {
  margin-top: 40px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.news-sep-line::before {
  content: "";
  display: block;
  width: 118px;
  border-top: 3px solid #153f98;
}

.news-sep-line::after {
  content: "";
  display: block;
  border-top: 1px solid #8197c7;
  flex-grow: 1;
}

.news-date {
  font-size: 20px;
  font-weight: bold;
  color: rgb(5, 51, 145);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-date::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/img/right-blue.svg");
  background-size: cover;
}