.page-container{
    padding: 0 !important;
}

#leitura-noticia{
    padding: 60px 0;

    .data-autor {
        display: flex;
        margin-top: 30px;
        justify-content: center;

        p{
            display: flex;
            font-weight: 400;
            font-size: 18px;
            color: #FF0000;
            line-height: 120%;
            margin: 0 10px;
            align-items: center;

            img{
                margin-right: 8px;
            }
        }
    }

    h1{
        font-weight: 500;
        font-size: 40px;
        line-height: 135%;
        color: var(--azul);
        margin-bottom: 40px;

    }
    img.img-destaque {
        width: 100%;
        height: 600px;
        object-fit: cover;
        margin-bottom: 40px;
    }

    .the-content {
        p{
            font-weight: 400;
            font-size: 18px;
            line-height: 140%;
            text-align: justify;
            color: #5F5D5D;
        }
        h3{
            font-weight: 500;
            font-size: 32px;
            line-height: 135%;
            color: var(--azul);
            text-transform: none;

        }

    }


    .box-compartilhar {
        border: 1px solid #000066;
        border-radius: 10px;
        padding: 16px 24px;

        h4 {
            font-weight: 500;
            font-size: 28px;
            line-height: 135%;
            text-align: center;
            color: #000066;
        }

        ul{
            display: flex;
            justify-content: space-evenly;
            padding: 0;

            li{
                list-style-type: none;
                border-top: #F1F1F1 solid;
            }
        }
    }
            
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #leitura-noticia {
        .data-autor {
            justify-content: center;
            flex-direction: column;
            align-items: center;

            p {
                margin-bottom: 16px;
            }
        }
    }
    #leitura-noticia {
        .box-compartilhar {
            margin: 24px 0 16px;
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) { 
    #leitura-noticia {
        .data-autor {
            justify-content: center;
            flex-direction: column;
            align-items: center;

            p {
                margin-bottom: 16px;
            }
        }
        .img-destaque {
            height: 300px !important;
        }
        .box-compartilhar {
            margin: 35px 0;
        }
    }

    
}
