/*---------------------------------------------------------------*/
/*--------------------- elements/blog.css -----------------------*/
/*---------------------------------------------------------------*/
.blog {
	background-color: #f0f0f0;
	background-image: url(../../images/graph_70.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 30%;
}

.blog .content_container {
	flex-direction: column;
	align-items: flex-start;
}

.blog .content_container .blog_content {
	display: flex;
	align-items: flex-start;
  flex-wrap: wrap;
}

.blogpost {
  background-color: #fff;
  width: 90%;
  padding: 5%;
  margin-bottom: 50px;
  box-shadow: 0px 2px 0px 0px rgba(1,2,2,0.15);
  display: inline-block;
}

.blogpost h1 {
  color: #CC3B68;
  margin-bottom: 10px;
}

.blogpost h1:before {
  content: none;
}

.blogpost .date {
  text-align: right;
  color: #ccc;
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 1rem 0;
}

.blogpost img {
  width: 100%;
}

.signed {
  float: right;
}

.blogpost li {
	margin: 0.5rem 0;
}

.post_overview {
	background-color: #fff;
	box-shadow: 0px 2px 0px 0px rgba(1,2,2,0.15);
	padding: 2rem;
	display: flex;
    flex-direction: column;
}

.post_overview a {
	color: #272727;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 0.5rem;
    max-width: 100%;
    white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
}

@media screen and (min-width: 50rem) {
  .blogpost {
    width: 80%;
  }
}