/* color */
/* font */
/* transition */
@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.newsList {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 50px;
  row-gap: 110px; }
  @media (max-width: 1024px) {
    .newsList {
      column-gap: 30px;
      row-gap: 30px; } }
  @media (max-width: 640px) {
    .newsList {
      grid-template-columns: 1fr; } }
  .newsList .newsItem {
    position: relative; }
    .newsList .newsItem:nth-child(1), .newsList .newsItem:nth-child(2) {
      grid-column: span 6; }
    .newsList .newsItem:nth-child(1) {
      padding-right: 25px; }
      @media (max-width: 1024px) {
        .newsList .newsItem:nth-child(1) {
          padding-right: 0; } }
    .newsList .newsItem:nth-child(2) {
      padding-left: 25px; }
      @media (max-width: 1024px) {
        .newsList .newsItem:nth-child(2) {
          padding-left: 0; } }
    .newsList .newsItem:nth-child(n + 3) {
      grid-column: span 4; }
      @media (max-width: 1024px) {
        .newsList .newsItem:nth-child(n + 3) {
          grid-column: span 6;
          border-bottom: none; } }
  .newsList .link {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1; }
  .newsList .imgBox {
    position: relative;
    font-size: 0;
    margin-bottom: 40px; }
    .newsList .imgBox .date {
      width: 160px;
      height: 65px;
      background-image: url("../assets/images/date-bg.svg");
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      right: 0;
      bottom: -30px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 10px;
      color: #a30d16;
      font-family: "Libre Baskerville", Noto Serif TC, sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1.28px; }
  .newsList .textBox {
    position: relative;
    padding: 0 20px;
    margin-bottom: 40px; }
    .newsList .textBox:before {
      content: "";
      position: absolute;
      width: 1px;
      height: 100%;
      background-color: #a30d16;
      position: absolute;
      left: 0;
      top: 0; }
    .newsList .textBox .title {
      color: #6f2517;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 2.4px;
      line-height: 1.65;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 10px; }
    .newsList .textBox .desc {
      letter-spacing: 0.96px;
      line-height: 1.5625;
      color: #5d2c13;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
  .newsList .btn {
    margin-left: 20px; }

.newsContent {
  max-width: 700px;
  width: 100%;
  margin: 0 auto; }
  .newsContent .imgBox {
    position: relative;
    font-size: 0;
    margin-bottom: 40px; }
    @media (max-width: 640px) {
      .newsContent .imgBox {
        margin-bottom: 20px; } }
    .newsContent .imgBox .date {
      width: 160px;
      height: 65px;
      background-image: url("../assets/images/date-bg.svg");
      background-size: contain;
      background-repeat: no-repeat;
      position: absolute;
      left: -50px;
      top: -30px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 10px;
      color: #a30d16;
      font-family: "Libre Baskerville", Noto Serif TC, sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1.28px; }
      @media (max-width: 640px) {
        .newsContent .imgBox .date {
          position: relative;
          left: 0; } }
  .newsContent .textBox {
    padding: 20px;
    position: relative; }
    .newsContent .textBox:before {
      content: "";
      position: absolute;
      width: 1px;
      height: 100%;
      background-color: #a30d16;
      left: 0;
      top: 0; }
