/*
Theme Name: Hueman Pro Child
Theme URI: https://presscustomizr.com/hueman-pro/
Author: Jurek
Author URI: https://www.jurekkocht.eu
Description: Child-Theme für Hueman Pro mit individuellen Anpassungen.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, responsive, rezept, lightbox
Text Domain: hueman-pro-child
Template: hueman-pro
*/

/* ===============================
   📁 1. Allgemeines Layout & Hintergrund
   Beschreibung:
   - Setzt die globale Hintergrundfarbe der Seite
   - Ergänzt um Inhaltsbereiche wie <main>, .post-inner, .post-thumbnail, .post-content
   - Ziel: Einheitlicher Seitenhintergrund, auch für Beitragsboxen
=============================== */

body,
.entry-content,
.entry-box,
.rezept-box,
.zutaten-font,
.sektionen-font {
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Haupt-Inhaltsbereich einfärben */
main.content {
  background-color: #f6f6f6;
}

/* Beitragscontainer einfärben */
.post-inner,
.post-thumbnail,
.post-content {
 background-color: #fcfcfc;
}

.post-inner {
  margin-bottom: 10px !important; /* Abstand zwischen den Beiträgen */
}

/* ===============================
   📁 2. Login-Formular (aktiv genutzt)
   Beschreibung:
   - Gestaltet das benutzerdefinierte Login-Formular
   - Eingabefelder, Button, Layout und Hover-Effekt
=============================== */

.jurek-login-form {
    width: 100%;
    max-width: 400px !important;
    margin: 5px auto;
    background-color: #bbb;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
    font-size: 14px;
}

.jurek-login-form label {
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
    font-size: 14px;
}

.jurek-login-form input[type="text"],
.jurek-login-form input[type="password"] {
    width: 100%;
    padding: 3px 3px;
    margin-bottom: 4px;
    border: 1px solid #999;
    border-radius: 4px;
    font-size: 14px;
}

.jurek-login-form input[type="submit"] {
    width: 100%;
    padding: 3px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.jurek-login-form input[type="submit"]:hover {
    background-color: #005177;
}

/* ===============================
   📁 3. Bilddarstellung & Lightbox (Simple Lightbox aktiv)
   Beschreibung:
   - Bildgrößen, Hover-Effekte, Fancybox-Design
   - Unterstützt das Plugin "Simple Lightbox"
=============================== */

.lightbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  column-gap: 3px;
  row-gap: 0px;
  margin-bottom: 20px;
}

.lightbox-container img {
  width: 160px;
  height: 110px;
  border-radius: 4px;
  display: block;
  max-width: 100%;
  border: 2px solid #aaaa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin: -20px auto 4px auto;
}

.lightbox-container img:hover,
img.alignleft:hover,
img.alignright:hover,
img.aligncenter:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

img.alignright,
img.aligncenter,
img.alignleft {
  border-radius: 5px;
  transition: box-shadow 0.3s ease;
}

img.alignleft {
  margin-right: 10px;
  float: left;
}

img.alignleft.small { max-width: 150px; }
img.alignleft.medium { max-width: 250px; }

img.alignleft.large {
  max-width: 340px; 
  margin-top: 7px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.bildzentriert {
  text-align: center;
}
.bildzentriert img {
  float: none;
  display: inline-block;
}

/* Fancybox Caption – wird von Simple Lightbox übernommen */
.fancybox-caption {
  font-size: 18px !important;
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  padding: 10px 15px !important;
  border-radius: 5px !important;
  max-width: 90% !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-family: "Helvetica", sans-serif !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

/* ===============================
   📁 4. Tabellen: Zutaten & Infotabelle
   Beschreibung:
   - Gestaltet Rezepttabellen und Infoboxen
   - Einheitliche Darstellung für Zutatenlisten und Symboltabellen
=============================== */

.zutaten-tabelle,
.infotabelle {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  background-color: #fffdf8;
  text-align: center;
}

.zutaten-tabelle th,
.zutaten-tabelle td {
  border: 1px solid #ccc;
  padding: 4px 8px;
  text-align: center;
}

.zutaten-tabelle thead th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.zutaten-tabelle tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.zutaten-tabelle tbody tr td:first-child {
  text-align: left;
  font-weight: bold;
}

.zutaten-tabelle tbody tr td[colspan="5"] {
  background-color: #e8e8e8;
  font-weight: bold;
  text-align: left;
}

.infotabelle td {
  padding: 4px 6px;
  vertical-align: middle;
  border: none;
}

.infotabelle img {
  width: 32px;
  height: 32px;
  display: block;
  margin: 0 auto;
}

.infotabelle strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1em;
}

.infotabelle span {
  display: block;
  font-size: 0.95em;
  font-weight: bold;
  color: red;
}

/* ===============================
   📁 5. Rezeptstruktur & Layout
   Beschreibung:
   - Gestaltet die Hauptbox für Rezepte
   - Typografie, Abstände, visuelle Trennung
=============================== */

.rezept-box {
  background-color: #fffdf8;
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 10px;
  padding-top: 4px !important;
  margin: 20px auto;
  margin-top: 4px !important;
}

.rezept-box h2,
.rezept-box h4,
.rezept-box p,
.rezept-box ul,
.rezept-box ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.rezept-box hr {
  margin: 0.8em 0;
  border: none;
  border-top: 1px solid #ccc;
}

.sektionen-font {
  font-size: 1.3em;
  font-weight: bold;
  margin: 30px 0 15px;
  color: #6b4f3b;
  text-align: left;
  border-bottom: 2px solid #d4c4b4;
  padding-bottom: 4px;
}

.untersektionen-font {
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 1em;
  color: #333;
}

.zutaten-font {
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-left: 1em;
  margin-top: -8px;
}

.zutaten-font li {
  margin-bottom: 0.3em;
}

/* ===============================
   📁 6. Einleitung & Arbeitsschritte
   Beschreibung:
   - Visuelle Boxen für Rezeptabschnitte
   - Icons, Textstruktur, Schatten
=============================== */

.einleitungsschritt,
.arbeitsschritt {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.einleitungsschritt {
  background-color: #fefefe;
}

.arbeitsschritt {
  background-color: #fffdf8;
  border-left: 4px solid #d4c4b4;
}

.einleitung-icon,
.arbeitsschritt-icon {
  font-size: 1.6em;
  line-height: 1;
  margin-top: 2px;
}

.einleitung-text,
.arbeitsschritt-text {
  flex: 1;
}

.einleitung-text strong,
.arbeitsschritt-text strong {
  display: block;
  font-size: 1.1em;
  margin-bottom: 6px;
  color: #6b4f3b;
}

/* ===============================
   📁 7. Links, Titel & Typografie
   Beschreibung:
   - Gestaltet Links, Titel, Fußnoten und typografische Elemente
   - Einheitliche Farben und Abstände
=============================== */

a {
  color: #999999;
}
a:hover {
  color: #333333;
  text-decoration: none;
}

.rezept-link {
  font-size: 13px;
  text-align: center;
  margin-top: 30px;
  color: #666;
}
.rezept-link a {
  color: #0055aa;
  text-decoration: none;
}
.rezept-link a:hover {
  color: #ff6600;
  text-decoration: underline;
}

h4.widget-title {
  font-size: 16px !important;
}

.title-spaced {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 6px;
  margin-top: -4px;
  margin-bottom: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #444;
}

.quellen-hinweis {
  font-size: 0.85em;
  color: #777;
  font-style: italic;
  margin-top: 2em;
}

.rezept-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85em;
  margin-top: 2em;
  flex-wrap: wrap;
}

.footer-links {
  text-align: left;
}

.footer-quellen {
  text-align: right;
}

/* ===============================
   📁 8. Kategorien & Dropdowns
   Beschreibung:
   - Gestaltung von Kategorieansichten, Labels, Dropdowns und Suchbegriffen
   - Farbliche Kennzeichnung für Kategorien
=============================== */

.taxonomy-description,
.taxonomy-description p {
  text-align: justify !important;
  line-height: 1.6;
}

.taxonomy-description::after {
  content: "";
  display: block;
  clear: both;
}

.post-categories {
  margin-top: 24px;
  margin-left: 28px;
  font-size: 0.85em;
  color: #444;
}

.post-categories strong {
  margin-right: 6px;
  display: inline-block;
}

.post-categories a {
  color: #54575f;
  text-decoration: none !important;
  margin: 0 4px;
}

.post-categories a:hover {
  text-decoration: #69503c wavy underline !important;
}

.single .nur-kategorie {
  display: none;
}

.kategorie-eintrag {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-right: 0;
  border-bottom: 1px solid #ddd;
}

.kategorie-eintrag .btn-default {
  display: inline-block;
  margin-top: 6px;
}

.kategorie-text {
  flex: 1;
  min-width: 0;
}

.kategorie-text .entry-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.kategorie-text .entry-meta {
  font-size: 0.85em;
  color: #888;
}

.titel-hervorgehoben {
  font-weight: bold;
  color: #662006;
  background-color: #e1e6e8;
  padding: 2px 4px;
  border-radius: 3px;
}

select#cat option[value="-1"] {
  font-weight: bold;
  color: #ddd;
  background-color: #111111;
}

select#cat option:checked {
  background-color: #e0f7fa;
  font-weight: bold;
}

