/* Blog Post Styles */
.blog-post {
    margin-top: 50px;
    background-color: #f9f9f9;
    padding: 50px;
}

.blog-post .main-txt h1 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0px 1px 1px black;
}

.blog-post .blog-thumbnail img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.blog-post .blog-content {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.6;
}

.blog-post .blog-meta {
    margin-top: 20px;
    font-size: 14px;
    color: gray;
    text-align: center;
}

.blog-post .blog-meta small {
    color: #ffa500;
}

@media (max-width: 768px) {
    .blog-post {
        padding: 20px;
    }

    .blog-post .main-txt h1 {
        font-size: 28px;
    }

    .blog-post .blog-content {
        font-size: 16px;
    }
}