/* Post thumbnail styling for category pages */
.post-image-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .post-image-container {
  background-color: #252525;
}

.post-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.post-thumbnail:hover {
  transform: scale(1.05);
}

.post-item {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

[data-theme="dark"] .post-item {
  border-bottom-color: #333;
}

.post-content-preview {
  padding: 0 10px;
}
