/**
 * Wiki-Styles (Wikipedia-ähnlich)
 * 
 * Design inspiriert von Wikipedia mit modernen Anpassungen
 */

/* ===== Wiki-Container ===== */
.wiki-container-12345 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px;
    background-color: #f8f9fa;
}

.wiki-main-12345 {
    display: grid;
    grid-template-columns: 250px 1fr 220px;
    gap: 20px;
    margin-top: 15px;
}

/* ===== Wiki-Sidebar (Links) ===== */
.wiki-sidebar-12345 {
    background-color: #fff;
    border: 1px solid #a2a9b1;
    border-radius: 3px;
    padding: 10px;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.wiki-sidebar-titel-12345 {
    font-size: 14px;
    font-weight: 700;
    color: #202122;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #a2a9b1;
}

.wiki-sidebar-list-12345 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wiki-sidebar-list-12345 li {
    margin-bottom: 5px;
}

.wiki-sidebar-list-12345 a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    color: #0645ad;
    text-decoration: none;
    font-size: 13px;
    border-radius: 3px;
    transition: background-color 0.15s;
}

.wiki-sidebar-list-12345 a:hover {
    background-color: #eaecf0;
    text-decoration: underline;
}

.wiki-sidebar-list-12345 .material-icons {
    font-size: 18px;
    color: #72777d;
}

/* ===== Wiki-Content (Mitte) ===== */
.wiki-content-12345 {
    background-color: #fff;
    border: 1px solid #a2a9b1;
    border-radius: 3px;
    padding: 20px 30px;
    min-height: 600px;
}

/* Artikel-Header */
.wiki-artikel-header-12345 {
    border-bottom: 1px solid #a2a9b1;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.wiki-artikel-titel-12345 {
    font-size: 28px;
    font-weight: 400;
    color: #202122;
    margin: 0 0 5px 0;
    font-family: 'Linux Libertine', Georgia, Times, serif;
    line-height: 1.3;
}

.wiki-artikel-untertitel-12345 {
    font-size: 14px;
    color: #54595d;
    margin: 5px 0 0 0;
    font-style: italic;
}

.wiki-artikel-meta-12345 {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #72777d;
    margin-top: 8px;
}

.wiki-artikel-meta-12345 span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.wiki-artikel-meta-12345 .material-icons {
    font-size: 16px;
}

/* ===== Inhaltsverzeichnis ===== */
.wiki-toc-12345 {
    background-color: #f8f9fa;
    border: 1px solid #a2a9b1;
    padding: 10px 15px;
    margin: 15px 0 20px 0;
    display: inline-block;
    min-width: 300px;
    max-width: 100%;
}

.wiki-toc-titel-12345 {
    font-size: 16px;
    font-weight: 700;
    color: #202122;
    margin-bottom: 8px;
    text-align: center;
}

.wiki-toc-list-12345 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wiki-toc-item-12345 {
    margin: 3px 0;
}

.wiki-toc-item-12345 a {
    color: #0645ad;
    text-decoration: none;
    font-size: 13px;
    display: block;
    padding: 2px 0;
}

.wiki-toc-item-12345 a:hover {
    text-decoration: underline;
}

/* TOC-Ebenen */
.wiki-toc-level-2-12345 { padding-left: 0; }
.wiki-toc-level-3-12345 { padding-left: 15px; }
.wiki-toc-level-4-12345 { padding-left: 30px; }
.wiki-toc-level-5-12345 { padding-left: 45px; }
.wiki-toc-level-6-12345 { padding-left: 60px; }

/* ===== Wiki-Überschriften ===== */
.wiki-heading-12345 {
    color: #202122;
    font-weight: 400;
    font-family: 'Linux Libertine', Georgia, Times, serif;
    margin-top: 25px;
    margin-bottom: 10px;
    padding-bottom: 3px;
    border-bottom: 1px solid #a2a9b1;
}

h2.wiki-heading-12345 {
    font-size: 22px;
}

h3.wiki-heading-12345 {
    font-size: 19px;
}

h4.wiki-heading-12345 {
    font-size: 17px;
    border-bottom: none;
}

h5.wiki-heading-12345,
h6.wiki-heading-12345 {
    font-size: 15px;
    border-bottom: none;
}

/* ===== Wiki-Absätze ===== */
.wiki-paragraph-12345 {
    font-size: 14px;
    line-height: 1.6;
    color: #202122;
    margin: 10px 0;
    text-align: justify;
}

/* ===== Wiki-Listen ===== */
.wiki-list-12345 {
    font-size: 14px;
    line-height: 1.6;
    color: #202122;
    margin: 10px 0 10px 25px;
}

.wiki-list-12345 li {
    margin: 5px 0;
}

