﻿@charset "UTF-8";

/* =====================================================
   NOTÃCIAS
===================================================== */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.noticia-card {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition-normal);
    border-top: 3px solid var(--green-primary);
}

.noticia-card:hover {
    background: #151515;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.noticia-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: var(--text-light);
}

.noticia-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
    color: var(--text-gray);
}

.noticia-card .date {
    color: var(--green-primary);
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 768px) {
    .noticias-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .noticia-card {
        padding: 15px;
    }
}
