.newstag .maintitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 29px 0 10px 0;
}

.newstag ul {
  margin-left: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

/********************************
Gallery
*********************************/
.newstag.gallery {
  display: block;
}

.newstag.gallery ul {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  flex-wrap: wrap;
  margin-left: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

@media (min-width: 1024px) {
  .newstag.gallery ul li {
    flex-basis: 45%;
  }
}

.newstag.gallery ul li .thumb {
  margin-bottom: 10px;
}

.newstag.gallery ul li .title {
  padding: 0 10px 0 10px;
}

.newstag.gallery ul li .desc {
  margin-top: 10px;
  padding: 0 10px 0 10px;
}

.newstag.gallery ul li {
  flex-grow: 1;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/********************************
TextList
*********************************/
.newstag.textlist {
  display: block;
}


/********************************
WebZine
*********************************/
.newstag.webzine li {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

.newstag.webzine li .thumb {
  width: 100px;
  flex-shrink: 0;
  margin-right: 4px;
}

.newstag.webzine li .summary {
  flex-grow: 1;
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 56px;
}