.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__more-btn {
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  background-color: #25b5fd;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.04em;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  margin-top: 20px;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.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;
  white-space: pre-line;
}

.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;
}