.blog-container {
    display: grid;
    /*grid-template-columns: 1fr minmax(auto, 20%);*/
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	grid-gap: 1rem;
    background-color: #eee;
    padding: 10px;
}

.blog-item {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 20px;
  text-align: center;
}

#example-element {
    text-overflow: ellipsis;
    line-height: 30px;
    /* white-space: nowrap; */
    display: block;
    overflow: hidden;
    height: 90px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    width: 360px;
    margin: 0 auto;
}