/* General Blog Container */
.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px auto;
    max-width: 1200px;
}

/* Individual Post Styling */
.blog-post {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 300px;
}

.blog-post:hover {
    transform: translateY(-5px);
}

/* Post Image */
.blog-post img {
    width: 100%;
    height: auto;
}

/* Post Content */
.blog-post-content {
    padding: 15px;
}

.blog-post-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.blog-post-excerpt {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    padding: 10px 15px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #005f8d;
}