.news-page .title-page {
    margin-top: 50px;
}

.news-page .title-page h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--cor-black);
}

.news-page .title-page h4 {
    font-size: 1.2rem;
    color: var(--cor-gray);
}

.news-page .section-news {
    margin-top: 50px;
    padding: 50px 0px;
    border-top: solid 1px #e8e8e8;
    background-color: var(--cor-light-blue);
    background-color: #fff;
}

.news-page .section-news .left-feature {
    display: flex;
    gap: 20px;
    padding-right: 20px;

}

.news-page .section-news .left-feature .card-text {
    width: 40%;
}

.news-page .section-news .left-feature .card-text .highlight {
    background-color: var(--cor-yellow-one);
    text-transform: uppercase;
    font-size: 0.7rem;
    color: var(--cor-black);
    display: inline;
    padding: 3px 7px;
    border-radius: 2px;
}

.news-page .section-news .left-feature .card-text .title {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--cor-black);
}

.news-page .section-news .left-feature .card-text .title:hover {
    text-decoration: underline;
    cursor: pointer;
}

.news-page .section-news .left-feature .card-text .description {
    font-size: 14px;
}


.news-page .section-news .left-feature .card-text .date-news {
    border-left: var(--cor-yellow-one) double 5px;
    font-size: 0.7rem;
    color: #000;
    display: inline-block;
    padding: 3px 7px;
}

.news-page .section-news .left-feature .card-text .date-news span {
    background-color: var(--cor-yellow-one);
    padding: 3px;
    color: #000;
    margin-left: 10px;
    border-radius: 3px;
}

.news-page .section-news .left-feature .card-image {
    width: 490px;
}

.news-page .section-news .left-feature .card-image img {
    width: 100%;
    height: 300px;
    border-radius: 3px;
}


.news-page .section-news .features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.news-page .section-news .features .card-news {
    width: 250px;
    background-color: #fff;
}

.news-page .section-news .features .card-news .card-image img {
    width: 100%;
    height: 200px;
    border-radius: 3px;
}

.news-page .section-news .features .card-news .date-news {
    border-left: var(--cor-yellow-one) double 5px;
    font-size: 0.7rem;
    color: #000;
    display: inline-block;
    padding: 3px 7px;
    margin-top: 10px;
}

.news-page .section-news .features .card-news .date-news span {
    background-color: var(--cor-light-blue-3);
    padding: 3px;
    color: #fff;
    margin-left: 10px;
    border-radius: 3px;
}

.news-page .section-news .features .card-news .card-title {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    display: block;
}

.news-page .section-news .features .card-news .card-title:hover {
    text-decoration: underline;
    cursor: pointer;
}

.news-page .section-news .others-news {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    border-top: solid 1px #e8e8e8;
    margin-top: 20px;
    padding: 30px 0px;
}

.news-page .section-news .others-news .card-news {
    flex: 0 0 23%;
    /* 4 cards por linha com margem */
    box-sizing: border-box;
    background-color: #fff;
}

.news-page .section-news .others-news .card-news .card-image img {
    width: 100%;
    height: 200px;
    border-radius: 3px;
}

.news-page .section-news .others-news .card-news .date-news {
    border-left: var(--cor-yellow-one) double 5px;
    font-size: 0.7rem;
    color: #000;
    display: inline-block;
    padding: 3px 7px;
}

.news-page .section-news .others-news .card-news .date-news span {
    background-color: var(--cor-light-blue-3);
    padding: 3px;
    color: #fff;
    margin-left: 10px;
    border-radius: 3px;
}


.news-page .section-news .others-news .card-news .card-title {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    display: block;
}

.news-page .section-news .others-news .card-news .card-title:hover {
    text-decoration: underline;
    cursor: pointer;
}

.news-page .section-news .others-news .card-news .card-description {
    margin-top: 10px;
    font-size: 14px;
}