/*
Theme Name: Box3TV Tema
Description: Tema customizado para Box3TV
Author: Flávio
Version: 1.0
Text Domain: box3tv-tema
*/

/* Container da Grade de Notícias */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
    background-color: #ffffff;
}

/* Estrutura do Cartão */
.card-noticia {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse */
.card-noticia:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(33, 30, 30, 0.08);
}

/* Imagem da Notícia */
.card-imagem img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Área de Texto */
.card-conteudo {
    padding: 20px;
}

/* Tag da Categoria */
.card-categoria a {
    color: #30abc3;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

/* Título da Notícia */
.card-titulo {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.card-titulo a {
    color: #211e1e;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Título ao passar o mouse */
.card-titulo a:hover {
    color: #30abc3;
}

/* Resumo da Notícia */
.card-resumo p {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}