#noticias-page {
    padding: 120px 16px;
}

#noticias-page .subtitles {
    color: white;
    font-family: Inter;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}

#noticias-page .destaque-noticia {
    height: 100%;
    width: 100%;
    height: 56vh;
    min-height: 200px;
    border-radius: 8px;
}

#noticias-page .noticia-1 {
    width: 100%;
    height: 28vh;
    min-height: 100px;
}

#noticias-page .destaque-noticia {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
}

#noticias-page .bg-image,
#noticias-page .foreground-image {
    width: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    height: 56vh;
    min-height: 200px;
    border-radius: 8px;
}

#noticias-page .bg-image:hover,
#noticias-page .foreground-image:hover {
    opacity: 0.8;
    scale: 1.2;
    transition: 0.5s;
}

#noticias-page .descricao {
    padding: 32px;
    position: absolute;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-flow: column;
}

#noticias-page .descricao .titulo {
    color: #fff;
    font-family: Inter;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#noticias-page .descricao .base-buttons {
    background: white;
    color: black;
    display: inline-flex;
    width: 80px;
}

#noticias-page .noticia-1 {
    cursor: pointer;
}

#noticias-page .noticia-1:hover {
    opacity: 0.8;
    transition: 0.5s;
}

#noticias-page .noticia-1 img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
}

#noticias-page .noticia-1 .d-flex {
    margin-top: 4px;
    align-items: center;
    gap: 4px;
    color: white;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 18px */
}

#noticias-page .noticia-1 .titulo {
    color: white;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.225px;
    margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
    #noticias-page .descricao {
        padding: 16px;
    }

    #noticias-page .descricao .titulo {
        font-size: 20px !important;
        margin-bottom: 8px;
    }

    #noticias-page {
        padding: 60px 8px;
    }
}

a {
    text-decoration: none;
}
