.content{
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
section.na-midia {
    padding-top: 42px;
    margin-top: 10px;
}
section.na-midia .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
section.na-midia .current_post{
    flex-basis: 65%;
    width: 650px;
    color: var(--orange);
}
section.na-midia .current_post .image{
    width: 100%;
    height: auto;
    display: inline-flex;
    overflow: hidden;
    background-color: var(--orange);
    margin-bottom: 10px;
}
section.na-midia .current_post .image.video{
    height: 450px;
}
section.na-midia .current_post .image iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.na-midia .current_post .image img{
    width: 100%;
    height: auto;
    object-fit: cover !important;
}
section.na-midia .current_post .post_header {
    margin-bottom: 40px;
}
section.na-midia .current_post .post_header h2{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 0.8;
    margin: 10px 0;
}
section.na-midia .current_post .post_header .post_info{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 10px;
}
section.na-midia .current_post .post_header .post_info div{
    color: var(--cinza-4df);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}
section.na-midia .current_post .post_content {
    color: var(--cinza-4df);
}
section.na-midia .current_post .post_content ul,
section.na-midia .current_post .post_content ol{
    padding-left: 18px;
}
section.na-midia .current_post .post_content ol li strong,
section.na-midia .current_post .post_content ul li strong{
    font-weight: 600;
}
section.na-midia .current_post .post_content img{
    max-width: 400px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}
section.na-midia .current_post .post_content blockquote {
  border-left: 10px solid #3b3b3b;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
section.na-midia .current_post .post_content blockquote:before {
  color: #3b3b3b;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
section.na-midia .current_post .post_content blockquote p {
  display: inline;
}
section.na-midia .current_post .post_header .post_info div svg{
    height: 17px;
    fill: var(--azul);
}
.box-dropdown{
    position: absolute;
    z-index: 9999;
    top: calc(100% + 12px);
    right: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    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;
}
section.na-midia article{
    flex-basis: 30%;
}
article .header_latest_posts{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: start;
    align-items: center;
    border-bottom: 5px solid var(--orange);
    margin-bottom: 28px;
}
article .header_latest_posts h3{
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 15px;
    width: 100%;
    height: 48px;
    background-color: var(--orange);
    font-size: 20.83px;
    font-weight: 500;
    color: #fff;
    border-radius: 9px 9px 0 0;
}
article .header_latest_posts .wrapper-input{
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    transform: translateY(4px);
    width: 100%;
}
article .header_latest_posts .wrapper-input input{
    color: var(--orange);
    font-size: 16.67px;
    width: 100%;
    height: 40px;
    padding-right: 40px;
    border: none;
    outline: none;
    background: transparent;
}
article .header_latest_posts .wrapper-input input::placeholder{
    color: var(--azul);
}
article .header_latest_posts .wrapper-input svg{
    position: absolute;
    right: 0px;
    width: 30px;
    fill: var(--azul);
}
article .latest_posts {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
article .latest_posts .post{
    display: flex;
    gap: 10px;
    color: var(--orange);
}
article .latest_posts .post .image{
    width: 130px;
    height: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--orange);
}
article .latest_posts .post .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
article .latest_posts .post .text{
    width: 200px;
}
article .latest_posts .post .text h3{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
article .latest_posts .post .text h4{
    font-size: 13px;
    color: var(--cinza-4df);
}

@media(max-width: 768px){
    .breadcrumb h3 {
        align-items: start;
    }
    .breadcrumb h3 a{
        text-wrap: nowrap;
    }
    .breadcrumb h3 strong{
        min-width: 80px;
    }
    section.na-midia .wrapper{
        row-gap: 100px;
    }
    section.na-midia .current_post{
        flex-basis: 100%;
    }
    section.na-midia .current_post .image.video{
        height: 220px;
    }
    section.na-midia article{
        flex-basis: 100%;
    }
    section.na-midia .current_post .post_content img{
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
    section.link-footer .wrapper{
        text-align: center;
    }
}