.ppc-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.ppc-categoria-titulo {
    font-size: 28px;
    font-weight: bold;
    margin: 30px 0 15px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    text-align: left;
}

.ppc-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ppc-post-bloco {
    width: calc(33.333% - 13.33px);
    aspect-ratio: 3/4;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15) !important;
}

.ppc-post-imagem {
    flex: 7;
    background-size: cover;
    background-position: center;
}

.ppc-post-titulo {
    flex: 3;
    background-color: white;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

@media (max-width: 768px) {
    .ppc-post-bloco {
        width: 100%;
    }
}
