/* Blog-Karten-Styles - isolierte Komponente */
.blog-card-component .blog-item {
  border-left: none !important;
  padding-left: 0 !important;
}

.blog-card-component .blog-item article {
  border-radius: 10px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
  border: none !important;
}

.blog-card-component .blog-item article:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.blog-card-component .blog-item .card-body {
  padding: 1.5rem !important;
}

.blog-card-component .blog-item .card-footer {
  background-color: white !important;
  border-top: 1px solid rgba(0,0,0,0.05) !important;
  padding: 1rem 1.5rem !important;
}

.blog-card-component .blog-item .btn-primary {
  padding: 0.4rem 1rem !important;
  font-weight: 500 !important;
}

/* Verbesserte Lesbarkeit für Kartentext - GERÄTEÜBERGREIFEND */
.blog-card-component .blog-item .card-text,
.blog-card-component .blog-card .card-text,
html body .blog-card-component .blog-item .card-text,
html body .blog-card-component .blog-card .card-text {
  font-size: 1.0rem !important;
  max-height: 15.5rem !important;
  color: #333 !important;
  line-height: 1.5 !important;
}

/* Tablet-spezifische Anpassungen explizit setzen */
@media (max-width: 1199px) and (min-width: 768px) {
  html body .blog-card-component .blog-item .card-text,
  html body .blog-card-component .blog-card .card-text {
    font-size: 1.0rem !important;
    max-height: 15.5rem !important;
  }
}

/* Smartphone-spezifische Anpassungen */
@media (max-width: 767px) {
  html body .blog-card-component .blog-item .card-text,
  html body .blog-card-component .blog-card .card-text {
    font-size: 0.95rem !important;
    max-height: 12rem !important;
  }
} 