/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}
.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
} */
/* header {
    text-align: center;
    padding: 30px 0;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
} */
/* h1 {
    margin: 0;
    color: #333;
} */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.post {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.post:hover {
    transform: translateY(-5px);
}
.post-image {
    height: 200px;
    overflow: hidden;
}
.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.post:hover .post-image img {
    transform: scale(1.05);
}
.post-content {
    padding: 20px;
}
.post-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
}
.post-excerpt {
    color: #666;
    margin-bottom: 15px;
}
.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.post-author, .post-date {
    margin: 0;
}
.read-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}
.read-more:hover {
    background-color: #45a049;
}
.no-posts {
    text-align: center;
    padding: 50px 0;
    color: #666;
    font-size: 1.2em;
}
.placeholder-img {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.5em;
}