@import url("press-release.css");


/* ==============================
   SEÇÃO news
================================= */

.news {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: url("../../images/newss/bkp-page-newss.jpg");
    background-position: bottom;
    background-size: cover;
    padding: 0 0 450px 0;
}

/* ==============================
   CONTAINER
================================= */

.news-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


/* ==============================
   CONTEÚDO
================================= */

.news-content {
    padding: 60px 30px 80px 30px;
}

.news-content h1 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #008c8c;
}


.news-intro {
    /*  max-width: 640px;*/
    font-size: 26px;
    line-height: 1.3;
    color: #333;
}


/* ==============================
   RESPONSIVO
================================= */

@media (max-width: 1100px) {

    .news-container {
        grid-template-columns: 50% 50%;
    }

    .news-content {
        padding-left: 30px;
    }

    .news-intro {
        font-size: 15px;
    }
}


/* Tablet */

@media (max-width: 768px) {

    .news-container {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .news-content {
        padding: 40px 25px 20px;
    }

    .news-content h1 {
        font-size: 28px;
    }

    .news-intro {
        max-width: 100%;
        font-size: 16px;
    }

}


/* Mobile */
@media (max-width: 480px) {
    .news-content {
        padding: 30px 20px;
    }

    .news-content h1 {
        font-size: 26px;
    }

    .news-intro {
        font-size: 15px;
    }

    .news-description h2 {
        font-size: 16px;
    }
}