@charset "utf-8";

#press_board {
  width: 100%;
  height: auto;
}

#press_board .post_list {
  width: 100%;
  height: auto;
}

#press_board .post_list .post {
  width: 100%;
  height: 120px;
  background: #fff;
  margin-bottom: 30px;
  padding:  0 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  transition: all 0.3s;
}

#press_board .post_list .post:hover {
  border: 1px solid #77B746;
}

#press_board .post_list .post .post_info {
  width: auto;
  height: auto;
  margin-right: 88px;
  text-align: center;
}

#press_board .post_list .post .post_info .d_date {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 50px;
  color: #222;
  display: block;
}

#press_board .post_list .post .post_info .y_date {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 13px;
  color: #222;
  display: block;
}

#press_board .post_list .post:hover .post_info .d_date,
#press_board .post_list .post:hover .post_info .y_date,
#press_board .post_list .post:hover a {
  color: #77B746;
  transition: all 0.3s;
}

#press_board .post_list .post a {
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 20px;
  color: #222;
  width: 100%;
  display: block;
  padding-right: 88px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#press_board .post_list .post img {
  width: auto;
  height: auto;
  transition: all 0.3s;
}

#press_board .post_list .post:hover img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(27%) saturate(600%) hue-rotate(55deg) brightness(85%) contrast(95%);
}

