/* CSS Document */
.ib_news_002 .newsList .Img img, .ib_news_002 .newsList .Img::before {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
}
.newsInfoBox .dateBox,
.newsInfoBox .classTitle {
  padding: 5px 0;
}
.newsInfoBox .dateBox .date {
  line-height: 1;
  text-transform: uppercase;
  font-family: "Lato", "Noto Serif TC", serif;
  font-size: 16px;
  font-weight: 450;
  letter-spacing: 1px;
  line-height: 1;
}
.newsInfoBox .classTitle {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  background-color: #ad2929;
  color: #fff;
}

.ib_news_002 .newsList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 40px;
}
@media (max-width: 768px) {
  .ib_news_002 .newsList {
    gap: 20px;
  }
}
.ib_news_002 .newsList .newsItem {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  .ib_news_002 .newsList .newsItem {
    width: 100%;
  }
}
.ib_news_002 .newsList .Img {
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}
.ib_news_002 .newsList .Img::before {
  content: "";
  position: absolute;
  background-color: #ad2929;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: url(../images/search.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(100% - 20px) calc(100% - 20px);
  inset: 0;
  margin: auto;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1181px) {
  .ib_news_002 .newsList .Img:hover::before {
    content: "";
    position: absolute;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .ib_news_002 .newsList .Img:hover img {
    -webkit-filter: brightness(0.6);
            filter: brightness(0.6);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.ib_news_002 .newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.ib_news_002 .newsList .Txt {
  overflow: hidden;
  margin-bottom: 40px;
}
.ib_news_002 .newsList .Txt .newsInfoBox {
  padding-bottom: 5px;
}
.ib_news_002 .newsList .Txt .title {
  font-size: 19px;
  font-weight: 400;
  color: #3a3332;
}
@media (max-width: 700px) {
  .ib_news_002 .newsList .Txt .title {
    font-size: 17px;
  }
}
.ib_news_002 .newsList .Txt .title a {
  color: #3a3332;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: inline-block;
  vertical-align: middle;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ib_news_002 .newsList .Txt .text {
  margin-top: 7px;
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  height: 60px;
}