
/* NV Related Posts — minimal, responsive grid */
.nv-related-posts { 
  border-top: 2px solid #eee; 
  margin-top: 24px; 
  padding-top: 16px; 
  font-family: inherit;
}
.nv-related-title {
  font-size: 1.1rem;
  margin: 0 0 12px;
}
.nv-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1024px) {
  .nv-related-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .nv-related-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.nv-related-item { 
  display: block; 
}
.nv-related-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  transition: transform .12s ease, box-shadow .12s ease;
}
.nv-related-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,.08);
}
.nv-related-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.nv-related-meta { padding: 10px 12px; }
.nv-related-cat {
  display: inline-block;
  font-size: .75rem;
  opacity: .7;
  margin-bottom: 4px;
}
.nv-related-heading {
  font-size: .95rem;
  line-height: 1.25rem;
  margin: 2px 0 6px;
}
.nv-related-time {
  font-size: .75rem;
  opacity: .65;
}
