/* Blog pages — scoped styles for cards, single post, and filter bar */

.blog-card {
  background: #fff;
  border: 1px solid #e4e9ef;
  margin-bottom: 30px;
  transition: box-shadow 0.25s ease;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(36, 58, 81, 0.14); }
.blog-card-img a { display: block; overflow: hidden; }
.blog-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 20px 22px 24px; }
.blog-card-meta {
  font-size: 13px;
  color: #7b8a99;
  margin-bottom: 10px;
}
.blog-card-meta:after { content: ""; display: table; clear: both; }
.blog-card-cat {
  float: left;
  background: #5eb0e2;
  color: #fff;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.blog-card-cat:hover { color: #fff; text-decoration: none; }
.blog-card-date { float: right; line-height: 22px; }
.blog-card-body h3 {
  font-size: 19px;
  margin: 0 0 10px;
  line-height: 1.35;
}
.blog-card-body h3 a { color: #243a51; }
.blog-card-body h3 a:hover { color: #5eb0e2; text-decoration: none; }
.blog-card-body p { color: #5f6f7f; font-size: 14px; }
.blog-card-more {
  color: #5eb0e2;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-card-more:hover { text-decoration: none; }

/* Single post */
figure.image-anime { margin: 0 0 26px; }
figure.image-anime img { width: 100%; height: auto; border-radius: 4px; }
.post-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: #7b8a99;
  font-size: 14px;
}
.post-meta-list li { display: inline-block; margin-right: 22px; }
.post-meta-list i { color: #5eb0e2; margin-right: 6px; }
.post-entry { font-size: 16px; color: #3d4f5f; line-height: 1.75; }
.post-entry h2 { color: #243a51; font-size: 26px; margin: 34px 0 14px; }
.post-entry h3 { color: #243a51; font-size: 21px; margin: 28px 0 12px; }
.post-entry ul { padding-left: 22px; margin-bottom: 18px; }
.post-entry li { margin-bottom: 8px; }
.post-entry img { max-width: 100%; height: auto; }
.post-tags a {
  display: inline-block;
  background: #eef4f9;
  color: #243a51;
  border-radius: 3px;
  padding: 3px 10px;
  margin: 0 6px 6px 0;
  font-size: 13px;
}
.post-tags a:hover { background: #5eb0e2; color: #fff; text-decoration: none; }
.post-share { text-align: right; }
.post-share a {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background: #eef4f9;
  border-radius: 50%;
  color: #243a51;
  margin-left: 6px;
}
.post-share a:hover { background: #5eb0e2; color: #fff; }

/* Filter bar (category/tag filtering via posts.json) */
.sdr-filter-bar { margin-bottom: 30px; }
.sdr-filter-bar .sdr-active-cat {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 14px;
  background: #5eb0e2;
  color: #fff;
  border-radius: 4px;
}
.sdr-filter-clear { font-size: 13px; color: #5f6f7f; text-decoration: underline; }

/* Pagination (BS3) */
.page-pagination { text-align: center; margin-top: 10px; }
.page-pagination .pagination > li > a {
  color: #243a51;
  border-color: #e4e9ef;
}
.page-pagination .pagination > li > a:hover {
  color: #fff;
  background: #5eb0e2;
  border-color: #5eb0e2;
}
.page-pagination .pagination > .active > a,
.page-pagination .pagination > .active > a:hover {
  background: #243a51;
  border-color: #243a51;
  color: #fff;
}
