Испытание: анонс поста 18/18. Выполнено полностью, но есть нюанс

Задание выполнено не совсем по правилам кратности 5.
Вот в этом куске кода:
.post-text{
background-color:#ffffff;
border-bottom: 5px solid #bdc3c7;
width:165px;
height:100px;
padding:10px 15px;
padding-bottom:8px;

}
без последней строчки всё выглядит так:
https://htmlacademy.ru/upload/files/task_538/dif_1e35eaabd733545918c8e74097fb4dc9.png?0.00826551345879789

в чем ошибка?
вот весь код:
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;

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

}
.post{
position:relative;
padding-left:75px;
}
.post-title{
color:#2980b9;
font-size:20px;

}
.post-type, .post-date{
position:absolute;
border-bottom:5px solid #bdc3c7;
width:55px;
height:55px;
left:0;
}

.post-date{
top:0;
color:#7f8c8d;
font-size:15px;
text-align:center;
vertical-align:middle;
font-weight:bold;
background-color:#ffffff;
line-height:55px;
}
.post-type{
top:70px;
background: url(’/assets/course14/quotes.png’) no-repeat;
background-color:#7f8c8d;
background-position:center;

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

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

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

}

.icon-comments {
background-position:-20px 0;

}

Уберите высоту у .post-text и отступ снизу не понадобится.