/* Blog Container */
#blogContainer {
    padding: 20px 0;
}

/* Individual Blog Post */
.blog_banner {
    color: black;
}
.blog_banner h1 {
    color: black;
}

.blog_banner h3 {
    color: black;
}

.blog_banner p {
    color: #333;
}

.blog_banner span {
    color: #333;
}

.blogPost {
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
    color: black;
}

.blogPost:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.blogPost h1 {
    color: black;
}

.blogPost h3 {
    color: black;
}

.blogPost h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.blogPost h2 a {
    color: #333;
    text-decoration: none;
}
.blogPost h2 a {
    color: #333;
    text-decoration: none;
}

.blogPost h2 a:hover {
    text-decoration: underline;
}

.blogPost a {
    color: blue;
    text-decoration: none;
}

.blogPost p {
    margin-bottom: 15px;
}

.blogPost a.read_more {
    color: #007bff;
    text-decoration: none;
}

.blogPost a.read_more:hover {
    text-decoration: underline;
}

.blog_post_detail {
    padding: 50px 0 30px;
}

.newsletter_signup {
    color: black;
}
/* Search Section */
.blog_search {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.search_wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.search_wrapper form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.search_wrapper input[type="text"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px 0 0 4px;
}

.search_wrapper button {
    padding: 10px 15px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.search_wrapper button:hover {
    background-color: #0056b3;
}


/* Blog Detail Container */
.blogDetail {
    padding: 40px 0;
}

/* Blog Title */
.blogDetail h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Blog Meta Information */
.blogDetail p {
    margin-bottom: 20px;
    color: #777;
}

/* Blog Content */
.blogDetail div {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Author Information */
.blogDetail .author {
    margin-top: 30px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.blogDetail .author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.blogDetail .author .author-info {
    display: flex;
    align-items: center;
}

.blogDetail .author h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.blogDetail .author p {
    color: #777;
}
