#blog-posts {
    padding: 30px 15px;
    max-width: 100%;
    overflow-x: hidden;
}

#blog-posts .article-container {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Header */
#blog-posts .article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

#blog-posts .article-title {
    text-align: center;
    font-size: 30px;
    line-height: normal;
    font-weight: bold;
    margin-bottom: 24px;
}

#blog-posts .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #6c757d;
}

#blog-posts .article-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

#blog-posts .article-meta .meta-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Featured Image */
#blog-posts .article-featured-image {
    margin: 0 0 30px 0;
    text-align: center;
}

#blog-posts .article-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* Content */
#blog-posts .article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

#blog-posts .article-intro {
    font-size: 18px;
    font-weight: 500;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid #68B236;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0;
}

#blog-posts .article-content p {
    margin-bottom: 20px;
}

#blog-posts .article-content h2,
#blog-posts .article-content h3,
#blog-posts .article-content h4 {
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.4;
}

#blog-posts .article-content h2 {
    font-size: 28px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

#blog-posts .article-content h3 {
    font-size: 24px;
}

#blog-posts .article-content h4 {
    font-size: 20px;
}

#blog-posts .article-content ul,
#blog-posts .article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

#blog-posts .article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

#blog-posts .article-content a {
    color: #68B236;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

#blog-posts .article-content a:hover {
    border-bottom-color: #68B236;
}

/* Wszystkie obrazki wyśrodkowane */
#blog-posts .article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin: 20px auto;
    display: block;
}

#blog-posts .article-content blockquote {
    margin: 30px 0;
    padding: 20px 25px;
    background: #f8f9fa;
    border-left: 4px solid #68B236;
    font-style: italic;
    color: #495057;
    border-radius: 0;
}

#blog-posts .article-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #e83e8c;
}

#blog-posts .article-content pre {
    background: #282c34;
    color: #abb2bf;
    padding: 20px;
    border-radius: 0;
    overflow-x: auto;
    margin: 20px 0;
}

#blog-posts .article-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Responsive */
@media (max-width: 767px) {
    #blog-posts {
        padding: 20px 0;
    }

    #blog-posts .article-container {
        padding: 25px 0;
    }

    #blog-posts .article-title {
        font-size: 28px;
    }

    #blog-posts .article-meta {
        gap: 15px;
        font-size: 13px;
    }

    #blog-posts .article-content {
        font-size: 15px;
    }

    #blog-posts .article-intro {
        font-size: 16px;
        padding: 15px;
    }

    #blog-posts .article-content h2 {
        font-size: 24px;
    }

    #blog-posts .article-content h3 {
        font-size: 20px;
    }

    #blog-posts .article-content h4 {
        font-size: 18px;
    }
}