/**
 * Einzelartikel – sport-als-berufung.de
 */

.article-page .inner-content { max-width: 800px; margin: 0 auto; }

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line-white);
}

.article-header__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0 0 0.75rem;
    line-height: 1.25;
    color: var(--stadium-white);
}

.article-header__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--energy-orange);
    opacity: 0.9;
}

.article-header__category {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(232, 93, 4, 0.2);
    border-radius: 6px;
    font-weight: 600;
}

.article-content {
    color: var(--stadium-white);
    line-height: 1.75;
    font-size: 1rem;
}

.article-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.35rem;
    color: var(--energy-orange);
}

.article-content h3 { margin: 1.5rem 0 0.75rem; font-size: 1.15rem; color: var(--stadium-white); }
.article-content p { margin-bottom: 1rem; }
.article-content ul, .article-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.article-content a { color: var(--energy-orange); text-decoration: underline; }
.article-content a:hover { color: var(--accent-gold); }

.article-content .table-of-contents,
.article-content .article-toc {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--line-white);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.article-content .table-of-contents h3,
.article-content .article-toc h3 { margin-top: 0; margin-bottom: 0.75rem; font-size: 1rem; }
.article-content .table-of-contents ul,
.article-content .article-toc ul { list-style: none; padding-left: 0; margin: 0; }
.article-content .table-of-contents li,
.article-content .article-toc li { margin-bottom: 0.35rem; }
.article-content .table-of-contents a,
.article-content .article-toc a { text-decoration: none; }
.article-content .table-of-contents a:hover,
.article-content .article-toc a:hover { text-decoration: underline; }

.article-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-white);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-nav a {
    color: var(--energy-orange);
    font-weight: 600;
}
.article-nav a:hover { text-decoration: underline; }
