    .blog-post {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    .article-header {
        border-bottom: 1px solid #eee;
        padding-bottom: 1rem;
    }
    .category-badge {
        background: #f7c18b;
        color: #333;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    .featured-badge {
        background: #ffc107;
        color: #000;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-left: 0.5rem;
    }
    .article-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        line-height: 1.2;
        margin: 1rem 0;
    }
    .article-info {
        display: flex;
        gap: 1.5rem;
        color: #666;
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    .article-info > div {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .article-info i {
        color: #999;
    }
    /* Full hero/cover visible (no hard crop). Letterboxing on short/wide screens is OK. */
    .article-image {
        background: #f1f5f9;
        border-radius: 12px;
        padding: 0.5rem;
        text-align: center;
    }
    .article-image img {
        width: 100%;
        height: auto;
        max-height: min(90vh, 1200px);
        object-fit: contain;
        object-position: center;
        border-radius: 8px;
        vertical-align: middle;
    }
    .article-content {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #333;
    }
    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        display: block;
        margin: 1.25rem auto;
    }
    .article-content figure {
        margin: 1.5rem 0;
        text-align: center;
    }
    .article-content figcaption {
        font-size: 0.9rem;
        color: #666;
        margin-top: 0.5rem;
    }
    .article-content h2, .article-content h3, .article-content h4 {
        margin-top: 2rem;
        margin-bottom: 1rem;
        color: #333;
    }
    .article-content p {
        margin-bottom: 1.5rem;
    }
    .article-content blockquote {
        border-left: 4px solid #f7c18b;
        padding-left: 1rem;
        margin: 2rem 0;
        font-style: italic;
        color: #666;
    }
    .article-stats {
        display: flex;
        gap: 1.5rem;
        color: #666;
        font-size: 0.9rem;
        padding: 1rem 0;
        border-top: 1px solid #eee;
    }
    .social-sharing {
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    .share-buttons {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .comments-section {
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    .comment-item {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #eee;
    }
    .comment-avatar {
        font-size: 2rem;
        color: #ccc;
        flex-shrink: 0;
    }
    .comment-content {
        flex: 1;
    }
    .comment-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }
    .comment-author {
        font-weight: 600;
        color: #333;
    }
    .comment-date {
        color: #666;
        font-size: 0.8rem;
    }
    .comment-text {
        color: #333;
        line-height: 1.6;
    }
    .blog-sidebar {
        position: sticky;
        top: 2rem;
    }
    .sidebar-widget {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        margin-bottom: 1.5rem;
    }
    .related-post, .popular-post {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }
    .related-post:last-child, .popular-post:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    .related-post-image, .popular-post-image {
        width: 60px;
        height: 60px;
        background: #f8f9fa;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ccc;
        flex-shrink: 0;
    }
    .related-post-image img, .popular-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    .related-post-content, .popular-post-content {
        flex: 1;
    }
    .related-post-content h6, .popular-post-content h6 {
        margin-bottom: 0.25rem;
        line-height: 1.4;
    }
    .related-post-content a, .popular-post-content a {
        color: #333;
        text-decoration: none;
    }
    .related-post-content a:hover, .popular-post-content a:hover {
        color: #f7c18b;
    }
    .category-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .category-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem;
        border-radius: 6px;
        color: #333;
        text-decoration: none;
        transition: background-color 0.2s;
    }
    .category-item:hover {
        background: #f8f9fa;
        color: #333;
    }
    @media (max-width: 768px) {
        .article-title {
            font-size: 2rem;
        }
        .article-info {
            flex-direction: column;
            gap: 0.5rem;
        }
        .article-stats {
            flex-direction: column;
            gap: 0.5rem;
        }
        .share-buttons {
            flex-direction: column;
        }
    }
