/* Layout */
#row{
  display:flex;
  align-items:stretch;
  gap:0;                 /* kein Gap */
  background:#eee;       /* Fläche durchgehend grau */
}

/* Navigation */
#nav, #toc{
  flex:0 0 220px;
  box-sizing:border-box;
  background:#eee;
}

/* Content: 90% der Restbreite, mit weißem Trenner */
#content{
  flex:0 0 calc((100% - 220px) * 0.95);  /* Restbreite ohne „Gap“ */
  box-sizing:border-box;
  background:#eee;

  border-left:5px solid #fff;           /* DER weiße Streifen – volle Höhe */
  padding-left:12px;                    /* optional: Luft nach dem Streifen */
}

/* Zentrierung bleibt wie bei dir */
#page{
  max-width:1200px;
  margin:0 auto;
  background:#fff;
}

    
/* Download-Button – globales Link-CSS bewusst übersteuern */
a.download-btn {
  display: inline-block !important;
  padding: 10px 18px !important;
  background-color: #005ea8 !important;
  color: #ffffff !important;

  font-size: 14px;
  font-weight: 500;

  text-decoration: none !important;
  border-radius: 4px;
  border: 0;

  cursor: pointer;
}

/* Hover */
a.download-btn:hover {
  background-color: #004a87 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* Fokus (Tastatur, Barrierefreiheit) */
a.download-btn:focus {
  outline: 2px solid #99c8ff;
  outline-offset: 2px;
}
    
    /* Pagination – ruhig & unaufdringlich */
.pagination {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 14px;
}

.pagination a {
    text-decoration: none;
    color: #005ea8;
    margin: 0 6px;
}

.pagination a:hover {
    text-decoration: none;
}

.page-numbers {
    margin: 0 10px;
}

.page-current {
    font-weight: 600;
    color: #000;
    margin: 0 6px;
}

.page-nav {
    color: #555;
}

/* ===== Blog-Index ===== */

.blog-entry {
    padding: 16px 0 20px 0;
    border-bottom: 1px solid #ddd;
}

.blog-entry:last-child {
    border-bottom: none;
}

/* Blog: Links ohne Unterstreichung – auch im Hover */
.blog-entry a,
.blog-cats a,
.blog-rss,
.blog-readmore
 {
    color: #005ea8;
    text-decoration: none;
}

.blog-readmore {
    display: inline-block;
    color: #005ea8;
    text-decoration: none;
    padding: 8px 12px;
    margin-right: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.blog-entry a:hover,
.blog-cats a:hover,
.blog-rss a:hover,
.blog-readmore a:hover {
    text-decoration: none;
}

/* Blog: klare Eintragsstruktur */
.blog-entry h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.blog-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.blog-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #222;
    margin: 0;
}

.blog-actions {
    margin-top: 10px;
}

.blog-readmore {
    display: inline-block;
    padding: 6px 10px;
    border: 1px solid #cfd8e3;
    border-radius: 4px;
    background: #f7f9fc;
}

.blog-readmore:hover {
    background: #e6f0fa;
}

/* Kategorienliste ruhiger */
.blog-cats {
    margin: 8px 0 18px 0;
    padding-left: 18px;
}

/* Pagination: keine Underlines */
.pagination a:hover {
    text-decoration: none;
}

/* ===== Blog: harte Überschreibung globaler Link- und List-Styles ===== */

/* KEINE Unterstreichungen im Blog */
#content a {
    text-decoration: none !important;
}

/* auch im Hover keine Unterstreichung */
#content a:hover {
    text-decoration: none !important;
}

/* Kategorien- und Listenpunkte im Blog ohne Bullets */
#content ul {
    margin-left: 0;
}

ul.blog-cats {
    list-style: none;
    padding-left: 0;
}

#content ul {
    list-style-type: disc;
    padding-left: 30px;
}



/* einzelne Listenpunkte ruhig setzen */
#content ul li {
    margin-bottom: 4px;
}

/* ===== Blog-Artikel: visuelle Struktur ===== */

.blog-entry {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 14px 16px;
    margin-bottom: 20px;
    background: #fff;
}

/* alte Trennlinie zwischen Artikeln entfällt */
.blog-entry:last-child {
    margin-bottom: 0;
}

/* Titel */
.blog-entry h2 {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 600;
}

/* Meta-Zeile: ruhig, leicht abgesetzt */
.blog-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

/* Teaser: eigene, sehr ruhige Fläche */
.blog-excerpt {
    background: #f7f7f7;
    padding: 10px 12px;
    border-radius: 3px;
    margin: 0 0 10px 0;
}

/* Aktionen (z. B. Weiterlesen) */
.blog-actions {
    text-align: right;
    font-size: 13px;
}

/* Optional: dezenter Hover-Effekt für den ganzen Artikel */
.blog-entry:hover {
    border-color: #cfd8e3;
    background: #fcfcfd;
}

/* ===== Kategoriekasten ===== */

.blog-box {
    border: 1px solid #d9dde3;
    border-radius: 4px;
    padding: 14px 16px;
    margin-bottom: 22px;
    background: #f2f4f7;
}

/* Variante für Kategorien bewusst anders */
.blog-box--cats {
    background: #f5f6f8;
    border-color: #cfd5dd;
}

/* Überschrift im Kasten */
.blog-box--cats h2 {
    margin-top: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Kategorienliste */
.blog-cats li {
    margin-bottom: 4px;
}

/* ===== Blog-Detailseite ===== */

.blog-entry--detail {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 22px;
}

/* Titel auf Detailseite größer */
.blog-entry--detail h1 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
}

/* Textbereich ruhiger & lesefreundlicher */
.blog-entry--detail .blog-excerpt {
    background: transparent;
    padding: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* Zurück-Link */
.blog-entry--detail .blog-actions {
    margin-top: 24px;
    text-align: left;
}

.blog-entry--detail .blog-actions a {
    color: #005ea8;
    text-decoration: none;
}

.blog-entry--detail .blog-actions a:hover {
    text-decoration: underline;
}

.blog-separator {
  border-top: 1px solid #ddd;
  margin: 16px 0;
}
#content hr {
  display: none;
}

.blog-article-ref {
    display: block;
    font-size: 12px;
    color: #555;
    background: #f7f7f7;
    border-left: 3px solid #cfd8e3;
    padding: 6px 8px;
    margin: 4px 0 8px 0;
}

.blog-article-file {
    font-weight: 600;
    color: #222;
}

.blog-article-file-link {
    color: #222 !important;
    text-decoration: none !important;
    border-bottom: 1px dotted #888;
}

.blog-article-file-link:hover {
    color: #111 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #333;
}

.blog-article-note {
    margin-top: 6px;
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}