Мастерская: декоративные элементы. Есть замечания?

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;
}

.post-stats .icon {
width: 15px;
height: 15px;
position: absolute;
background: url("/assets/course14/post-challenge.png");
}

.post-stats .icon-tags{
left: 0;
top: 0;
}

.post-stats .icon-comments{
background-position: 20px 0;
left: 0px;
top: 0px;
}

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

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

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

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

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

.post-author a{
color: #2980b9;
text-decoration: none;
}
.post-stats{
display: inline-block;
position: relative;
padding-left: 20px;
margin-right: 10px;
}

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

.post-text{
background-color: #fff;
margin-right: 10px;
border-bottom: 5px solid #bdc3c7;
padding: 10px;
padding-left: 15px;
padding-bottom: 10px;
}

Координаты иконок внутри .post-stats одинаковые, почему не выносите в общие свойства?
Проанализируйте этот фрагмент:

padding: 10px;
padding-left: 15px;
padding-bottom: 10px;

Все ли три строки необходимы?

padding-bottom: 10px можно убрать за счет padding, спасибо)