/* Article formatting styles */

.article-header {
    background: linear-gradient(135deg, #f8f6f3 0%, #fff 100%);
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

.article-meta-header {
    margin-top: 30px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-badge {
    background: #B8956A;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reading-time, .word-count, .author, .date {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 20px 0;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin: 20px 0;
    font-weight: 300;
}

.meta-row-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tag {
    background: #f0ede8;
    color: #7b5a2e;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.article-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #2a2a2a;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .meta-row, .meta-row-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
}