Испытание: анонс поста 18/18

Здравствуйте. Оцените пожалуйста код. 100%, но мне кажется его можно усовершенствовать или изменить:

<html lang="ru">
  <head>
    <meta charset="utf-8">
    <title>Испытание: анонс поста</title>
    <link rel="stylesheet" href="style.css">
  </head>
  <body>
    <div class="post">
      <div class="post-date">13.09</div>
      <div class="container"><div class="post-title">Интенсив: программа</div>
      
      <div class="post-type"></div>
      <div class="post-author">
        Автор: <a href="#">HTML Academy</a>
      </div>
      <div class="post-stats">
        <div class="icon icon-tags"></div>
        <a href="#">интенсив</a>,
        <a href="#">программа</a>
      </div>
      <div class="post-stats">
        <div class="icon icon-comments"></div>
        <a href="#">5</a>
      </div>
      <div class="post-text">Работа над интенсивом идёт полным ходом. Мы нашли крутых людей в команду и решили ещё кучу задач. Но сегодня я подробнее расскажу о работе над программой интенсива.</div></div>
    </div>
   </body>
</html>

CSS:

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 {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 15px;
  background: url('post-challenge.png') 0 0;
}

.post-title {
  font-size: 20px;
  color: #2980b9; 
  margin-bottom: 5px;
  }
.post-date {
  display: block;
  background-color: white;
  font-weight: bold;
  font-size: 15px;
  width: 55px;
  line-height: 55px;
  height: 55px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 5px solid #bdc3c7;
  }
.post-date::after {
  content: "";
  display: block;
  
  margin-top: 15px;
  background: #7f8c8d url("quotes.png") no-repeat 50% 50%;
  width: 55px;
  height: 55px;
  border-bottom: 5px solid #bdc3c7;
  }
.container {
  position: absolute;
  display: block;
  left: 85px;
  top: 50px;
  }
.post a {
  color: #2980b9;
  text-decoration: none;
    }
.post-stats  {
 display: inline-block;
 margin: 5px 10px 0 20px;
  
  }
.post-stats .icon-tags {
  left: 0px;
  }
.post-stats .icon-comments {
  left: 152px;
  background-position: -20px 0;
  }

.post-text {
  display: block;
  width: 165px;
  background-color: white;
border-bottom: 5px solid #bdc3c7;
 padding: 10px 15px;
  }

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

Я добавил один контейнер в разметке, чтобы позиционировать удобнее было,всё остальное в СSS