.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: 2rem;
    font-family: 'Georgia', serif;
    color: #c9c9c9;
    text-align: center;
}

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

.post-card {
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
    border: 2px solid #4a4a4a;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
}

.post-card h2 a {
    color: #d4d4d4;
    text-decoration: none;
    font-family: 'Georgia', serif;
}

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

.post-meta {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #999;
    font-family: 'Georgia', serif;
}

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

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

.separator {
    color: #666;
    margin: 0 0.5rem;
}

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

.blog-post-card {
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
    border: 2px solid #4a4a4a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    padding: 3rem 2.5rem;
    position: relative;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #666, transparent);
}

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

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

.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: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #4a4a4a;
}

.post-header-line {
    height: 1px;
    background: linear-gradient(to right, transparent, #666, transparent);
    margin: 1rem 0;
}

.post-header h1 {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: #d4d4d4;
    margin: 1rem 0;
    font-weight: 400;
    letter-spacing: 1px;
}

.post-content {
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #b8b8b8;
}

.post-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.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-post-card {
        padding: 2rem 1.5rem;
    }

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

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