/* Baza Wiedzy - Dark Mode Integration */

/* 1. Breadcrumbs */
.breadcrumbs {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #27272a;
}

.breadcrumbs a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #c29f6d;
    /* Gold */
}

/* 2. Article Header */
article header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

article .meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* 3. Content Bridge 
   Mapping our .content to user's .article-content styles 
*/
.content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d4d4d4;
    /* Light gray text for dark mode */
}

.content h2 {
    color: #c29f6d;
    /* Gold headers */
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid #c29f6d;
    padding-left: 15px;
}

.content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 20px;
}

/* 4. Autolinks */
a.auto-link,
a.autolink {
    color: #c29f6d;
    text-decoration: none;
    border-bottom: 1px dotted #c29f6d;
    transition: all 0.2s;
}

a.auto-link:hover,
a.autolink:hover {
    color: #fff;
    background-color: rgba(194, 159, 109, 0.2);
    /* Semi-transparent gold bg */
    border-bottom-style: solid;
}

/* 5. Index Stylings were removed to use Global theme (.grid .card) */


.article-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #27272a;
}

.article-footer a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
}

.article-footer a:hover {
    color: #c29f6d;
}