/* ========== GRID & LAYOUT ========== */
.lmn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px; /* Abstand nach unten */
}

/* ========== CARD ========== */
.lmn-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
}
.lmn-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.lmn-card-body { padding: 16px; }

.lmn-title {
  font-size: 1.1rem;
  margin: .4rem 0;
}
.lmn-excerpt {
  opacity: .9;
  margin: 0 0 .6rem;
}

/* ========== META-BEREICH ========== */
.lmn-meta {
  font-size: .9rem;
  opacity: .8;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.lmn-chip {
  background: #eef2ff;
  color: #3730a3;
  border-radius: 999px;
  padding: .15rem .6rem;
  font-size: .8rem;
}
.lmn-reading-time {
  font-size: .9rem;
  opacity: .8;
  margin-top: 2px;
}

/* ========== FOOTER ========== */
.lmn-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lmn-read {
  text-decoration: none;
  font-weight: 600;
}
.lmn-views { font-variant-numeric: tabular-nums; }

/* ========== LOAD MORE BUTTON ========== */
.lmn-loadmore {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
}
.lmn-loadmore:hover { background: #f9fafb; }
.lmn-loadmore.is-loading {
  opacity: .6;
  cursor: wait;
}
