a.more-link {
display: none
}


.blog-entry-readmore a {
color: white !important;
background: #8fb019 !important;
}


.thumbnail-caption {
display: none !important;
}

.custom-box.simple {
  border: 1px solid #e0e0e0;
  background: #fbfbfb;
  padding: 14px;
  border-radius: 6px;
  margin: 10px 0;
}
.custom-box.simple h3 { margin-top: 0; font-size: 1.05em; }
.custom-box.simple ul { margin: 0.4em 0 0 1.2em; padding: 0; }


/* Box-Styling: leicht grauer Hintergrund mit sehr dezentem Grünstich und 1px grünlichem Rand */
.box {
  padding: 12px 16px;
  border-radius: 6px;
  margin: 12px 0;
  color: #223; /* dunklere Textfarbe für guten Kontrast */
  font-size: 15px;
  line-height: 1.4;
  box-sizing: border-box;
}

/* Spezifisches Styling für style="simple" */
.box-simple {
  background-color: rgba(230, 241, 229, 0.9); /* sehr heller grünlicher Stich auf fast grauem Ton */
  /* Alternativ: ein leicht grauer Grundton mit minimalem Grün: rgba(245,245,244,1) + sehr feiner grünlicher Overlay */
  border: 1px solid rgba(137, 183, 139, 0.55); /* 1px leicht grüner Rand */
  box-shadow: none;
}

/* Optional: p innerhalb der Box etwas Abstand nach unten entfernen */
.box-simple p {
  margin: 0;
  padding: 0;
}

/* Kleine Anpassung für dunkle Themes (optional) */
@media (prefers-color-scheme: dark) {
  .box-simple {
    background-color: rgba(20, 30, 24, 0.45); /* dunklere, dezente Variante */
    border-color: rgba(60, 110, 80, 0.45);
    color: #e6f0e8;
  }
}