Испытание анонс поста [18/18] 100%

Вот мой код, 99.1%, применил флексы и трансформы + позиционирование. Помогите, кто знает ссылку на картинку сообщений? background: url("?");

html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 280px;
  min-height: 250px;
  padding-top: 50px;
  padding-right: 10px;
  padding-left: 10px;

  font-size: 12px;
  line-height: 1.2;
  font-family: "Arial", sans-serif;
  color: #7f8c8d;

  background-color: #ecf0f1;
}

.post-stats .icon {
  width: 15px;
  height: 15px;
}

a {
   text-decoration: none;
   color: #2980b9;
}

.post-stats {
  display: inline-block; 
  /**/
  margin-left: 15px;
}

.post-stats {
  position: relative;
  margin-right: 15px;
}

.icon-tags {
  background: url("post-challenge.png") no-repeat;
  position: absolute;
  left: -20px;
}

.icon-comments {
  background: url("post-challenge.png") no-repeat;
  position: absolute;
  left: -20px;
}

.post-author {
  margin-bottom: 5px;
}

.post-date {
  background: white;
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  vertical-align: middle;
  border-bottom: solid 5px #bdc3c7;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}

.post-type {
  background: #7f8c8d url("quotes.png") no-repeat center;
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  vertical-align: middle;
  border-bottom: solid 5px #bdc3c7;
  font-size: 15px;
  font-weight: bold;
}

.post-title {
  color: #2980b9;
  font-size: 20px;
  margin-bottom: 5px;
}

.aside {
  margin-right: 25px;
}

.post {
  display: flex;
  width: 300px;
}

.post-text {
  background: white;
  padding: 10px 15px;
  padding-right: 10px;
  width: 170px;
  border-bottom: 5px solid #bdc3c7;
}

.post-title,
.post-author, 
.post-text {
  transform: translate(-5px)
}
/*
Все размеры, отступы, координаты, размеры шрифтов (не заданные в body) кратны 5 или 10.
Адреса картинок:
quotes.png
post-challenge.png
Картинка «кавычки» выровнена по центру
*/