

a {
  text-decoration: none;
}

blockquote {
  padding: 0 15px;
  margin-top: 15px;
  border-left: 3px solid #0858e4;
}

.more {
  min-height: 25px;
  padding: 0 10px;
  margin-top: 25px;
  border-radius: 3px;
  background: #0858e4;
  display: inline-block;
  font-size: 60%;
  color: #fff;
  font-weight: 800;
  line-height: 25px;
  text-transform: uppercase;
}

#posts {
  position: relative;
  padding: 25px 0;
  display: table;
}
#posts .post {
  position: relative;
  width: 100%;
  height: 25px;
}#posts:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
    background: #CCD1D9;
    z-index: 1;
}
#posts .post .content {
  position: relative;
  width: calc(50% - 25px);
  padding: 18px;
  margin-bottom: 25px;
  border-radius: 3px;
  background: #fff;
  z-index: 1;
  -webkit-filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
#posts .post .content:before, #posts .post .content:after {
  content: '';
  position: absolute;
}
#posts .post .content:before {
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 99em;
  background: #fff;
}
#posts .post :after {
  top: 8px;
  width: 0;
  height: 0;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #fff;
}
#posts .post:last-child .content {
  margin-bottom: 0;
}
#posts .post:nth-child(odd) .content {
  float: left;
}
#posts .post:nth-child(odd) .content:before {
  right: calc(-4px + -25px);
}
#posts .post:nth-child(odd) .content:after {
  right: -8px;
  border-right-width: 0;
}
#posts .post:nth-child(even) .content {
  float: right;
}
#posts .post:nth-child(even) .content:before {
  left: calc(-4px + -25px);
}
#posts .post:nth-child(even) .content:after {
  left: -8px;
  border-left-width: 0;
}

@media screen and (max-width: 600px) {
  body {
    background-image: none;
  }

  #posts .post {
    height: auto;
  }
  #posts .post .content {
    width: auto;
  }
  #posts .post .content:before, #posts .post .content:after {
    display: none;
  }
}
