/* color */
/* font */
/* transition */
.newsIcon {
  position: relative;
  width: 125px;
  height: 320px;
  font-size: 0; }
  @media (max-width: 640px) {
    .newsIcon {
      display: none; } }
  .newsIcon img {
    position: absolute;
    left: 0;
    top: -20px;
    transition: all 0.5s ease-in-out;
    max-width: 100%;
    height: auto; }
    .newsIcon img.beforeHover {
      opacity: 1; }
    .newsIcon img.hover {
      opacity: 0; }

.newsItem {
  background-color: #e8e8e8;
  align-items: center;
  display: flex;
  position: relative;
  margin-bottom: 50px;
  transition: all 0.5s ease-in-out; }
  @media (max-width: 640px) {
    .newsItem {
      flex-direction: column; } }
  @media (min-width: 1281px) {
    .newsItem:hover {
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
      .newsItem:hover .newsIcon img.beforeHover {
        opacity: 0; }
      .newsItem:hover .newsIcon img.hover {
        opacity: 1; } }
  .newsItem .date {
    color: #2a7ca4;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px; }
  .newsItem .cardTitle {
    height: 78px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.newsImg, .newsInfo {
  z-index: 2; }
  @media (max-width: 640px) {
    .newsImg, .newsInfo {
      width: 100%; } }

.newsImg {
  font-size: 0;
  overflow: hidden; }
  .newsImg img {
    transition: all 0.5s ease-in-out; }

.newsInfo {
  flex: 1;
  padding: 20px 40px; }
  .newsInfo .dateBox {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px; }
  .newsInfo .day,
  .newsInfo .month {
    background-color: #a2a2a2;
    color: #fff;
    padding: 0 15px;
    font-weight: 700;
    font-size: 24px; }
  .newsInfo .day {
    margin-right: 5px; }
  .newsInfo .title {
    font-size: 20px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 1.6px; }
  .newsInfo .desc {
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; }

.newsContent .topBox {
  margin: 20px 0 40px;
  padding: 10px 40px;
  background-color: #e8e8e8;
  margin-left: auto;
  background-color: #f5f5f5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media (max-width: 640px) {
    .newsContent .topBox {
      flex-direction: column-reverse;
      align-items: flex-start; } }
  .newsContent .topBox .dateBox {
    align-items: center;
    display: flex;
    justify-content: flex-end; }
    @media (max-width: 640px) {
      .newsContent .topBox .dateBox {
        margin-bottom: 10px; } }
  .newsContent .topBox .day,
  .newsContent .topBox .month {
    background-color: #a2a2a2;
    color: #fff;
    padding: 0 15px;
    font-weight: 700;
    font-size: 24px; }
  .newsContent .topBox .day {
    margin-right: 5px; }
  @media (max-width: 640px) {
    .newsContent .topBox .contentTitle {
      font-size: 18px; } }

.newsContent .bottomBox {
  padding: 0 40px; }
  @media (max-width: 640px) {
    .newsContent .bottomBox {
      padding: 0; } }

.newsLink:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

.newsLinkBox {
  text-align: right; }

.filterBox {
  text-align: right;
  margin-bottom: 40px; }
  .filterBox select {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2.4px;
    border: none;
    border-bottom: 1px solid #909090;
    padding: 2.5px 20px; }
