

.news-page {
    min-height: auto;
    padding-bottom: 20%;
    text-align: justify;

}



.news-title {
    font-size: 32px;
    color: #222;
}



/* CONTAINER */
.news-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
}



/* CARD */
.news-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.25s ease;
    text-align: justify;
}



.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}



/* TEXTO */
.news-card-title {
    font-size: 22px;
    margin-bottom: 6px;
    color: #111;
}



.news-card-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}



.news-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}