/* css/article.css */
.article-container {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    margin-top: 50px;
}

.article-meta {
    font-family: 'Cormorant Garamond', serif;
    color: #666;
    font-style: italic;
}

.article-date::after {
    content: '|';
    margin: 0 10px;
}

.article-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

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

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

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    color: #8b7355;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button i {
    margin-right: 10px;
}

.back-button:hover {
    color: #665540;
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .article-container {
        margin-top: 100px;
        padding: 0 15px;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-lead {
        font-size: 1.1rem;
    }

    .article-body {
        font-size: 1rem;
    }
}