/* Blog Post Container */
.single-post {
    max-width: 800px;
    margin: 200px auto 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Post Title */
.post-title {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

/* Meta Data */
.post-meta {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-bottom: 20px;
}

/* Thumbnail Image */
.post-thumbnail img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Post Content */
.post-body {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

/* Navigation Links */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 16px;
}

.post-navigation a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
}

.post-navigation a:hover {
    color: #005177;
}

/* Comments Section */
.comments-section {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-post {
        width: 95%;
    }

    .post-title {
        font-size: 26px;
    }

    .post-meta {
        font-size: 13px;
    }

    .post-body {
        font-size: 16px;
    }
}

p {
    margin-bottom: 1rem !important;
}
strong {
    font-weight: bold !important;
}
