Оцените код. Итоговое задание.

Весь вечер просидел над кодом. Вроде довел до 100%. Подскажите как можно его оптимизировать, если это требуется.

.post {
position: relative;
margin-left: 75px;
}

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

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

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

.post-stats {
position: relative;
display: inline-block;
margin-right: 10px;
padding-left: 20px;
}

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

.icon-tags {
position: absolute;
top: 0;
left: 0;
background: url("/assets/course14/post-challenge.png") no-repeat 0 0;
}

.icon-comments {
position: absolute;
top: 0;
left: 0;
background: url("/assets/course14/post-challenge.png") no-repeat -20px 0;

}

.post-text {
background: #fff;
color: #7f8c8d;
padding: 10px 15px;
width: 165px;
border-bottom: 5px solid #bdc3c7;
}

.post-date {
position: absolute;
top: 0;
left: -75px;
width: 55px;
height: 55px;
vertical-align: middle;
text-align: center;
line-height: 55px;
font-size: 15px;
font-weight: bold;
color: #7f8c8d;
background-color: #fff;
border-bottom: 5px solid #bdc3c7;
}

.post-type {
position: absolute;
top: 70px;
left: -75px;
width: 55px;
height: 55px;
border-bottom: 5px solid #bdc3c7;
background: #7f8c8d url("/assets/course14/quotes.png") no-repeat 50% 50%;;

}`