/* Article Container */
.article {
    padding: 40px 20px;
}

/* Article Header & Content - Narrow */
.article h1,
.article time,
.article .category,
.article-cover,
.article-content,
.article-tags {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.article h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.article time {
    display: inline-block;
    color: #666;
    font-size: 14px;
    margin-right: 12px;
}

.article .category {
    display: inline-block;
    font-size: 14px;
}

.article .category a {
    color: var(--color-highlight);
    text-decoration: none;
}
.article-cover {
    margin: 30px auto;
}

.article-cover img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Article Content Typography */
.article-content {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}
.article-content a {
    color: var(--color-highlight);
    text-decoration: underline;
    text-decoration-color: var(--color-link);
    text-decoration-thickness: 2px;
    font-weight: bold;
}
.article-content a:hover {
    color: var(--color-link-hover);
}
.article-content p {
    margin-bottom: 28px;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.article-content ul,
.article-content ol {
    margin-bottom: 28px;
    padding-left: 24px;
}

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

.article-content blockquote {
    margin: 40px 0;
    padding: 20px 30px;
    border-left: 4px solid var(--color-highlight);
    background: #f9f9f9;
    font-style: italic;
    font-size: 20px;
}

/* Author Bio - Wide */
.author-bio {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2.5rem 3rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.author-bio-inner {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    font-weight: bold;
}

.author-role {
    color: #666;
    font-size: 1rem;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.author-bio-text {
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Article Tags */
.article-tags {
    
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-top: 3px solid #333;
}

.article-tags strong {
    display: block;
    margin-bottom: 0.75rem;
    color: #000;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-tags a {
    display: inline-block;
    padding: 0.4rem 1rem;
    margin: 0.25rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.article-tags a:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Responsive */
@media (max-width: 640px) {
    .article h1 {
        font-size: 32px;
    }
    
    .article-content {
        font-size: 16px;
    }
    
    .author-bio {
        padding: 1.5rem;
    }
    
    .author-bio-inner {
        flex-direction: column;
        text-align: center;
    }
}