/* ===== NVR Stellar Reviews — уникальный стиль ===== */
.nvr-card{
  --nvr-accent:#0b008a;
  position:relative;
  background:#fff;
  border-radius:14px;
  padding:14px 14px 12px 18px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  overflow:hidden;
  font-family:-apple-system,BlinkMacSystemFont,Roboto,sans-serif;
}

/* акцентная полоса слева */
.nvr-card::before{
  content:"";
  position:absolute;
  left:10px; top:12px; bottom:12px;
  width:3px; border-radius:3px;
  background: linear-gradient(180deg, var(--nvr-accent), #8aa0ff);
  opacity:.9;
}

/* шапка */
.nvr-head{ position:relative; z-index:1; margin-left:6px; }
.nvr-kicker{
  display:inline-block;
  font: 700 10px/1 "Share Tech Mono",monospace;
  letter-spacing:1px; text-transform:uppercase;
  color: var(--nvr-accent);
  opacity:.9;
  margin-bottom:6px;
}
.nvr-title{
  margin:0 0 10px 0;
  font-weight:800; font-size:16px; color:#0f0f14;
}

/* список */
.nvr-list{ list-style:none; margin:0; padding:0 }
.nvr-item{
  display:flex; align-items:center; gap:12px;
  padding:12px 0;
  border-top:0;
}
.nvr-item + .nvr-item{ border-top:1px dashed #e6e8ef; } /* уникальный пунктир */
.nvr-body{ flex:1 1 auto; min-width:0 }
.nvr-thumb{ flex:0 0 auto }
.nvr-thumbimg{
  width:58px; height:58px; object-fit:cover; object-position:center;
  border-radius:10px; display:block; margin-left:8px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06) inset;
}

/* ссылка */
.nvr-link{
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  font-size:15px; font-weight:650; line-height:1.35;
  color:#0f0f14; text-decoration:none;
  text-wrap:balance; overflow-wrap:anywhere; hyphens:auto;
}
.nvr-link:hover{ color:var(--nvr-accent); text-decoration:underline; text-underline-offset:2px }

/* футер */
.nvr-foot{ margin-top:12px }
.nvr-btn{
  display:inline-block; font-size:13px; font-weight:700;
  color:var(--nvr-accent); text-decoration:none;
  border:1px solid var(--nvr-accent); padding:6px 10px; border-radius:999px;
  transition:.2s ease;
}
.nvr-btn:hover{ background:var(--nvr-accent); color:#fff }

/* пусто */
.nvr-empty{ padding:8px 0; opacity:.7; font-size:14px }

/* адаптив */
@media (max-width: 600px){
  .nvr-thumbimg{ width:52px; height:52px }
  .nvr-title{ font-size:15px }
}
