.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.search-result-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}

.search-result-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-result-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #f8f8f8;
}

.search-result-card .content {
  padding: 10px;
}

.search-result-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.3;
}

.search-result-card p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.no-results-message {
  font-size: 18px;
  font-weight: 600;
  color: #777;
  text-align: center;
  margin: 30px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
}

.search-result-card .content p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;  
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dn-search-results-content {
  display: none !important;
}