/* Blog card styling */
.blog-posts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background: rgba(255, 249, 208, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-thumbnail {
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-top: 0;
    font-size: 1.4rem;
}

.blog-content h3 a {
    color: var(--h3);
    text-decoration: none;
}

.post-date {
    color: var(--meta);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background-color: var(--link);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.post-excerpt {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: var(--link);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #c94f23;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
} 