.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.post-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
    color: inherit;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.post-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.post-card-content {
    padding: 15px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.post-card-category {
    font-size: 0.8em;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

.post-card-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-card-description {
    font-size: 0.95em;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
    flex-grow: 1; /* Para empurrar o footer para baixo */
}

.post-card-footer {
    font-size: 0.8em;
    color: #777;
<<<<<<< HEAD
}

.external-link-wrapper {
    margin: 25px 0;
    text-align: center; /* ou 'left' se preferir */
}

.external-link-wrapper .btn {
    font-size: 1.1rem;
    padding: 12px 25px;
}

.external-link-wrapper .btn i {
    margin-right: 8px;
=======
>>>>>>> be26151d2ef4cceb4a4a0155b17d5562057ffdfd
}