.blog-content {
    min-height: 100vh;
    padding: 100px 0 300px;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-container h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #e8e8e8;
    font-weight: 500;
}

.posts-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.post-card {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 0;
    transition: background 0.1s;
}

.post-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.post-card h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: 500;
}

.post-card h2 a {
    color: #e8e8e8;
    text-decoration: none;
    display: block;
}

.post-card h2 a:hover {
    color: #0d6b54;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.post-meta a {
    color: #999;
    text-decoration: none;
}

.post-meta a:hover {
    color: #e8e8e8;
}

.separator {
    color: #555;
}

.post-excerpt {
    color: #999;
    line-height: 1.5;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-post-card {
    background: transparent;
    border: none;
    padding: 0;
}

.back-to-articles {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.back-to-articles:hover {
    color: #e8e8e8;
}

.back-to-articles:hover .btn-arrow {
    transform: translateX(-2px);
}

.btn-arrow {
    transition: transform 0.15s;
}

.post-header {
    margin-bottom: 3rem;
}

.post-header h1 {
    font-size: 2.5rem;
    color: #e8e8e8;
    margin: 0 0 1.2rem 0;
    font-weight: 600;
    line-height: 1.2;
}

.post-header .post-meta {
    margin: 0;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #c0c0c0;
    max-width: 700px;
}

.post-content p {
    margin-bottom: 1.5rem;
    display: block;
}

.post-content h2 {
    font-size: 1.8rem;
    color: #e8e8e8;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.post-content h3 {
    font-size: 1.4rem;
    color: #d8d8d8;
    margin: 2rem 0 0.8rem;
    font-weight: 600;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.6rem;
}

.post-content blockquote {
    border-left: 3px solid #555;
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #999;
    font-style: italic;
}

.post-content code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #63b3ed;
}

.post-content pre {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.post-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: #c0c0c0;
}

.post-content a {
    color: #4a90e2;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.post-content a:hover {
    border-bottom-color: #4a90e2;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 2rem 0;
}

.post-content hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

.blog-footer {
    margin-top: 4rem;
}

.blog-footer .footer {
    position: relative;
}

body {
    position: relative;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .blog-content {
        padding: 80px 0 40px;
    }

    .blog-container {
        padding: 0 20px;
    }

    .blog-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .post-card {
        padding: 1.5rem 0;
    }

    .post-card h2 {
        font-size: 1.3rem;
        margin-bottom: 0.6rem;
    }

    .post-card h2 a {
        padding: 0.3rem 0;
    }

    .post-meta {
        font-size: 0.8rem;
    }

    .post-excerpt {
        font-size: 0.9rem;
    }

    .blog-post-container {
        padding: 0 20px;
    }

    .post-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 0.8rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.6rem;
    }

    .post-content pre {
        padding: 1rem;
        font-size: 0.85rem;
    }
}