/* Styles blog list */

.post {
    display: flex;
    max-width: initial;
    flex-direction: row;
}

.post__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    margin: 5px 0 10px;     
}

.post__title-link {
    text-decoration: underline;
    color: #333333 !important;
    text-decoration: none;
}

.post__title-link:hover,
.post__title-link:active {
    color: #e96e50 !important;
}

.post__tag {
    color: #333333;
    opacity: 0.7;
}


.post__date {
    margin: 10px 0 0 !important;
    padding-bottom: 5px;
}

.post__summary {
    max-height: 48px;
    margin-bottom: 8px;
    overflow: hidden;
    font-size: 16px;
}

.post-image {
    margin-right: 15px;
    height: 170px;
    width: 300px;
    min-width: 300px;
    overflow: hidden;
}

.post-image__image {
    height: 170px;
}

.pagination-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.return {
    margin-bottom: 30px;
}

.post-filters {
    margin-bottom: 45px;
}

.post-filters__items {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    padding-left: 0; 
    list-style: none;
}

.post-filters__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.post-filters__radio {
    display: none;
}

.post-filters__radio + .post-filters__label > .post-filters__link {
    color: #333333;
}

.post-filters__radio:checked + .post-filters__label > .post-filters__link {
    color: #e96e50;
}

.post-filters__label {
    cursor: pointer;
}


/*  Styles blog Page */

.post-page__title {
    max-width: 900px;
}

.post-page__date {
    margin: 10px 0 0 !important;
}

.post-page__link .post-page__img {
    margin-bottom: 0;
}

.big-image .post-page__img {
    margin-bottom: 0;
}

/* news */

.news-image {
    margin-bottom: 20px;
}

.blog-p-body img {
    border-radius: 3px;
    margin: 20px 0;
    max-width: 900px;
}

.post-image__image {
    min-width: 300px;
}

@media (max-width: 600px) {
    .post {
        flex-direction: column;
    }
    
    .post-filters__items {
        flex-direction: column;
    }
}