.home-item__container{
  margin-top: 30px;
  margin-bottom: 30px;
}

.home-item__thumbnail {
  width: 260px;
  min-height: 200px;
  background-color: #ced4da;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  display: block;
  margin-right: 30px;
  box-shadow: 10px 10px #bab9b9;
  position: relative;
}

@media (max-width: 575px) {
  .home-item__thumbnail {
    width: 100%;
    margin: 0 0 10px;
  }
}

.home-item__image {
  width: 100%;
}

.home-item__tag {
  text-align: center;
  font-style: italic;
  font-weight: bold;
  background-color: #f26d5b;
  color: #f6ea8c;
  width: 60px;
  height: 30px;
  line-height: 40px;
  transform: rotate(45deg);
  position: absolute;
  right: -19px;
  top: -4px;
}

.home-item__content {
  border-bottom: solid 1px #999;
  font-size: 18px;
  color: #666;
  padding-top: 9px;
  padding-bottom: 30px;
  min-height: 241px;
}

@media (max-width: 575px) {
  .home-item__content {
    min-height: auto;
  }
}

.home-item__title{
  font-size: 28px;
  color: #050505;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-item__description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-item__more {
  background-color: #303030;
  padding: 10px 22px;
  color: #fff !important;
  display: inline-block;
}