/* ===== Wiki-Links ===== */
.wiki-link-12345 {
    color: #0645ad;
    text-decoration: none;
}

.wiki-link-12345:visited {
    color: #0b0080;
}

.wiki-link-12345:hover {
    text-decoration: underline;
}

.wiki-external-link-12345 {
    color: #0645ad;
    text-decoration: none;
}

.wiki-external-link-12345::after {
    content: " ↗";
    font-size: 11px;
    vertical-align: super;
}

.wiki-external-link-12345:hover {
    text-decoration: underline;
}

/* ===== Wiki-Tabellen ===== */
.wiki-table-12345 {
    border-collapse: collapse;
    background-color: #f8f9fa;
    border: 1px solid #a2a9b1;
    margin: 15px 0;
    width: 100%;
    font-size: 13px;
}

.wiki-table-12345 th {
    background-color: #eaecf0;
    font-weight: 700;
    text-align: left;
    padding: 5px 8px;
    border: 1px solid #a2a9b1;
}

.wiki-table-12345 td {
    padding: 5px 8px;
    border: 1px solid #a2a9b1;
}

/* ===== Wiki-Code ===== */
.wiki-code-inline-12345 {
    background-color: #f8f9fa;
    border: 1px solid #a2a9b1;
    border-radius: 2px;
    padding: 1px 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: #202122;
}

.wiki-code-block-12345 {
    background-color: #f8f9fa;
    border: 1px solid #a2a9b1;
    border-radius: 3px;
    padding: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: #202122;
    overflow-x: auto;
    margin: 15px 0;
}

/* ===== Wiki-Infobox ===== */
.wiki-infobox-12345 {
    background-color: #f8f9fa;
    border: 1px solid #a2a9b1;
    float: right;
    margin: 0 0 15px 15px;
    padding: 10px;
    width: 280px;
    font-size: 13px;
}

.wiki-infobox-titel-12345 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #a2a9b1;
}

.wiki-infobox-row-12345 {
    margin: 5px 0;
    line-height: 1.4;
}

/* ===== Wiki-Zitat ===== */
.wiki-zitat-12345 {
    background-color: #f8f9fa;
    border-left: 4px solid #a2a9b1;
    padding: 10px 15px;
    margin: 15px 0;
    font-style: italic;
    color: #54595d;
}

