.center-area p:first-child {
    margin-top: 0px;
}

.center-area p:last-child {
    margin-bottom: 0px;
}

.center-area a {
    color: #2e83c6;
    text-decoration: none;
}

/* Itens Relacionados */
.center-area .posts-relateds-area {
    margin-top: 20px;
    width: 100%;
}

.center-area .posts-relateds-area .area-title {
    width: 100%;
}

.center-area .posts-relateds-area .area-title h3 {
    margin: 0px;
}

.center-area .posts-relateds-area .area-title h3 svg {
    color: var(--color_font_title);
}

.center-area .posts-relateds-area .posts-list {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    width: 100%;
}

@media (min-width: 700px) {
    .center-area .posts-relateds-area .posts-list {
        width: calc(100% + 10px);
        margin-left: -10px;
    }
}

.center-area .posts-relateds-area .posts-list article {
    width: calc((100% / 4) - 20px);
    height: 200px;
    padding: 10px 10px;
}

.center-area .posts-relateds-area .posts-list article a {
    display: block;
    color: inherit;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.center-area .posts-relateds-area .posts-list article a .img-area {
    width: 100%;
    height: 130px;
    background-color: #e2e2e2;
    position: relative;
    overflow: hidden;
}

.center-area .posts-relateds-area .posts-list article a .img-area .img-resizable.enable-zoom {
    width: 100%;
    height: 100%;
    transition: 0.5s all;
}

.center-area .posts-relateds-area .posts-list article a .img-area .img-resizable.enable-zoom img {
    transition: 0.5s all;
}

.center-area .posts-relateds-area .posts-list article a .post-infos {
    margin-top: 5px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
}

.center-area .posts-relateds-area .posts-list article a:hover .post-infos {
    color: #191919;
}

.center-area .posts-relateds-area .posts-list article a .post-infos .post-title {

}

/* Tópicos */
.topicos-area {
    margin-top: 20px;
    width: 100%;
}

.topicos-area .area-title {
    width: 100%;
}

.topicos-area .area-title h3 {
    margin: 0px;
}

.topicos-area .area-title h3 svg {
    color: #0487ef;
}

.topicos-area .tags-list {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    width: 100%;
}

.topicos-area .tags-list .tag-item {
    padding: 4px 4px;
}

.topicos-area .tags-list .tag-item a {
    padding: 4px 10px;
    border: 1px solid #0487ef;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    color: #0487ef;
}

.topicos-area .tags-list .tag-item a:hover {
    background-color: #0487ef;
    color: white;
}

@media (max-width: 900px) {
    .center-area .posts-relateds-area .posts-list {
        flex-flow: column;
    }

    .center-area .posts-relateds-area .posts-list article {
        height: fit-content;
        width: 100%;
        margin-top: 14px;
    }

    .center-area .posts-relateds-area .posts-list article:first-child {
        margin-top: 0px !important;
    }

    .center-area .posts-relateds-area .posts-list article a .img-area {
        height: 220px;
    }
}