/* Cards */
.page-news .cards .card-horizontal .card-link {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
}
.page-news .cards .card-horizontal .card-link img {
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.page-news .cards .card-horizontal .card-link:hover img {
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
}
@media(min-width: 992px) {
    .page-news .cards .card-horizontal { display: flex; gap: 3rem; }
}

/* Paginação */
.page-news .pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: .9rem;
    color: #848484;
    padding: 0;
    border-radius: 5px;
}
.page-news .pagination .page-item .page-link:hover,
.page-news .pagination .page-item .page-link:focus,
.page-news .pagination .page-item.active .page-link {
    background-color: #012d5c;
    border-color: #012d5c;
    color: #ffffff;
    box-shadow: none;
}

/* Leia Mais */
.read-more {
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    color: #000000;
}
.read-more::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    width: 36px;
    background: #e6501e;
    border-radius: 0.215rem;
    transition: width .3s;
}
.read-more:hover::before {
    width: 100%;
}

/* Conteúdo da Notícia */
.page-news .news-content {
    max-width: 950px;
    margin: 0 auto;
}
.page-news .news-content .news-description p {
    color: #3b3b3b;
    text-align: justify;
    margin-bottom: 1.5rem;
}
.page-news .news-content .news-description p.subtitle {
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-top: 1rem;
}