/* ========================
   Basis-Design
   ======================== */
#fullscreen-menu {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

#fullscreen-menu.show {
  display: flex !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

:root {
  --bordeaux: #5e2129;
  --petrol: #2e5e4f;
  --grau: #edf0f2;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Libre Baskerville', serif;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bordeaux, #5a1a27);  /* <-- Bordeaux-Hintergrund */
  overflow-x: hidden;
}
body.menu-open {
  background: var(--bordeaux, #5a1a27);  /* <-- Wenn Menü offen ist */
}
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--grau);
  color: #1a1a1a;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background-color: #e0f8ec;
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: #666;
}
.inline-bild {
  display: none;
}

.site-footer a {
  color: #666;
  text-decoration: none;
}


/* ========================
   Header & Navigation
   ======================== */

.main-header {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #e0f8ec;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  gap: 4em;
  position: relative;
  flex-wrap: nowrap;   /* ✅ verhindert das Umklappen */
  z-index: 0;
}


.logo img {
  height: 101px;
  object-fit: contain;
}

.logo {
  position: relative;
  min-height: 120px;
}


.vertical-extension {
  position: fixed; /* vorher: absolute */
  top: 0;
  left: 118px;
  width: 4.25px;
  height: 160px; /* feste Höhe! */
  background-color: #5e2129;
  z-index: 9999; /* liegt ganz oben */
  pointer-events: none; /* klickt nicht durch */
}



 .site-footer {
  position: relative;
}

.footer-line {
  position: absolute;
  top: 0;
  left: 118px; /* Abstand zum linken Rand */
  width: 4.25px;
  height: 100%;
  background-color: #5e2129;
  z-index: 1;  /* über dem Hintergrund, aber unter dem Text */
}

.menu-toggle {
  display: none;
}
#slide-menu {
  display: none;
}

.main-nav {
  flex-grow: 1;
}

.main-nav ul {
  display: flex;
  justify-content: flex-start;
  gap: 6em;
  list-style: none;
}

.main-nav a {
  text-decoration: none;
  color: var(--petrol);
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--bordeaux);
  border-bottom: 3px solid var(--bordeaux);
  padding-bottom: 3px;
  transform: scale(1.05);
  
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1400;
}

.menu-overlay.active {
  display: block;
}


/* ========================
   Main-Content z-Index
   ======================== */

main {
  position: relative;
  z-index: 10;
}

/* ========================
   Hero-Bereich
   ======================== */

.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  padding: 2rem 10rem;;
  background: linear-gradient(135deg, #f3edb5, #cbf5ea);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  flex-wrap: nowrap;
}

.hero-text {
  flex: 1 1 60%;
  max-width: 60%;
  margin-left: 3rem;
  margin-right: 1,5rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--bordeaux);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
}

.subline {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--petrol);
  margin-bottom: 1rem;
}

.hero-image {
  flex: 0 1 35%;
  max-width: 25%;
  min-width: 200px;
  align-self: flex-start;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(94, 33, 41, 0.4);
}

.impuls-image-wrapper {
  max-width: 400px;
  margin: 0 auto;
}

.impuls-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.impuls-image-wrapper img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(94, 33, 41, 0.4);
}

/* ========================
   Impulsbereich
   ======================== */

#impuls-container {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#impuls-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.impuls-layout {
  display: flex;
  background-color: #eafff3;
  padding: 2rem 10rem;
  gap: 4rem;
  align-items: flex-start;
}

.impuls-left {
  flex: 3;
  padding-left: 7rem;
}

.impuls-right {
  flex: 2;
  top: 100px;
  align-self: start;
}

.impuls-right img {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.impuls-right img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(94, 33, 41, 0.4);
}

.impuls-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.impuls-entry {
  background-color: #e0f8ec;
  padding: 0.5rem;
  border-radius: 12px;
  margin: 0.5rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.impuls-entry:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.impuls-entry h3 {
  margin: 0 0 0.5rem 0;
  color: var(--bordeaux);
  font-size: 1.2rem;
}

.teaser {
  font-style: italic;
  color: #444;
  font-size: 0.95rem;
}

#pagination {
  text-align: center;
  margin-top: 2rem;
}