select#cat option:not([value="-1"]):not(:checked) {
  color: #333;
}

mark.suchbegriff {
  background-color: #fff3b0;
  padding: 0 1px;
  font-weight: normal;
  border-radius: 2px;
}

.kategorie-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1em;
}

.kategorie-label {
  padding: 1px 4px;
  border-radius: 5px;
  font-size: 0.8em;
  font-weight: bold;
  color: white;
}

.kategorie-label.asiat { background-color: #ffcc66; }     /* Asiatisch */
.kategorie-label.backware { background-color: #deb887; }  /* Backwaren */
.kategorie-label.beilage { background-color: #f0e68c; }   /* Beilage */
.kategorie-label.dessert { background-color: #dda0dd; }   /* Dessert */
.kategorie-label.eintopf { background-color: #cd853f; }   /* Eintopf */
.kategorie-label.fleischger { background-color: #b22222; }/* Fleischgericht */
.kategorie-label.grill { background-color: #ff4500; }     /* Gegrilltes */
.kategorie-label.nudel { background-color: #f5deb3; }     /* Klöße, Knödel & Nudeln */
.kategorie-label.suppe { background-color: #87cefa; }     /* Suppe */
.kategorie-label.veget { background-color: #90ee90; }     /* Vegetarisch */

.kategorie-label.gewuerz { background-color: #c0392b;}
.kategorie-label.kraut { background-color: #27ae60; }
.kategorie-label.beides { background: linear-gradient(90deg, #c0392b 55%, #27ae60 45%);}
.kategorie-label.wurzel { background-color: #d4a373; }
.kategorie-label.blatt { background-color: #a3c586; }
.kategorie-label.zwiebel { background-color: #e0b1cb; }
.kategorie-label.kohl { background-color: #b5c0d0; }
.kategorie-label.frucht { background-color: #f4a261; }
.kategorie-label.huelsen { background-color: #81b29a; }
.kategorie-label.pilze { background-color: #c9ada7; }
.kategorie-label.exoten { background-color: #e5989b; }

/* Neue Fleisch-/Fisch-Labels */
.kategorie-label.schwein { background-color: #f28c8c; }     /* Schweinefleisch */
.kategorie-label.rind { background-color: #8b0000; }        /* Rindfleisch */
.kategorie-label.kalb { background-color: #ffb6b6; }        /* Kalbfleisch */
.kategorie-label.gefluegel { background-color: #fdd835; }   /* Geflügel */
.kategorie-label.lamm { background-color: #9c6644; }        /* Lammfleisch */
.kategorie-label.ziege { background-color: #6d6875; }       /* Ziegenfleisch */
.kategorie-label.wild { background-color: #556b2f; }        /* Wildfleisch */
.kategorie-label.pferd { background-color: #cd853f; }       /* Pferdefleisch */
.kategorie-label.exotisch { background-color: #ff69b4; }    /* Exotische Fleischarten */
.kategorie-label.innerei { background-color: #f87833; }     /* Innereien */
.kategorie-label.hack { background-color: #e07a5f; }        /* Hackfleisch */
.kategorie-label.fisch { background-color: #1e90ff; }       /* Fisch */

/* Kategoriebilder Größe & Effekte + Textattribute*/
.notebox img.alignleft {
    width: 100% !important;
    max-width: 346px;
    height: auto;
    border-radius: 14px;
    border: 6px solid;
    border-color: #c49a6c;
  }

.notebox img.alignleft:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.notebox {
  background-color: #f9f9f9;
  border: 4px solid #c49a6c;
  padding: 20px;
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
}

.notebox p {
  margin: 0;
}

.notebox strong {
  color: #a0522d;
  font-weight: 600;
}

/* ===============================
   📁 9. Archivansicht
   Beschreibung:
   - Layout für Beiträge in Archivseiten
   - Bildgröße, Abstand, Textstruktur
   - Hover-Zoom für Bilder
=============================== */

.archiv-eintrag {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.archiv-bild img {
  max-width: 250px;
  height: auto;
  border-radius: 4px;
}

.archiv-text {
  flex: 1;
  min-width: 0;
}

/* 📐 Änderungen für Hueman-pro Theme */
/* 📐 Layout für Artikel in Kategorieansicht */
.post-row article {
  max-width: 800px;
  margin: 0 auto;
  padding: 1em 0;
}

.entry-wrapper.zweispaltig {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5em;
  align-items: flex-start;
  justify-content: flex-start;
}

.entry-wrapper.zweispaltig .entry-text {
  flex: 1 1 65%;
}

.entry-wrapper.zweispaltig .entry-image.kategorie-bild-wrapper {
  flex: 0 0 180px;
  max-width: 180px;
  margin-top: 0.3em;
  text-align: left;
}

.entry-wrapper.zweispaltig .entry-image.kategorie-bild-wrapper img.kategorie-bild {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.archive .grid-item .post-inner {
    padding-top: 10px; /* Abstand innerhalb des Artikels */
}

/* Beitragsbilder in Kategorie-Übersicht verkleinern und zentrieren */
.archive .post-thumbnail img,
.category .post-thumbnail img,
.tag .post-thumbnail img {
    max-width: 336px;         /* Bildbreite begrenzen */
    height: auto;             /* Höhe automatisch anpassen */
    display: inline-block;    /* Für zentrierte Darstellung */
    margin-bottom: 15px;
    text-align: center;
    border-radius: 8px;
    border: 4px solid #c49a6c;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.3s ease; /* Für Hover-Effekt */
}

/* Hover-Effekt: Bild leicht vergrößern */
.archive .post-thumbnail img:hover,
.category .post-thumbnail img:hover,
.tag .post-thumbnail img:hover {
    transform: scale(1.09);
}

/* Wrapper zentrieren und Abstand nach oben */
.archive .post-thumbnail,
.category .post-thumbnail,
.tag .post-thumbnail {
    text-align: center;
    margin-top: 80px;         /* Bild tiefer setzen – vorher 40px */
}

/* Abstand zwischen Bild und Text verringern */
.archive .post-content,
.category .post-content,
.tag .post-content {
    margin-top: -30px;     /* vorher evtl. 40px oder mehr */
    padding-top: 0;
}

/* Optional: Abstand oberhalb des Titels verringern */
.archive .post-title,
.category .post-title,
.tag .post-title {
    margin-top: 10px;
}

/* ===============================  
📁 10. Inhaltsverzeichnis – optimierte Version  
Beschreibung:  
- Einheitliche Schrift (Inter oder Source Sans Pro)  
- Klare Buchstaben-Überschriften mit Balken  
- Lesbare Rezeptlinks mit Hover-Effekt  
- Ruhige Scrollbox mit Hintergrund  
=============================== */  

.inhaltsverzeichnis-filter {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  padding: 10px 0;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 10px;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.inhaltsverzeichnis-filter a {
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
  display: block;
  text-align: center;
  padding: 8px;
  font-size: 16px;
  font-weight: normal;
  color: #444;
  background-color: #f0f0f0;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.inhaltsverzeichnis-filter a:hover {
  background-color: #888;
  color: #fff;
  font-weight: bold;
}

.inhaltsverzeichnis-filter a.active {
  background-color: #b30000;
  color: #fff;
  font-weight: bold;
}

.inhaltsverzeichnis-filter a.has-posts {
  font-weight: bold;
  color: #8c8;
}

.inhaltsverzeichnis-box h3 {
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
  font-size: 1.3em;
  font-weight: bold;
  color: #b30000;
  margin-top: 1.2em;
  border-left: 4px solid #b30000;
  padding-left: 8px;
}

.inhaltsverzeichnis-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1em;
}

.inhaltsverzeichnis-box li {
  margin-bottom: 0.4em;
}

.inhaltsverzeichnis-wrapper {
  height: 76vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.inhaltsverzeichnis-scrollbox {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 10px 60px;
  background-color: #fafafa;
  border-radius: 6px;
}

.inhaltsverzeichnis-eintrag {
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.inhaltsverzeichnis-eintrag a {
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
  flex-grow: 1;
  margin-left: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  text-decoration: none;
}

.inhaltsverzeichnis-eintrag a:hover {
  color: #d99025;
  text-decoration: underline;
}

.inhaltsverzeichnis-eintrag a::after {
  content: "";
  display: block;
  flex-grow: 1;
  height: 1px;
  border-bottom: 1px dotted #ccc;
  margin: 0 12px;
  transition: border-color 0.3s ease;
}

.inhaltsverzeichnis-eintrag:hover a::after {
  border-bottom: 2px dotted #d99025;
}

@media (max-width: 600px) {
  .inhaltsverzeichnis-eintrag a::after {
    display: none;
  }
}

/* ===============================
   📁 11. Druckansicht (Print-Optimierung)
   Beschreibung:
   - Reduziert Layout für Ausdruck
   - Versteckt nicht benötigte Elemente
=============================== */

@media print {
  body {
    background: white;
    color: black;
    font-size: 12pt;
    line-height: 1.5;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .rezept-box {
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
  }

  .lightbox-container,
  .rezept-link,
  nav,
  footer,
  .print-button,
  .social-share,
  .comments-area,
  .widget-area,
  .druck-link {
    display: none !important;
  }

  img {
    max-width: 100%;
    height: auto;
    page-break-inside: avoid;
  }

  table {
    page-break-inside: avoid;
    border-collapse: collapse;
    width: 100%;
  }

  h1, h2, h3, .sektionen-font {
    page-break-after: avoid;
    color: black;
  }

  .arbeitsschritt {
    page-break-inside: avoid;
    border-left: 2px solid #999;
    background: none;
    box-shadow: none;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }

  .site-title,
  .site-description,
  .site-branding,
  .page-header,
  .entry-header,
  .entry-meta,
  .site-info,
  .footer-widgets,
  .breadcrumbs,
  .header-image,
  .custom-logo-link,
  header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    top: -9999px !important;
  }

  .entry-content {
    margin-top: 10 !important;
    padding-top: 0 !important;
  }
}

@page {
  margin: 20mm;
}

/* ===============================
   📁 12. Responsive Anpassungen
   Beschreibung:
   - Optimierungen für mobile Geräte
   - Bildverhalten und Inhaltsverzeichnis
=============================== */

@media (max-width: 600px) {
  img.alignleft {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
    max-width: 100%;
  }

  .inhaltsverzeichnis-eintrag a::after {
    display: none;
  }
}

/* ===============================
   📁 13. Theme-spezifische Klassen
   Beschreibung:
   - Anpassungen für Navigation, Titel, Beitragsstruktur
=============================== */

.site-title {
  font-size: 1.8em;
  line-height: 1.2;
  margin: 0.75em 0;
  margin-top: 0;
  margin-bottom: 0;
  max-height: 45px;
  overflow: hidden;
}

.entry-content {
  display: flex;
  flex-direction: column;
}

.navigation-wrapper {
  display: flex;
  justify-content: flex-end;
  padding-right: 0px;
}

.nav-links .prev-post a,
.nav-links .next-post a {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #888888;
  text-decoration: bold;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-links .prev-post a:hover,
.nav-links .next-post a:hover {
  background-color: #f0f0f0;
  color: #000000;
}

.nav-links .next-prev-text {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: bold;
  color: #888888;
  display: inline-block;
  margin-bottom: 5px;
}

.nav-links .next-prev-text i {
  margin: 0 5px;
  color: #777;
}

body.single-rezept .nav-links {
  display: none !important;
}

/* ===============================
   📁 14. Plugin-/Theme-Reste (bewusst aktiv)
   Beschreibung:
   - Stil-Anpassungen für das Plugin "Simple Lightbox" (SLB)
   - Deaktivierung von Theme-Elementen wie Sidebar .s2, Autorenbox, Kommentare etc.
   - Diese Regeln sind bewusst gesetzt, um bestimmte Bereiche auszublenden
=============================== */

/* 🎞️ Simple Lightbox – Typografie-Anpassung */
#slb_viewer_wrap .slb_theme_slb_black .slb_data_title {
  font-family: 'Roboto', sans-serif !important;
}

#slb_viewer_wrap .slb_theme_slb_black .slb_data_desc {
  font-family: 'Open Sans', sans-serif !important;
}

.slb_group_status {
  display: flex !important;
  justify-content: flex-end !important;
}

.slb_template_tag_ui_group_status {
  display: block !important;
  padding-right: 10px;
}

/* 🧹 Theme-Elemente gezielt ausgeblendet */
footer.author-bio-section,
.post-comments,
.entry-footer,
.entry-header,
footer .copyright a[href*="themegrill.com"] {
  display: none !important;
}

/* 📦 Sidebar .s2 – dauerhaft deaktiviert */
.sidebar.s2 {
  display: none !important;
  /* Diese Sidebar wird bewusst nicht angezeigt – z. B. auf Rezeptseiten */
}

/* 🖼️ Optional: Headerbild-Anpassung */
.featured-image-header {
  height: 220px !important;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* ===============================
   📁 15. Schrift im Header & Slider
   Beschreibung:
   - Gestaltet Website-Titel und Beschreibung im Header
   - Blendet Slider-Pfeile aus, wenn kein Slider genutzt wird
=============================== */

/* === 1. Website-Titel im Header === */
.site-title a {
    color: #ff6600 !important;         /* Orange – ändere nach Wunsch */
    font-size: 36px;
    font-family: 'Roboto', serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 2.0px;
}

/* === 2. Beschreibung unter dem Titel === */
.site-description {
    color: #ee9955 !important;         /* Dunkelgrau – ändere nach Wunsch */
    font-size: 18px;
    font-style: italic;
    margin-left: 30px;
}

/* === 3. Slider-Pfeile ausblenden (optional) === */
.tc-header-slider .navig-prev,
.tc-header-slider .navig-next,
.tc-header-slider .navig-prev:before,
.tc-header-slider .navig-next:before,
.tc-header-slider .navig-prev svg,
.tc-header-slider .navig-next svg,
.tc-header-slider .navig-prev i,
.tc-header-slider .navig-next i {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* ===============================
   🧹 Entfernbare oder veraltete Regeln
   Beschreibung:
   - Diese Regeln blenden Theme-Elemente aus, die du eventuell wieder aktivieren möchtest
   - Entferne sie nur, wenn du sicher bist, dass du die Funktionen nicht mehr brauchst
=============================== */

footer.author-bio-section,
.post-comments,
.entry-footer,
.entry-header,
footer .copyright a[href*="themegrill.com"] {
  display: none !important;
}

/* ===============================
   📁 15. Titel im Beitrag
   Beschreibung:
=============================== */
/* Automatisch generierten Inhalts-Titel ausblenden */
.post .post-title.entry-title,
.single .post-title.entry-title {
  display: none !important;
}

.archive .post-title.entry-title,
.blog .post-title.entry-title,
.category .post-title.entry-title {
  display: none !important;
}

/* Sichtbarkeit für den gewünschten Page-Title sicherstellen */
.page-title.hu-pad h1 {
  display: block;
  visibility: visible;
}

@media print {
  .post-title.entry-title {
    display: none !important;
  }
}

.page-title.hu-pad h1 {
  font-size: 1.7em;   /* Standard ist meist 2em – hier größer */
  font-weight: bold;  /* sorgt für kräftige Darstellung */
}

/* Verstecktes h2 komplett unsichtbar und ohne Platzbedarf */
.rezept-box h2.title-spaced[hidden] {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Leere Absätze (nur Kommentar oder Whitespace) ausblenden */
.rezept-box p:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ersten sichtbaren Absatz bündig starten */
.rezept-box > p:first-of-type {
  margin-top: 0 !important;
}

/* Datum aus Beiträgen entfernen */
.archive .post-meta .post-date,
.search .post-meta .post-date,
.blog .post-meta .post-date {
    display: none !important;
}
