aside.midia {
    height: 232px;
    min-height: inherit;
    padding-bottom: 0;
}

.news-detail {
    max-width: 1024px;
    position: relative;
}

#loading-news {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-self: center;
    box-sizing: border-box;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
}

.news-detail #wrap-detail-news {
    padding-top: 4rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
}

.news-detail #wrap-detail-news .well-created {
    margin-bottom: 2rem;
    color: #a7a7a7;
    font-size: 1rem;
}

.news-detail #wrap-detail-news #description,
.news-detail #wrap-detail-news #integra {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.news-detail #wrap-detail-news #description p {
    margin: 0.5rem 0;
}

.news-detail #wrap-detail-news #integra a {
    color: #585858;
    text-decoration: underline !important;
}

.news-detail #wrap-detail-news #integra a:hover {
    color: #c7a543;
}

#list-news {
    display: flex;
    flex-flow: column nowrap;
    flex: 0 50%;
    padding: 8rem 2rem;
    position: relative;
}

#list-news ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding-top: 4rem;
}

#list-news ul li {
    flex: calc(440px - 1rem);
    max-width: calc(440px - 1rem);
    margin: 1rem;
    background-color: #ffffff;
    -webkit-box-shadow: inset 0px 0px 0px 5px rgba(227, 227, 227, 1);
    -moz-box-shadow: inset 0px 0px 0px 5px rgba(227, 227, 227, 1);
    box-shadow: inset 0px 0px 0px 5px rgba(227, 227, 227, 1);
}

#list-news ul li:hover {
    -webkit-box-shadow: inset 0px 0px 0px 5px rgba(199, 165, 67, 1);
    -moz-box-shadow: inset 0px 0px 0px 5px rgba(199, 165, 67, 1);
    box-shadow: inset 0px 0px 0px 5px rgba(199, 165, 67, 1);
}

#list-news ul li a {
    display: block;
}

#list-news ul li a div {
    display: flex;
    flex-flow: column nowrap;
    padding: 2rem;
    box-sizing: border-box;
}

#list-news ul li a div label {
    margin-bottom: 0.6rem;
    color: #a7a7a7;
    font-size: 1rem;
}

#list-news ul li a div span {
    font-family: 'Libre Baskerville', serif;
    color: #222;
    font-size: 1.45rem;
}

#list-news .btn-load-news {
    margin: 4rem auto 0 auto;
}

@media all and (max-width: 1366px) {
    #list-news {
        padding: 4rem 2rem;
    }
    #list-news ul {
        justify-content: space-around;
    }
    #list-news ul li {
        max-width: calc(50% - 1rem);
    }
}

@media all and (max-width: 1024px) {
    #list-news {
        padding: 4rem 2rem;
    }
    #list-news ul {
        justify-content: center;
        padding-top: 2rem;
    }
    #list-news ul li {
        max-width: calc(100% - 1rem);
    }
}

@media all and (max-width: 930px) {
    #list-news {
        padding: 4rem 2rem;
    }
    #list-news ul {
        justify-content: center;
        padding-top: 2rem;
    }
    #list-news ul li {
        max-width: calc(100% - 1rem);
    }
}