/* Blog Article Styles */

/* Post Header */
.post-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--glass-border);
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.post-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-category {
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 500;
}

.post-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Post Content */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.post-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.post-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    padding-top: 1rem;
}

.post-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.post-content strong {
    font-weight: 600;
    color: var(--primary-color);
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-light);
}

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

.post-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
}

/* Blog CTA Box */
.blog-cta {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(44, 62, 80, 0.05) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.blog-cta h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.blog-cta .btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.blog-cta .btn-primary:hover {
    background: #c4a137;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Article Wrapper */
.article-wrapper {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 1.75rem;
    }
    
    .post-content p {
        font-size: 1rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .article-wrapper {
        padding: 1.5rem;
    }
}