.more-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  margin: 1.5em 0;
}

.more-posts-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.more-posts-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.more-posts-thumb {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #f0f0f0;
}

.more-posts-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-posts-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  background: #e8e8e8;
}

.more-posts-info {
  padding: 0.6em 0.8em;
}

.more-posts-date {
  display: block;
  font-size: 0.8em;
  color: #888;
  margin-bottom: 0.2em;
}

.more-posts-title {
  display: block;
  font-size: 0.95em;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 500px) {
  .more-posts-grid {
    grid-template-columns: 1fr;
  }
}
