/*
========================================
DIGITAL HERITAGE LAB - SINGLE PAGE STYLES
========================================
Description: CSS styles for single post/project/article pages
Includes: Post content, comments, navigation, related posts
Version: 1.0.0
Author: Digital Heritage Lab
========================================
*/

/* ===== SINGLE PAGE STYLES ===== */

/* Single Post Content */
.single-content {
    display: block; /* Placeholder */
}

/* Comments Section */
.comments-section {
    display: block; /* Placeholder */
}

/* Post Navigation */
.post-navigation {
    display: block; /* Placeholder */
}

/* Related Posts */
.related-posts {
    display: block; /* Placeholder */
}

/* ===== ARTICLE FOOTER SECTION ===== */
.article-footer-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 0;
    margin: 3rem 0;
}

.article-footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Categories Section */
.article-categories {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.categories-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    min-width: fit-content;
}

.categories-label i {
    color: #6366f1;
    font-size: 0.85rem;
}

.categories-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.category-badge {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    text-decoration: none;
    color: white;
}

/* Tags Section */
.article-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tags-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    min-width: fit-content;
}

.tags-label i {
    color: #10b981;
    font-size: 0.85rem;
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-badge {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background: #10b981;
    color: white;
    border-color: #10b981;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-footer-section {
        padding: 1.5rem 0;
        margin: 2rem 0;
    }
    
    .article-categories,
    .article-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .categories-label,
    .tags-label {
        margin-bottom: 0.25rem;
    }
    
    .category-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .tag-badge {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .article-footer-wrapper {
        gap: 1rem;
    }
    
    .categories-list,
    .tags-list {
        gap: 0.5rem;
    }
}

/* Note: This file will be developed when single pages are implemented */
