.ng-wrap {
  margin: 20px 0;
}

.ng-group-title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
}

.ng-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}


.ng-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}

.ng-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.ng-thumb {
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
  overflow: hidden;
}

.ng-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ng-title {
  padding: 12px 14px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
