/**
 * Shared article suggestion list — Trending / Related sidebars
 * Used on articles.php and article.php (same look everywhere).
 */
.wp-art-suggest-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0 6px;
}

.wp-art-suggest-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 12px;
  text-decoration: none !important;
  color: #1e3a2f;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.wp-art-suggest-item:hover {
  background: linear-gradient(90deg, #eef8f2 0%, #f8fcfa 100%);
  border-left-color: #056636;
  color: #056636;
  text-decoration: none !important;
}

.wp-art-suggest-thumb {
  width: 56px;
  height: 56px;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8f0eb;
  border: 1px solid #d7e8dd;
  display: block;
}

.wp-art-suggest-thumb--ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #27ae60;
  font-size: 18px;
  background: linear-gradient(145deg, #eaf7f0, #f4faf7);
}

.wp-art-suggest-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
  padding-top: 1px;
}

.wp-art-suggest-title {
  font-family: 'Carlito', 'Segoe UI', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: inherit;
}

.wp-art-suggest-item:hover .wp-art-suggest-title {
  color: #056636;
}

.wp-art-suggest-meta {
  font-family: 'Carlito', 'Segoe UI', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #7a8f84;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wp-art-suggest-empty {
  margin: 0;
  padding: 16px 14px;
  font-size: 13px;
  color: #7a8f84;
  text-align: center;
}

/* Card header shared (optional use) */
.wp-art-suggest-card-title {
  display: block;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #056636 0%, #0a8a4a 55%, #1e9b57 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Inside article.php cream sidebar cards */
#wyp-article-root .wp-art-suggest-item {
  color: #1a1209;
  border-radius: 0;
}
#wyp-article-root .wp-art-suggest-item:hover {
  background: #f3faf6;
  border-left-color: #2e7d32;
  color: #2e7d32;
}
#wyp-article-root .wp-art-suggest-thumb {
  border-color: #e8e2d9;
  background: #f0ebe3;
}
#wyp-article-root .wp-art-suggest-meta {
  color: #8a7f72;
}
