/* =============================================
   SINGLE BLOG POST PAGE FIXES
   ============================================= */

/* Fix header overlap - add top spacing for single posts */
body.single-post .x-main {
    padding-top: 120px !important;
}

/* Hero/Featured Image Improvements */
body.single-post .entry-featured {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

body.single-post .entry-thumb img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* Post Title Styling */
body.single-post .entry-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #253546;
    text-transform: none;
}

/* Entry Content Improvements */
body.single-post .entry-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

body.single-post .entry-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #253546;
    text-transform: none;
}

body.single-post .entry-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #253546;
    text-transform: none;
}

body.single-post .entry-content p {
    margin-bottom: 1.5em;
}

body.single-post .entry-content ul,
body.single-post .entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

body.single-post .entry-content li {
    margin-bottom: 0.5em;
    line-height: 1.7;
}

/* Blockquote Styling */
body.single-post .entry-content blockquote {
    border-left: 4px solid #F46241;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    font-style: italic;
    font-size: 1.15rem;
}

/* Links */
body.single-post .entry-content a {
    color: #F46241;
    text-decoration: underline;
    transition: color 0.3s ease;
}

body.single-post .entry-content a:hover {
    color: #253546;
}

/* Entry Wrap Container */
body.single-post .entry-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body.single-post .x-main {
        padding-top: 100px !important;
    }
    
    body.single-post .entry-title {
        font-size: 1.8rem;
    }
    
    body.single-post .entry-content {
        font-size: 1rem;
    }
    
    body.single-post .entry-content h2 {
        font-size: 1.5rem;
    }
}
