/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 05 2026 | 03:30:11 */
.post-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.loading {
    text-align: center;
    padding: 20px;
    font-weight: 500;
    opacity: 0.7;
}

.card {
    border: 1px solid #ddd;
    padding: 15px;
    background: #fff;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.thumb img {
    width: 100%;
    height: auto;
}

.type-filter button.active {
    background: #bd06f3;
    color: white;
}