/* ===== Wiki-Sidebar-Rechts (Verwandte Artikel) ===== */
.wiki-sidebar-right-12345 {
    background-color: #fff;
    border: 1px solid #a2a9b1;
    border-radius: 3px;
    padding: 10px;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.wiki-verwandte-12345 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wiki-verwandte-12345 li {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaecf0;
}

.wiki-verwandte-12345 li:last-child {
    border-bottom: none;
}

.wiki-verwandte-12345 a {
    color: #0645ad;
    text-decoration: none;
    font-size: 13px;
    display: block;
}

.wiki-verwandte-12345 a:hover {
    text-decoration: underline;
}

.wiki-verwandte-12345 .wiki-verwandte-views-12345 {
    font-size: 11px;
    color: #72777d;
    margin-top: 3px;
}

/* ===== Wiki-Kategorie-Übersicht ===== */
.wiki-kategorie-grid-12345 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.wiki-kategorie-card-12345 {
    background-color: #fff;
    border: 1px solid #a2a9b1;
    border-radius: 3px;
    padding: 15px;
    transition: box-shadow 0.2s;
}

.wiki-kategorie-card-12345:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wiki-kategorie-card-header-12345 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.wiki-kategorie-card-header-12345 .material-icons {
    font-size: 32px;
    color: #0645ad;
}

.wiki-kategorie-card-titel-12345 {
    font-size: 18px;
    font-weight: 700;
    color: #202122;
    margin: 0;
}

.wiki-kategorie-card-beschreibung-12345 {
    font-size: 13px;
    color: #54595d;
    margin: 8px 0;
    line-height: 1.4;
}

.wiki-kategorie-card-anzahl-12345 {
    font-size: 12px;
    color: #72777d;
    margin-top: 10px;
}

/* ===== Wiki-Artikel-Liste ===== */
.wiki-artikel-liste-12345 {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.wiki-artikel-liste-12345 li {
    padding: 10px;
    border-bottom: 1px solid #eaecf0;
}

.wiki-artikel-liste-12345 li:last-child {
    border-bottom: none;
}

.wiki-artikel-liste-titel-12345 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.wiki-artikel-liste-titel-12345 a {
    color: #0645ad;
    text-decoration: none;
}

.wiki-artikel-liste-titel-12345 a:hover {
    text-decoration: underline;
}

.wiki-artikel-liste-untertitel-12345 {
    font-size: 13px;
    color: #54595d;
    margin-top: 3px;
}

/* ===== Wiki-Suche ===== */
.wiki-suche-form-12345 {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.wiki-suche-input-12345 {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #a2a9b1;
    border-radius: 3px;
    font-size: 14px;
}

.wiki-suche-btn-12345 {
    padding: 8px 20px;
    background-color: #1b1b1b;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.wiki-suche-btn-12345:hover {
    background-color: #ffc800;
    color: #1b1b1b;
}

/* ===== Hauptkategorien Grid (Neues Design) ===== */
.wiki-hauptkategorien-grid-12345 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.wiki-kategorie-box-12345 {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.wiki-kategorie-box-12345:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Hauptkategorie Header mit Schwarz/Gelb */
.wiki-kategorie-box-12345 > div:first-child {
    background: linear-gradient(135deg, #1b1b1b 0%, #1b1b1b 100%);
    padding: 5px;
    border-bottom: 2px solid #1b1b1b;
    text-align: center;
}

.wiki-kategorie-box-12345 > div:first-child .material-icons {
    font-size: 48px;
    color: #ffc800;
    display: block;
    margin-bottom: 10px;
}

.wiki-kategorie-box-12345 > div:first-child h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* Unterkategorien Container */
.wiki-kategorie-box-12345 > div:last-child {
    padding: 15px;
}

/* Unterkategorie Links */
.wiki-unterkat-link-12345 {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #1b1b1b;
    background: #fff;
    border-radius: 3px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.wiki-unterkat-link-12345:hover {
    background: #fffaeb;
    border-left-color: #ffd600;
}

.wiki-unterkat-link-12345 .material-icons {
    font-size: 18px;
    margin-right: 8px;
    color: #ffc800;
}

.wiki-unterkat-link-12345 span:last-child {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

/* ===== Featured Articles Section ===== */
.wiki-featured-section-12345 {
    margin: 50px 0;
}

.wiki-featured-title-12345 {
    font-size: 28px;
    font-weight: 600;
    margin: 50px 0 30px 0;
    color: #1b1b1b;
    text-align: center;
}

.wiki-featured-grid-12345 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.wiki-featured-box-12345 {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.wiki-featured-box-12345:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Featured Box Header (Schwarz mit Gelb) */
.wiki-featured-header-12345 {
    background: #1b1b1b;
    padding: 20px;
    border-bottom: 2px solid #ffd600;
    text-align: center;
}

.wiki-featured-header-12345 .material-icons {
    font-size: 48px;
    color: #ffd600;
    display: block;
    margin-bottom: 10px;
}

.wiki-featured-header-12345 h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* Featured Articles Liste */
.wiki-featured-list-12345 {
    padding: 15px;
}

.wiki-featured-link-12345 {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    margin-bottom: 5px;
    text-decoration: none;
    color: #1b1b1b;
    background: #f8f9fa;
    border-radius: 3px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.wiki-featured-link-12345:hover {
    background: #fffaeb;
    border-left-color: #ffd600;
}

.wiki-featured-link-12345 .material-icons {
    font-size: 18px;
    margin-right: 8px;
    color: #ffc800;
}

.wiki-featured-link-12345 span:last-child {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

/* ===== Tastensymbole ===== */
.wiki-key-12345 {
    display: inline-block;
    min-width: 24px;
    padding: 2px 6px;
    margin: 0 1px;
    border-radius: 3px;
    border: 1px solid #a2a9b1;
    background: #f8f9fa;
    box-shadow: 0 1px 0 #fff inset, 0 1px 1px rgba(0,0,0,0.1);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #202122;
    text-align: center;
    white-space: nowrap;
}

.wiki-keycombo-12345 {
    display: inline-block;
    margin: 0 2px;
}

/* ===== YouTube Video-Embeds ===== */
.wiki-video-12345 {
    margin: 10px 0;
    width: 100%;
}

.wiki-video-inner-12345 {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.wiki-video-inner-12345 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .wiki-main-12345 {
        grid-template-columns: 1fr;
    }
    
    .wiki-sidebar-12345,
    .wiki-sidebar-right-12345 {
        position: static;
        margin-bottom: 15px;
    }
    
    .wiki-infobox-12345 {
        float: none;
        width: 100%;
        margin: 15px 0;
    }
    
    .wiki-hauptkategorien-grid-12345,
    .wiki-featured-grid-12345 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .wiki-content-12345 {
        padding: 15px;
    }
    
    .wiki-artikel-titel-12345 {
        font-size: 24px;
    }
    
    .wiki-kategorie-grid-12345,
    .wiki-hauptkategorien-grid-12345,
    .wiki-featured-grid-12345 {
        grid-template-columns: 1fr;
    }
}


