.blogs-wrapper {
  float: left;
  width: 100%;
  padding: 40px 0px;
}
.blogs-content {
  width: 80%;
}
.blogs-title {
  float: left;
  color: var(--text-color);
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
  margin-top: 20px;
  margin-bottom: 10px;
}

.blogs-item-wrapper {
  float: left;
  width: 100%;
}

.blog-item {
  float: left;
  width: 31.33%;
  margin-bottom: 10px;
}

.block {
  float: left;
  width: 1%;
  height: 10px;
}

.blog-picture {
  width: 100%;
  height: 120px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.blog-text-wrapper {
  width: 100%;
  padding: 10px 10px;
  background-color: var(--gray-color);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.blog-title {
  color: #AAA;
  height: 100px;
  font-family: 'Rubik', sans-serif;
  line-height: 1.5em;
  height: 3em;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-link {
  margin-top: 10px;
  color: lightseagreen;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
}
.blog-link:hover {
  opacity: 0.8;
}

.blog-item:hover {
  cursor: pointer;
  transform: scale(1.02);
}

@media screen and (max-width: 720px) {
  .blog-item {
    width: 100%;
  }
  .margin-right {
    margin-right: 0px;
  }
  .margin-even {
    margin: 0px 0px;
  }
  .margin-left {
    margin-left: 0px;
  }
  .block {
    display: none;
  }
}
