/* Estilo da lista de posts */





.blog-welcome {
    margin-bottom: 50px;
    text-align: center;
}

.blog-welcome h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
}

.post-preview {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee; /* Linha sutil separando os posts */
}

.post-date {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-preview h2 {
    margin: 10px 0;
}

.post-preview h2 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

.post-preview h2 a:hover {
    color: #ff9d00; /* Laranja de destaque ao passar o mouse */
}

.post-preview p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.read-more {
    color: #ff9d00;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}



