/* SimpleBlog CSS */

.simpleblog-wrapper {
  padding: 1rem 0;
}

.simpleblog-categories .badge {
  font-size: 0.875rem;
  padding: 0.4em 0.8em;
  text-decoration: none;
  transition: background-color 0.2s;
}

.simpleblog-card {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  border: none;
}

.simpleblog-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}

.simpleblog-card .card-img-top {
  object-fit: cover;
  height: 200px;
}

.simpleblog-card .card-title a {
  color: inherit;
  text-decoration: none;
}

.simpleblog-card .card-title a:hover {
  color: #007bff;
}

/* Single post */
.simpleblog-post .post-thumbnail img {
  max-height: 450px;
  width: 100%;
  object-fit: cover;
}

.simpleblog-post .post-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Comments */
.simpleblog-comments .card {
  border-left: 4px solid #007bff;
}

.simpleblog-comment-form label {
  font-weight: 600;
}
