/* Breadcrumb Styles */
.breadcrumb {
    max-width: 700px;
    margin: 10px auto 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--link-color);
    text-decoration: none;
}

.breadcrumb .sep {
    margin: 0 8px;
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--text-secondary);
}

/* Article Controls */
.article-controls {
    max-width: 700px;
    margin: 0 auto 10px;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.article-controls button {
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 6px 10px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 4px;
}

.article-controls button:hover {
    background: var(--bg-tertiary);
}

/* Hero Title Overlay */
.hero-title-overlay .article-credits {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #ddd;
    font-style: italic;
}

.hero-title-overlay .article-credits .unique-views {
    color: #fff;
    opacity: 0.9;
}

/* Page Article Styles */
body.page .article-main {
    padding-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

body.page .article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

body.page .article-content h1.article-title {
    font-size: 32px;
    margin-bottom: 20px;
}

body.page .article-content img {
    max-width: 100%;
    height: auto;
    display: block;
}

body.page .article-content p {
    margin-bottom: 16px;
}

body.page .article-content ul,
body.page .article-content ol {
    margin: 0 0 16px 24px;
}