@charset "UTF-8";
/* CSS Document */
.active #content, .open #content,
#content{
  margin: 0 auto;
  padding: 0 40px!important;
}
.tagBox{
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.tagBox .col .thumb{
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.tagBox .col .thumb img{
width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
#content .tagBox .col .txt > h2{
  font-size: 24px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  margin-top: 0;
  padding-top: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  top: 10px;
}
#content .tagBox .col .txt > p{
  font-size: 18px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
#content .tagBox .col .data > time{
    font-size: 18px;
}
#content .tagBox .col .data > object{
  margin-left: 5px;
}
#content .tagBox .col .data > object a{
    color: #fff;
    background: #0978b7;
    font-weight: bold;
    font-size: 13px;
    opacity: 1;
    border-radius: 5px;
    padding: 4px 8px;
    line-height: 1;
}
@media only screen and (max-width:767px) {
.tagBox{
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
#content .tagBox .col .txt > h2{
  font-size: 20px;
}
#content .tagBox .col .txt > p{
  font-size: 16px;
  line-height: 1.75;
}
.tagBox .col .data time{
    font-size: 16px;
}

}
