/* Cards dos posts */
.home article,
.blog article {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-bottom: 35px;
}

/* Efeito ao passar o mouse */
.home article:hover,
.blog article:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}

/* Imagens proporcionais, sem corte */
.home article img,
.blog article img {
    width: 45% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    margin: 25px auto 10px auto;
    border-radius: 10px;
}

/* Conteúdo interno */
.home article .entry-content,
.blog article .entry-content,
.home article .post-content,
.blog article .post-content {
    padding: 25px 35px;
}

/* Títulos */
.home article h2,
.blog article h2,
.home article .entry-title,
.blog article .entry-title {
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 18px;
}

.home article h2 a,
.blog article h2 a,
.home article .entry-title a,
.blog article .entry-title a {
    color: #1d3557;
    text-decoration: none;
}

.home article h2 a:hover,
.blog article h2 a:hover,
.home article .entry-title a:hover,
.blog article .entry-title a:hover {
    color: #e63946;
}

/* Texto */
.home article p,
.blog article p {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
}

/* Botão continuar lendo */
.home .more-link,
.blog .more-link,
.home a.read-more,
.blog a.read-more {
    display: inline-block;
    background: #1d3557;
    color: #ffffff !important;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.home .more-link:hover,
.blog .more-link:hover,
.home a.read-more:hover,
.blog a.read-more:hover {
    background: #e63946;
    transform: scale(1.04);
}

/* Área principal */
.home .site-main,
.blog .site-main {
    max-width: 1250px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Celular */
@media (max-width: 768px) {
    .home article img,
    .blog article img {
        width: 90% !important;
    }

    .home article h2,
    .blog article h2,
    .home article .entry-title,
    .blog article .entry-title {
        font-size: 21px;
    }

    .home article p,
    .blog article p {
        font-size: 15px;
    }
}
