.content{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
section.na-midia {
    padding-top: 42px;
    margin-top: 10px;
}
section.na-midia .content{
    max-width: 1092px;
}
section.na-midia .top-news{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid var(--orange);
    margin-bottom: 28px;
}
section.na-midia .top-news h3{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 48px;
    background-color: var(--orange);
    font-size: 20.83px;
    font-weight: 500;
    color: #fff;
    border-radius: 9px 9px 0 0;
}
section.na-midia .top-news .wrapper-input{
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    transform: translateY(4px);
    width: 280px;
}
section.na-midia .top-news .wrapper-input input{
    color: var(--orange);
    font-size: 16.67px;
    width: 228px;
    height: 40px;
    border: none;
    outline: none;
    background: transparent;
}
section.na-midia .top-news .wrapper-input input::placeholder{
    color: var(--azul);
}
section.na-midia .top-news .wrapper-input svg{
    position: absolute;
    left: -40px;
    width: 30px;
    fill: var(--azul);
}
section.na-midia .content_posts{
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}
.box-dropdown{
    position: absolute;
    z-index: 9999;
    top: calc(100% + 12px);
    right: 0;
    display: flex;
    flex-direction: column;
    width: 320px;
    background-color: #fff;
    border: 3px solid var(--azul);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
}
.box-dropdown a{
    display: flex;
    align-items: center;
    padding: 10px 4px;
    padding-left: 10px;
    gap: 7px;
    color: var(--cinza-4df);
}
.box-dropdown a:hover{
    background-color: #fdb46f5b !important;
}
.box-dropdown a:nth-child(odd){
    background-color: rgba(182, 120, 70, 0.11);
}
.box-dropdown a svg{
    width: 30px;
    height: 25px;
}
.content_posts {
    margin-bottom: 30px;
    min-height: 400px;
}
.content_posts .post{
    width: 325px;
    height: fit-content;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
}
.content_posts .post .image{
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 190px;
    background-color: var(--orange);
}
.content_posts .post .image img{
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}
.content_posts .post .text {
    background-color: #F2EEEB;
}
.content_posts .post .text .body,
.content_posts .post .text .footer{
    color: var(--azul);
    margin: 0 !important;
    padding: 15px 10px;
    display: flex;
    align-items: center;
}
.content_posts .post .text .body h3{
    font-size: 16.67px;
    font-weight: 600;
    min-height: 60px;
}
.content_posts .post .text .footer{
    padding: 10px;
    gap: 7px;
    border-top: 1px solid rgba(0, 0, 0, 0.11);
}
.content_posts .post .text .footer h4{
    font-size: 14px;
    font-weight: 500;
}
.content_posts .post .text .footer h3{
    font-weight: 600;
    font-size: 14px;
}
section.na-midia .btn_more_posts{
    width: 170px;
    height: 40px;
    cursor: pointer;
    background-color: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
}
section.na-midia .btn_more_posts:hover{
    filter: brightness(1.3);
}
@media(max-width: 768px) {
    section.na-midia .top-news {
        align-items: start;
        flex-direction: column;
        row-gap: 30px;
    }
    section.na-midia .top-news h3{
        width: 100%;
    }
    section.na-midia .top-news .wrapper-input {
        transform: none;
        width: 100%;
    }
    section.na-midia .top-news .wrapper-input svg{
        left: inherit;
        right: 0;
        font-size: 24px;
    }
    section.na-midia .top-news .wrapper-input input{
        width: 100%;
        padding-left: 0px;
        padding-right: 35px;
    }
    .box-dropdown {
        width: 100%;
    }
}