/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 24 2025 | 12:59:56 */
/* Posts Grid */
.posts-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 15px;
}

.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.post-thumbnail {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    color: #2d3748;
    line-height: 1.4;
}

.post-excerpt {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-date {
    font-size: 0.8rem;
    color: #718096;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .posts-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .posts-grid-container {
        grid-template-columns: 1fr;
    }
    
    .post-thumbnail {
        height: 200px;
    }
}