#md_article_ocb {
    max-width: 100%; /* Garante que não ultrapasse 100% */
    margin-left: auto;
    margin-right: auto;
}

#md_article_ocb .area-artigo {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #DCDCDC;
}

#md_article_ocb .area-artigo:last-child {
    border-bottom: none; /* Remove a borda inferior da última div */
}

#md_article_ocb .img-artigo {
    width: 510px; /* Limita a largura da imagem */
}

#md_article_ocb .info-artigo {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#md_article_ocb .cat-dt {
    color: #0C1249;
    font: normal normal 600 10px/18px Inter;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-content: center;
}

#md_article_ocb .info-data {
    position: relative;
    padding-bottom: 5px; /* Ajusta o espaço entre a data e a linha */
}

#md_article_ocb .info-data::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px; /* Ajusta o tamanho da linha */
    height: 2px; /* Ajusta a espessura da linha */
    background-color: #171c66; /* Cor da linha */
}

#md_article_ocb .cat-dt .social-share {
    display: flex;
    gap: 5px;
}

#md_article_ocb .cat-dt .btn-social {
    border: 1px solid #171c66;
    background-color: #ffffff;
    color: #171c66;
    padding: 6px;
    display: flex;
    flex-direction: row;
    flex: 50%;
}

#md_article_ocb .cat-dt .btn-social:hover {
    border: 1px solid #171c66;
    background-color: #171c66;
    color: #ffffff;
}

#md_article_ocb .info-categoria {
    margin-right: 15px; /* Espaçamento entre a categoria e a data */
}

#md_article_ocb h4 {
    font: normal normal 400 16px/18px "Intro Regular";
    color: #18186A;
    margin-bottom: 15px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 32px;
    flex-grow: unset; /* Faz o título ocupar o máximo de espaço disponível */
}

#md_article_ocb .artigo-introtext {
    font: normal normal 400 12px/17px Inter;
    color: #00166B;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 24px;
    margin-bottom: 15px; /* Espaçamento entre a data/categoria e o título */
}

#md_article_ocb .img-artigo img {
    width: 370px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
}

#md_article_ocb .mod-pagination {
    padding: 10px;
    font-style: normal;
    font-variant: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    font-family: "Intro Light";
    letter-spacing: 0;
    color: #000000;
    width: 100%;
    max-width: 1110px;
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 55px auto 0 auto  !important;
}

#md_article_ocb .mod-pagination .mod-pagination-inicio,
#md_article_ocb .mod-pagination .mod-pagination-anterior,
#md_article_ocb .mod-pagination .mod-pagination-nummenor,
#md_article_ocb .mod-pagination .mod-pagination-nummenor,
#md_article_ocb .mod-pagination .mod-pagination-proximo,
#md_article_ocb .mod-pagination .mod-pagination-final {
    font-weight: bold !important;
}

#md_article_ocb .mod-pagination .mod-pagination-inicio,
#md_article_ocb .mod-pagination .mod-pagination-anterior,
#md_article_ocb .mod-pagination .mod-pagination-proximo,
#md_article_ocb .mod-pagination .mod-pagination-final {
    color: #18186A !important;
    cursor: pointer !important;
}

#loading-busca {
    text-align: center !important;
    font-style: normal !important;
    font-variant: normal !important;
    font-weight: normal !important;
    font-size: 18px !important;
    line-height: 16px !important;
    font-family: Inter !important;
    letter-spacing: 0;
    color: #00166B;
    opacity: 1;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 20px;
}

#loading-busca img {
    width: 150px !important;
    margin-bottom: 50px;
}

#loading-busca #loading-text {
    flex: 100% !important;
}

.custom-swal {
    border-radius: 20px !important;
}

@media screen and (max-width: 992px) {
    #md_article_ocb {
        width: 100%;
    }

    #md_article_ocb .img-artigo {
        width: 150px;
    }

    #md_article_ocb .img-artigo img {
        width: 150px;
        object-fit: cover;
        object-position: 5% center;
    }

    #md_article_ocb h4 {
        -webkit-line-clamp: 3;
        min-height: 48px;
    }
}