Испытание: строим сетку - сдвиг строк Left, Main, Right вниз

Объясните, пожалуйста, почему в трёх центральных колонках у меня не получается поднять указанные строки выше, как на макете?

Испытание: строим сетку

Header

Menu

Promo 1

Promo 2

<div class="features">
  <div class="layout-positioner">
    <div class="layout-column">
      <div class="feature">
        <p>Left</p>
      </div>
    </div>
    <div class="layout-column layout-column-center">
      <div class="feature">
        <p>Main</p>
      </div>
    </div>
    <div class="layout-column">
      <div class="feature">
        <p>Right</p>
      </div>
    </div> 
  </div>
</div>

<div class="footer">
  <div class="layout-positioner">
    <div>
      <p>Footer</p>
    </div>
   </div> 
</div>

html,
body {
margin: 0;
padding: 0;
}

body {
width: 450px;
height: 335px;

font-size: 10px;
font-family: “Arial”, sans-serif;
color: white;
}
.header{
padding-top:1px;
background-color: #34495e;
margin-bottom:10px;
min-height:160px;
}
.header-top{
background-color: #c0392b;
min-height: 35px;
}
.header-menu{
background-color:#3498db;
height:35px;
padding: 0px 50px;
margin-top: 10px;
min-height: 25px;
}
.header-promo{
background-color: #c0392b;
width: 160px;
min-height:50px;
}
.promo-1{
float: left;
}
.promo-2{
float: right;
}
.features{
margin-bottom:0px;
}
.footer{
background-color: #34495e;
min-height: 35px;
}
.layout-positioner {
width: 350px;
margin: 0px auto;
/border: 2px dashed #3498db;/
}
.layout-positioner::after {
content: “”;
display: table;
clear: both;
/border: 2px dashed #3498db;/
}
.features .layout-column{
float: left;
background-color:#3498db;
width: 70px;
height: 110px;
margin-right: 10px;
}

.features .layout-column-center{
width: 190px;
}

.features .layout-column:last-child {
margin-right: 0;
}
.feature {
margin:0px;
}
.layout-column p{
padding-top:0px;
}
p {
padding: 5px;
}
.clearfix::after {
content: “”;
display: table;
clear: both;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498db – синий
*/

Изменила в .layout-positioner::after
в свойстве content вид кавычек и блоки вылезли из футера.