/* Стили для боковой колонки */
/* правый контейнер */
aside {
   width: 33%;
   float: right;
}
/* блок для виджетов */
.widget {
   padding: 20px 15px;

   font-size: 13px;
   margin-bottom: 30px;
   box-shadow: 3px 3px 1px rgba(0, 0, 0, .05);
}
.widget-title {
   font-size: 18px;
   padding: 10px;
   margin-bottom: 20px;
   text-align: center;
   border: 2px solid #ccc;
   box-shadow: 3px 3px 0 0 #ccc;
}
.widget-category-list li {
   border-bottom: 1px solid #fff;
   padding: 10px 0;
   color: #c6c6c6;
   font-style: italic;
}
.widget-category-list li:last-child {
   border-bottom: none;
}
.widget-category-list li a {
   color: #626262;
   margin-right: 6px;
   font-style: normal;
}
.widget-category-list li a:before {
   content: "\f105";
   display: inline-block;
   font-family: 'FontAwesome';
   margin-right: 10px;
   color: #c6c6c6;
}
.widget-posts-list li {
   border-top: 1px solid #fff;
   padding: 15px 0;
}
.widget-posts-list li:nth-child(1) {
   border-top: none;
}
.post-image-small {
   width: 180px;
   height: 55px;
   float: left;
   padding: 3px;
   margin-left: 8%;
   margin-right: auto;
   margin-top: 20px;
   background: #cfcfcf;
   border-radius: 7px; /* Радиус скругления */
}
.post-image-small:hover {
    background: #fff;
}
.widget-post-title {
   float: left;
}
/* форма подписки */
#subscribe {
   position: relative;
   width: 100%;
   padding: 15px 0;
}
#subscribe input {
   width: 100%;
   display: block;
   float: left;
   border: 2px solid #fff;
   padding: 0 0 0 10px;
   height: 40px;
   position: relative;
   outline: none;
   color: #9E9C9C;
   font-style: italic;
}
#subscribe button {
   padding: 0 15px;
   background: transparent;
   height: 40px;
   border: none;
   position: absolute;
   right: 0;
   color: #EF5A42;
   cursor: pointer;
   font-size: 18px;
}
#subscribe input:focus+button {
   background: #EF5A42;
   color: white;
}

@media screen and (max-width: 480px) {
   /* отменяем обтекание для логотипа и выравниваем по центру*/
   .post-image-small {
      float: none;
      margin: 0 auto 15px;
      display: table;
   }
}
