.blog-sec {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fbfbfb;
}

.blog-sec__list {
  display:grid;
  grid-template-columns: repeat(1,1fr);
  grid-gap: 25px;
}

@media only screen and (min-width: 500px) {
  .blog-sec__list {
    grid-template-columns: repeat(2,1fr);
  }
}

@media only screen and (min-width: 900px) {
  .blog-sec__list {
    grid-template-columns: repeat(3,1fr);
  }
}

.blog-sec__item img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  object-position: center;
}

.blog-sec__more {
  font-style: italic;
  margin-top: 10px;
}

.blog-sec__item {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.2s;
}

.blog-sec__desc {
  padding: 20px;
}

.blog-sec__descitem {
  font-size: 14px;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.no-touch .blog-sec__item:hover {
  box-shadow: 0 0 30px rgba(0,0,0, 0.1);
}

.blog-sec__nameitem {
  font-weight: 800;
  color: #25b5fd;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 20px;
}

.blog-sec__dataitem {
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #25b5fd;
}