/* Grid Responsive */
.nuvo-remote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .nuvo-remote-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .nuvo-remote-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Card */
.nuvo-remote-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nuvo-remote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.09);
}

/* Thumb */
.nuvo-remote-card .thumb-wrap {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.nuvo-remote-card .thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.0);
  transition: transform .3s ease;
}
.nuvo-remote-card:hover .thumb-wrap img {
  transform: scale(1.03);
}

/* Title */
.nuvo-remote-card .post-title {
  font-size: 1.1rem;
  line-height: 1.35;
  margin: 14px 16px 8px;
  text-align: center;
}
.nuvo-remote-card .post-title a {
  color: #111;
  text-decoration: none;
}

/* Meta */
.nuvo-remote-card .post-meta {
  font-size: .85rem;
  opacity: .7;
  text-align: center;
  margin: 0 16px 4px;
}

/* Excerpt */
.nuvo-remote-card .post-excerpt {
  font-size: .95rem;
  color: #333;
  margin: 0 18px 16px;
  text-align: center;
}

/* CTA */
.nuvo-remote-card .cta-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 18px;
}
.nuvo-remote-card .post-button {
  display: inline-block;
  padding: 10px 16px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: filter .2s ease, transform .1s ease;
}
.nuvo-remote-card .post-button:hover {
  filter: brightness(.9);
}
.nuvo-remote-card .post-button:active {
  transform: translateY(1px);
}
