/***************************************
    copyright by MakeWeb.com.tw 
***************************************/
.post_lists .container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
  column-gap: 40px;
}
.post_lists .container .item {
  max-width: 400px;
}
.post_lists .container .item a {
  color: #42210b;
}
.post_lists .container .item a .img {
  margin-bottom: 30px;
}
.post_lists .container .item a .info {
  text-align: center;
}
.post_lists .container .item a .info .name {
  margin-bottom: 10px;
}
.post_lists .container .item :hover h3,
.post_lists .container .item :hover h4 {
  color: #b8d6ce;
}
.post_lists .container .img img {
  width: 100%;
}

/*-------------------------------------------- 
	Media Queries 
---------------------------------------------*/
/* Portrait and Landscape */
/*@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
}*/
/*iPad Pro*/
/*iPad*/
@media screen and (max-width: 1023px) {
  .post_lists .container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 330px));
  }
}
/*iPhone*/
@media screen and (max-width: 767px) {
  .post_lists .container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}