.newsList .Img {
  transition: all 0.5s ease-in-out;
}

.newsInfoBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
  padding: 5px 0;
  line-height: 1.4;
}
.newsInfoBox .date {
  color: #8e735b;
  font-weight: bold;
  font-family: "Cormorant Garamond", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  color: #aec246;
  border: 1px solid #aec246;
}

.newsList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.newsList .newsItem {
  width: 33.3333333333%;
  padding: 0 15px 30px;
}
@media (max-width: 1180px) {
  .newsList .newsItem {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
  }
}
@media (min-width: 1181px) {
  .newsList .item:hover .Img {
    box-shadow: 12px 15px 20px 0px rgba(49, 49, 49, 0.4);
  }
}
.newsList .Img {
  position: relative;
  box-shadow: 12px 15px 20px 0px rgba(49, 49, 49, 0.2);
}
@media (max-width: 840px) {
  .newsList .Img {
    box-shadow: none;
  }
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
}
.newsList .textBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px 42px;
  padding: 20px 0;
}
@media (max-width: 840px) {
  .newsList .textBox {
    flex-wrap: wrap;
  }
}
.newsList .dateBox {
  position: relative;
  width: 138px;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  color: #626262;
}
.newsList .dateBox::before {
  content: "";
  position: absolute;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 1px;
  height: 38px;
  background-color: rgba(0, 0, 0, 0.3);
  left: auto;
  top: 5px;
  right: -20px;
  rotate: 37.5deg;
}
.newsList .dateBox .day {
  font-family: "Cormorant Garamond", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #8e735b;
  font-size: 50px;
  letter-spacing: 2.5px;
  line-height: 0.5;
}
.newsList .dateBox .year {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.65px;
  line-height: 20px;
  width: 100%;
}
.newsList .dateBox .classTitle {
  font-size: 15px;
  letter-spacing: 0.75px;
  line-height: 20px;
}
.newsList .title {
  flex: 1;
}
@media (max-width: 840px) {
  .newsList .title {
    flex: auto;
    width: 100%;
  }
}
.newsList .title a {
  color: #8e735b;
  font-family: "Noto Serif TC", serif;
  display: block;
  font-size: clamp(16px, 1.5dvw, 20px);
  letter-spacing: 2px;
  line-height: 1.35;
}
@media (min-width: 1181px) {
  .newsList .title a:hover {
    color: #aec246;
    transform: translateX(-5px);
  }
}
@media (max-width: 1180px) {
  .newsList .title a {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
@media (max-width: 400px) {
  .newsList .title a {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}
.newsList .text {
  font-size: 16px;
  color: #626262;
  letter-spacing: 0.5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1180px) {
  .newsList .text {
    font-size: 15px;
  }
}
@media (max-width: 400px) {
  .newsList .text {
    font-size: 14px;
  }
}
