.blog-content {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 8rem 2rem 4rem;
    backdrop-filter: blur(3px);
}

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

.blog-container h1 {
    margin-bottom: 3rem;
    font-family: 'Georgia', serif;
    color: #e8e8e8;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.posts-grid {
    display: grid;
    gap: 2.5rem;
}

.post-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #63b3ed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.post-card:hover::before {
    transform: scaleX(1);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.15);
    border-color: #4a4a4a;
}

.post-card h2 {
    margin-bottom: 1rem;
}

.post-card h2 a {
    color: #e8e8e8;
    text-decoration: none;
    font-family: 'Georgia', serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.post-card h2 a:hover {
    color: #63b3ed;
}

.post-meta {
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
    color: #999;
    font-family: 'Georgia', serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-meta a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.separator {
    color: #666;
}

.post-excerpt {
    color: #aaa;
    line-height: 1.6;
    font-family: 'Georgia', serif;
}

.blog-post-container {
    max-width: 900px;
    width: 100%;
}

.blog-post-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    padding: 3.5rem 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #63b3ed, #4a90e2);
}

.back-to-articles {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #b8b8b8;
    text-decoration: none;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

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

.back-to-articles .btn-arrow {
    transition: transform 0.3s ease;
}

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

.blog-post {
    max-width: 100%;
}

.post-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
}

.post-header h1 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    color: #e8e8e8;
    margin: 1.5rem 0;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
}

.post-content {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #c0c0c0;
}

.post-content p {
    margin-bottom: 1.5rem;
    text-align: left;
}

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

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

.post-content ul,
.post-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.9;
}

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

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

.post-content code {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #63b3ed;
}

.post-content pre {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 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: all 0.3s ease;
}

.post-content a:hover {
    color: #63b3ed;
    border-bottom-color: #63b3ed;
}

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

.post-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
    margin: 3rem 0;
}

.blog-footer {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin-top: 0;
}

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

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

@media (max-width: 768px) {
    .blog-container h1 {
        font-size: 2rem;
    }

    .post-card {
        padding: 1.5rem;
    }

    .post-card h2 a {
        font-size: 1.5rem;
    }

    .blog-post-card {
        padding: 2rem 1.5rem;
    }

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

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

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
    }
}