@charset "UTF-8";
/* CSS Document */

.blog-post {
  max-height: 7em; 
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}
.fade-out {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2em; /* Höhe des Fade-Out */
  background: linear-gradient(to bottom, rgba(235, 235, 235,0), rgba(235, 235, 235,1));
  transition: opacity 0.3s ease;
}
  .read-more, .read-less {
  display: block;
  margin-top: 10px;
  cursor: pointer;
        }
.read-less {
  display: none;
}