#pagination button {
  background-color: #e0f8ec;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
  border-radius: 8px;
  padding: 6px 12px;
  margin: 0 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#pagination button:hover {
  background-color: var(--petrol);
  color: white;
  transform: scale(1.05);
}

#pagination .active-page-btn {
  background-color: var(--bordeaux);
  color: white;
  font-weight: bold;
  border-color: var(--bordeaux);
  pointer-events: none;
}

/* ========================
   Popups für Impulsseite
   ======================== */

.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* wird per JS auf "flex" gesetzt */
  align-items: center;
  justify-content: center;
  z-index: 10000; 
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 30%;
  max-height: 80%;
  overflow-y: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}


/* ========================
   Zur-Person-Seite
   ======================== */

.seitenbilder-container {
  background: linear-gradient(135deg, #f3edb5, #cbf5ea);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  align-self: flex-start;
  margin-left: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 700px;
}

.seitenbilder {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.seitenbilder .seitenbild {
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  margin-left: auto;
  margin-right: 0;
}

.seitenbilder .seitenbild:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(94, 33, 41, 0.4);
}

.intro {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

h3 {
  color: var(--bordeaux);
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #e0f8ec;
  font-size: 0.9rem;
  color: #666;
}

/* ========================
   Kontaktbereich
   ======================== */

.kontakt-layout {
  padding-left: 4rem;
}

.kontakt-container {
  display: flex;
  margin-left: 7rem;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: wrap;
}

.kontakt-text {
  max-width: 400px;
}

.kontakt-formular {
  max-width: 600px;
}

.kontakt-formular input,
.kontakt-formular textarea {
  width: 100%;
  max-width: 100%;
}

.kontakt-formular input[name="your-name"],
.kontakt-formular input[name="your-email"] {
  height: 30px;
  width: 300px;
  max-width: 90%;
}

.kontakt-formular input[name="your-subject"],
.kontakt-formular textarea[name="your-message"] {
  width: 700px;
  max-width: 90%;
}

.kontakt-formular input[name="your-subject"] {
  height: 30px;
}

.kontakt-formular textarea[name="your-message"] {
  height: 250px;
}

body .kontakt-formular input.wpcf7-text:focus,
body .kontakt-formular input.wpcf7-email:focus,
body .kontakt-formular textarea.wpcf7-textarea:focus {
  border-color: var(--petrol) !important;
  outline: none !important;
  box-shadow: 0 0 5px rgba(46, 94, 79, 0.5) !important;
}

.kontakt-formular form.wpcf7-form input[type="submit"] {
  background-color: #7B2E2E;
  color: white;
  margin-top: 20px;
  padding: 8px 80px;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.kontakt-formular form.wpcf7-form input[type="submit"]:hover {
  background-color: var(--petrol); 
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(94, 33, 41, 0.4);
}

.datenschutz-box {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 15px;
  margin-bottom: 20px;
}

.datenschutz-box input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.main-wrapper-outer {
  display: flex;
  flex-direction: column;
}



/* ========================
   Aktuelles
   ======================== */

.kachel-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.aktuell-kachel {
  display: block;
  width: calc(40% - 1rem);
  padding: 1rem;
  background: #fffef5;
  border: 2px solid var(--bordeaux);
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.aktuell-kachel:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.kachel-bild {
  flex-shrink: 0;
}

.kachel-bild img {
  width: 120px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Inhalt der Kachel */
.kachel-inhalt {
  flex: 1;
}

.kachel-inhalt h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0 0.3rem;
  color: var(--bordeaux);
}

.kachel-inhalt img {
  float: right;
  width: 120px;
  height: auto;
  margin: 0 0 1rem 1rem;
  border-radius: 12px;
  object-fit: cover;
}

.kachel-datum {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.kachel-inhalt a {
  display: inline-block;
  margin-top: 1rem;
  background-color: var(--bordeaux, #5a1a27);
  color: var(--gelb, #fff8a6);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.kachel-inhalt a:hover {
  background-color: #7a2738;
}

/* ========================
   Einzelbeitrag / Post
   ======================== */

.post-container {
  max-width: 1700px;
  margin: 2rem auto;
  margin-left: 4rem;
  padding: 2rem 3rem;
  background: #fffef5;
  border: 2px solid var(--bordeaux);
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.post-inhalt h1 {
  color: var(--bordeaux);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.post-datum {
  font-weight: bold;
  color: #7a2738;
  margin-bottom: 1.5rem;
}

.post-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-right: 1rem;
  overflow: hidden; /* wichtig für float-Korrektur */
}

.post-text img {
  float: right;
  width: 650px;
  height: auto;
  margin: 0 0 1.5rem 2rem;
  border-radius: 12px;
  object-fit: cover;
}


.zurueck-button-wrapper {
  margin-top: 2rem;
  text-align: right;
}

.zurueck-button {
  display: inline-block;
  background-color: var(--bordeaux);
  color: var(--gelb, #fff8a6);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.zurueck-button:hover {
  background-color: #7a2738;
}

#reply-title,
.comment-notes,
.comment-form label {
  font-size: 0.85rem;
  line-height: 1.3;
}

/* Avatar im Kommentar ausblenden */
.comment-author img {
  display: none;
}

/* Grundlegende Kommentar-Textstile */
.comment-content,
.comment-meta,
.comment-author,
.comments-title {
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Links im Kommentartext */
.comment-content a,
.comment-body a {
  color: var(--bordeaux);
  text-decoration: underline;
}

.comment-content a:hover,
.comment-body a:hover {
  color: #7a2738; /* dunkleres Bordeaux */
}

/* Metainfos und Autorlinks */
.comment-meta a,
.comment-author a {
  color: #306d6f;
  text-decoration: underline;
}

.comment-meta a:hover,
.comment-author a:hover {
  color: #20494b;
}

/* "Antworten"-Link */
.comment-reply-link {
  font-size: 0.85rem;
  color: var(--bordeaux);
  text-decoration: underline;
  font-weight: normal;
}

.comment-reply-link:hover {
  color: #7a2738;
}

/* Gesamter Kommentarbereich */
#comments {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid var(--bordeaux);
}

/* Kommentar-Formular-Styling */
.comment-respond {
  margin-top: 2rem;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 600px;
}

/* Beschriftung der Eingabefelder */
.comment-form label {
  font-weight: bold;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

/* Eingabefelder selbst */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 0.7rem;
  font-family: inherit;
  background: #fffef9;
}

.comment-form textarea {
  min-height: 120px;
}

/* Checkbox zur Speicherung */
.comment-form .comment-form-cookies-consent {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Absendebereich */
.comment-form .form-submit {
  margin-top: 1rem;
}

/* Button "Kommentar abschicken" */
.comment-form input[type="submit"] {
  background-color: var(--bordeaux);
  color: var(--gelb, #fff8a6);
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.comment-form input[type="submit"]:hover {
  background-color: #7a2738;
}

body.page-id-10 .aktuelles-layout {
  min-height: 100vh;
}


/* ========================
   Mobile Styles
   ======================== */

@media (max-width: 768px) {

  body.page-id-50 {
    overflow-x: hidden;
    box-sizing: border-box;
  }

.fullscreen-menu {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #e0f8ec;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  overflow-y: auto;
}

.fullscreen-menu.show {
  display: flex !important;
}

.fullscreen-menu:not(.show) {
  display: none !important;
}

.fullscreen-menu .close-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--bordeaux);
  cursor: pointer;
}

.fullscreen-nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.fullscreen-nav li {
  margin: 1rem 0;
}

.fullscreen-nav a {
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--petrol);
  font-weight: bold;
  transition: color 0.3s ease;
}

.fullscreen-nav a:hover {
  color: var(--bordeaux);
}

 /* ========================
   Slide-Menü (Mobile only)
   ======================== */
@media (max-width: 768px) {

  body.menu-open {
    perspective: 1000px;
    overflow-x: hidden;
  }

  body.menu-open .main-header {
    visibility: hidden;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--bordeaux, #5a1a27);
    color: var(--gelb, #fff8a6);
    padding: 0.5rem 1rem;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    border-radius: 6px;
  }

  #slide-menu {
    display: block !important;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--bordeaux, #5a1a27);
    color: var(--gelb, #fff8a6);
    padding: 3rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    box-shadow: none;
  }

  .menu-open #slide-menu {
    transform: translateX(0);
  }

  #slide-menu ul {
    list-style: none;
    padding-top: 5rem;  /* statt margin-top, damit unter dem Button */
    padding-left: 0;
    margin: 0;
    text-align: left;
  }

  #slide-menu li {
    margin-bottom: 1.2rem;
  }

  #slide-menu a {
    color: var(--gelb, #fff8a6);
    font-weight: bold;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
  }

  #slide-menu a:hover {
    color: #fff;
  }

  body.menu-open .main-wrapper-outer {
    transform: scale(0.5) translate(-30%, -10%) rotateY(-12deg);
    transform-origin: left center;
    border-radius: 1rem;
    box-shadow: -30px 0 100px rgba(255, 248, 166, 0.5); /* GELBER 3D-SCHEIN */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }





  /* ========================
     Layout mobile Seiten
     ======================== */

@media (max-width: 768px) {
  .main-nav,
  .menu-overlay,
  .vertical-extension,
  .footer-line {
    display: none;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .hero-text {
    margin-left: 0;
    max-width: 100%;
    text-align: left;
  }

  .hero-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }

  /* ========================
     Kontaktseite
     ======================== */

  .kontakt-layout {
    overflow-x: hidden;
    width: 100vw;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .kontakt-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 1rem;
    margin-left: 0 !important;
    width: 100%;
  }

  .kontakt-text {
    text-align: center !important;
  }

  body.page-id-50 .kontakt-container,
  body.page-id-50 .kontakt-text,
  body.page-id-50 .kontakt-formular,
  body.page-id-50 input,
  body.page-id-50 textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  input,
  textarea {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  /* ========================
     Impulsseite
     ======================== */

  .impuls-layout {
    display: block;
    padding: 1rem;
  }

  .impuls-left,
  .impuls-right {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .impuls-right {
    position: static;
    margin-top: 2rem;
  }

  .impuls-left {
    text-align: center;
    padding-left: 0 !important;
  }

  .impuls-left h2,
  .impuls-left p,
  .impuls-box {
    text-align: center;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .impuls-image {
    display: block;
    margin: 2rem auto 0 auto;
    max-width: 90%;
  }

.popup-content {
    width: 90vw;
    height: 90vh;
    max-width: none;
    max-height: none;
    overflow-y: auto;
    padding: 1.5rem;
    font-size: 1rem;
    box-sizing: border-box;
  }


  .popup-content h3 {
    font-size: 1.3rem;
  }

  .popup-content p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .close-btn {
    top: 10px;
    right: 15px;
    font-size: 2rem;
  }

  .close-btn {
    top: 10px;
    right: 15px;
    font-size: 2rem;
  }
}

  /* ========================
     Seitenbilder
     ======================== */

  .seitenbilder-container {
    display: none !important;
    background: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .seitenbilder {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .seitenbilder .seitenbild {
    float: right;
    width: 120px;
    max-width: 50%;
    height: auto;
    margin: 0 0 1rem 1rem;
    border-radius: 10px;
    display: block;
    box-shadow: none;
  }

  .seitenbilder .seitenbild:hover,
  .seitenbilder:hover .seitenbild,
  .seitenbilder-container:hover .seitenbild {
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
    scale: 1 !important;
  }

  .seitenbild + p {
    clear: both;
  }

  .text-mit-bild {
    overflow: hidden;
  }

  .inline-bild {
    float: right;
    width: 40%;
    max-width: 140px;
    margin: 0.5rem 0 0.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
  }
}
/* ========================
     Aktuelles
   ======================== */

.aktuell-kachel {
    width: 100%;
  }
.post-container {
    margin: 1rem;
    padding: 1rem;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .post-text img {
    width: 100%;
    height: auto;
    float: none;
    margin: 1rem 0;
  }
}
.popup-overlay.active ~ .main-nav,
.popup-overlay.active ~ .menu-overlay,
.popup-overlay.active ~ #slide-menu {
  display: none !important;
}
.popup-overlay.active ~ .fullscreen-menu {
  display: none !important;
}
body.popup-open .fullscreen-menu,
body.popup-open .menu-toggle,
body.popup-open .menu-overlay,
body.popup-open .main-nav,
body.popup-open #slide-menu {
  display: none !important;
}