.page-container {
    max-width: 1250px !important;
    margin: 0 auto;
    padding: 40px 20px;
}

.enhanced-post {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 40px;
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.enhanced-post:hover .post-featured-image img {
    transform: scale(1.03);
}

.post-content-wrapper {
    padding: 30px 40px 40px;
}

.post-header {
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.post-title {
    color: #045296;
    font-size: 32px;
    margin: 0 0 15px;
    line-height: 1.3;
}

.post-meta {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.post-date {
    margin-right: 15px;
}

.post-categories a {
    color: #045296;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-categories a:hover {
    color: #0275d8;
}

.post-content {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content h2, 
.post-content h3, 
.post-content h4 {
    color: #045296;
    margin: 30px 0 15px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.post-content ul, 
.post-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.post-content blockquote {
    border-left: 4px solid #045296;
    padding: 15px 20px;
    margin: 20px 0;
    background: #f9f9f9;
    font-style: italic;
    color: #555;
}

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.tag-label {
    font-weight: bold;
    color: #555;
}

.post-tags a {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: #045296;
    color: #fff;
}

/* Post Navigation Styling */
.post-navigation-container {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
}

.nav-previous, 
.nav-next {
    max-width: 48%;
}

.nav-previous a, 
.nav-next a {
    display: block;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.nav-previous a:hover, 
.nav-next a:hover {
    background: #045296;
    color: white;
}

.nav-subtitle {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
}

.nav-title {
    font-weight: bold;
    font-size: 15px;
}

.nav-previous a:hover .nav-subtitle, 
.nav-next a:hover .nav-subtitle {
    color: #f0f0f0;
}

/* Comments Styling */
.comments-area {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.comments-title {
    color: #045296;
    font-size: 24px;
    margin-bottom: 20px;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    background: #f9f9f9;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 10px;
}

.comment-metadata {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.comment-content {
    font-size: 14px;
    line-height: 1.6;
}

.comment-respond {
    margin-top: 30px;
}

.comment-reply-title {
    color: #045296;
    font-size: 20px;
    margin-bottom: 20px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.comment-form input[type="submit"] {
    background: #045296;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background: #0275d8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .post-content-wrapper {
        padding: 20px 25px 30px;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .comments-area {
        padding: 20px;
    }
    
    .nav-previous, 
    .nav-next {
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .post-navigation {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 24px;
    }
    
    .post-content {
        font-size: 15px;
    }
}

.enhanced-post {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
    margin-bottom: 40px;
}

.post-navigation-container {
    clear: both;
    width: 100%;
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
}

.nav-previous, 
.nav-next {
    width: 48%;
}

.nav-previous {
    float: left;
    text-align: left;
}

.nav-next {
    float: right;
    text-align: right;
}