/* Blog Page Specific Styles */

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 5%;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    min-height: calc(100vh - 200px);
}

/* Blog Header */
.blog-header {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    border-bottom: 2px solid rgba(100, 200, 255, 0.3);
    margin-bottom: 3rem;
}

.blog-title {
    font-size: 3.5rem;
    color: #64c8ff;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(100, 200, 255, 0.3);
}

.blog-subtitle {
    font-size: 1.2rem;
    color: #a0d8f1;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Posts */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post {
    background: rgba(15, 30, 50, 0.7);
    border: 1px solid rgba(100, 200, 255, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.blog-post:hover {
    border-color: rgba(100, 200, 255, 0.5);
    box-shadow: 0 5px 30px rgba(100, 200, 255, 0.15);
}

/* Post Meta Information */
.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.post-date {
    color: #64c8ff;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.post-date::before {
    content: '📅';
    margin-right: 0.5rem;
}

.post-category {
    background: rgba(100, 200, 255, 0.2);
    color: #64c8ff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(100, 200, 255, 0.3);
}

/* Post Content */
.post-title {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.post-content {
    color: #b0d8f0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content p:last-child {
    margin-bottom: 0;
}

.read-more {
    display: inline-block;
    color: #64c8ff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.read-more:hover {
    color: #8dd6ff;
    border-bottom: 2px solid #64c8ff;
    transform: translateX(5px);
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: rgba(15, 30, 50, 0.7);
    border: 1px solid rgba(100, 200, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.sidebar-section h3 {
    color: #64c8ff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.sidebar-section p {
    color: #b0d8f0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    color: #a0d8f1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
}

.category-list a:hover {
    color: #64c8ff;
    background: rgba(100, 200, 255, 0.1);
    padding-left: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-subtitle {
        font-size: 1.05rem;
    }
    
    .post-title {
        font-size: 1.6rem;
    }
    
    .blog-container {
        padding: 2rem 5%;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
}
