.newsPage .contentBox {
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .newsPage .contentBox {
    padding-bottom: 60px;
  }
}

.newsList {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1180px) {
  .newsList {
    margin-top: 20px;
  }
}

.newsCard {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #E3D9CA;
  padding: 32px 0;
}
.newsCard:first-child {
  border-top: 1px solid #E3D9CA;
}
@media (max-width: 768px) {
  .newsCard:first-child {
    border-top: none;
  }
}
@media (max-width: 768px) {
  .newsCard {
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
  }
}
.newsCard .newsCardImg {
  flex: 0 0 260px;
  overflow: hidden;
  align-self: stretch;
}
.newsCard .newsCardImg a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsCard .newsCardImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1180px) {
  .newsCard .newsCardImg {
    flex: 0 0 200px;
  }
}
@media (max-width: 768px) {
  .newsCard .newsCardImg {
    flex: none;
    width: 100%;
  }
  .newsCard .newsCardImg img {
    height: auto;
  }
}
.newsCard .newsCardDate {
  flex: 0 0 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 20px 0;
  border-right: 1px solid #E3D9CA;
}
@media (max-width: 1180px) {
  .newsCard .newsCardDate {
    flex: 0 0 72px;
    padding: 8px 12px 0;
  }
}
@media (max-width: 768px) {
  .newsCard .newsCardDate {
    display: none;
  }
}
.newsCard .newsCardDay {
  display: block;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: #2A1B0A;
  line-height: 1;
  letter-spacing: -0.02em;
}
.newsCard .newsCardMonth {
  display: block;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #7B6852;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.newsCard .newsCardTxt {
  flex: 1;
  padding: 4px 0 4px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1180px) {
  .newsCard .newsCardTxt {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .newsCard .newsCardTxt {
    padding-left: 0;
  }
}
.newsCard .newsCardMeta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.newsCard .newsCardCategory {
  display: inline-block;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #F3E1CD;
  background-color: #674938;
  padding: 5px 10px;
}
.newsCard .newsCardTitle {
  font-family: "Noto Serif TC", serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  color: #2A1B0A;
  letter-spacing: 3px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsCard .newsCardTitle a {
  color: inherit;
  transition: color 0.25s;
}
@media (min-width: 1181px) {
  .newsCard .newsCardTitle a:hover {
    color: #8B7355;
  }
}
.newsCard .newsCardDesc {
  font-size: 16px;
  color: #434343;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 2.4px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newsCard .newsCardBtn {
  display: inline-block;
  align-self: flex-start;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #2A1B0A;
  border: 1px solid #2A1B0A;
  padding: 7px 20px;
  margin-top: 4px;
  transition: background-color 0.25s, color 0.25s;
}
@media (min-width: 1181px) {
  .newsCard .newsCardBtn:hover {
    background-color: #2A1B0A;
    color: #fff;
  }
}