18/18 99%

Отступ между “интесивы,” и “программа” буквально 1 пиксель, не знаю как решить…
http://pp.screenshotlink.ru/v4048/164/8MrQISWsItM.jpg
html,
body {
margin: 0;
padding: 0;
}

body {
width: 280px;
min-height: 250px;
padding-top: 50px;
padding-left: 10px;
padding-right: 10px;
font-size: 12px;
font-family: “Arial”, sans-serif;
line-height: 1.2;
color: #7f8c8d;
background: #ecf0f1;
}

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

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

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

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

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

}

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

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

}

.post-stats a{
display:inline-block;
text-decoration: none;
color: #2980b9;
}

.post-stats .icon{
position: absolute;
left:0;
width: 15px;
height: 15px;
display:inline-block;

}

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

.icon-tags{

background: url("/assets/course14/post-challenge.png") 0 0 no-repeat;   

}

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

.post-text{
width:165px;
background: #ffffff;
padding: 10px 15px;
border-bottom: 5px solid #bdc3c7;

}

Все недочеты в этом фрагменте. Не надо делать ссылки блочно-строчными. Для иконок эта запись тоже лишняя, учитывая, что вы задаете абсолютное позиционирование. Размеры иконок дублировать не надо.

Спасибо!