
/* Blog Post Styles */

.blog-post {
    background-color: #f7faff;  /* A light blue background */
    border: 1px solid #e0e0e0;  /* A light gray border */
    padding: 20px;
    margin-bottom: 20px;  /* Space between posts */
    border-radius: 8px;   /* Rounded corners */
}

.blog-post h2 {  /* Title */
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.blog-post h3 {  /* Date */
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
}

.blog-post p {  /* Post Content */
    line-height: 1.6;   /* Increased line height for readability */
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-post {
        padding: 15px;
    }

    .blog-post h2 {
        font-size: 20px;
    }

    .blog-post h3 {
        font-size: 12px;
    }
}