/***************************************
    copyright by MakeWeb.com.tw 
***************************************/
.post_lists .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}
.post_lists .container .item a {
  color: #42210b;
}
.post_lists .container .item a .img {
  margin-bottom: 30px;
}
.post_lists .container .item a .info .name {
  margin-bottom: 10px;
}
.post_lists .container .img img {
  width: 100%;
  height: 332px;
  object-fit: cover;
}

.year-filter-container {
  text-align: right;
}

.conference-card {
  width: 100%;
  margin: 20px auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.conference-card__header {
  border-top: 4px solid #ff0033;
}

.conference-card__content {
  padding: 24px;
}

.conference-card__title {
  margin: 0 0 8px 0;
}

.conference-card__title-zh {
  font-size: 18px;
  line-height: 1.4;
  color: #333;
  margin-bottom: 4px;
}

.conference-card__title-en {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 16px;
}

.conference-card__date {
  font-size: 14px;
  color: #666;
}

.conference-card__action {
  text-align: center;
}
.conference-card__action a {
  color: #0099ff;
  text-decoration: none;
  font-size: 14px;
}
.conference-card__action a:hover {
  text-decoration: underline;
}

/*-------------------------------------------- 
	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*/
/*iPhone*/
@media screen and (max-width: 767px) {
  .post_lists .container {
    grid-template-columns: repeat(1, 1fr);
  }
}