Испытание: анонс поста 18/18 100% нужна критика, в .post-text не получилось условие "кратно 5 или 10"

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 {
margin-left: 75px;
padding-top: 0;

}

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

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

.post-type {
position: absolute;
top: 120px;
left: 10px;
width: 55px;
height: 55px;
background: #7f8c8d url(“quotes.png”) no-repeat 50%;
border-bottom: 5px solid #bdc3c7;
}

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

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

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

.post-stats .icon {
width: 15px;
height: 15px;
background: url(“post-challenge.png”) no-repeat;
}

.post .icon-tags {
position: absolute;
top: 0;
left: -20px;
}

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

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

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

height: 98px;

.post-date и .post-type позиционированы относительно body:
добавьте position: relative; в .post,
margin-left: 75px; замените на padding-left: 75px;,
поправьте координаты…