/* Module: WP Recent Posts (3 columns) */
.sp-module .blog-title{
  text-align: center;
  padding: 50px 15px 15px 15px;
  font-size: 2.6rem;
}
.wp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 0px 15px 75px 15px;
}
.wp-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 10px;
  transition: box-shadow .2s ease;
}
.wp-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.wp-thumb img {
  width: 120px; height: 84px;
  object-fit: cover;
  border-radius: 6px;
}
.wp-thumb--placeholder {
  background: #f7f7f7;
  border-radius: 6px;
}
.wp-post-info { display: flex; flex-direction: column; gap: 6px; }
.wp-cat {
  background: #0073aa; color: #fff;
  font-size: 12px; padding: 3px 8px;
  border-radius: 12px; width: max-content;
}
.wp-title { font-size: 16px; margin: 0; }
.wp-title a { color: #222; text-decoration: none; }
.wp-title a:hover { text-decoration: underline; }
