.right-rail-briefing {
  visibility: hidden !important;
  pointer-events: none !important;
}

.linkeem-trends-box {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: none;
}

.linkeem-trends-portal {
  position: fixed;
  z-index: 30;
  margin-top: 0;
}

.linkeem-trends-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px 11px;
  border-bottom: 1px solid var(--border);
}

.linkeem-trends-heading > div {
  display: grid;
  gap: 2px;
}

.linkeem-trends-heading b {
  color: var(--text);
  font-size: 17px;
  font-weight: 750;
}

.linkeem-trends-heading small,
.linkeem-trend-row small,
.linkeem-trend-row span,
.linkeem-trends-empty small {
  color: var(--muted);
}

.linkeem-trends-refresh {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 20px;
  line-height: 1;
}

.linkeem-trends-refresh:hover {
  color: var(--brand);
  background: color-mix(in srgb, var(--brand) 9%, transparent);
}

.linkeem-trends-refresh.is-loading {
  animation: linkeem-trends-spin .8s linear infinite;
}

.linkeem-trends-list {
  display: grid;
}

.linkeem-trend-row {
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
  transition: background-color .15s ease;
}

.linkeem-trend-row:hover {
  background: var(--surface-raised);
}

.linkeem-trend-row small,
.linkeem-trend-row span {
  font-size: 11px;
}

.linkeem-trend-row b {
  overflow: hidden;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.linkeem-trends-more {
  display: block;
  padding: 12px 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.linkeem-trends-more:hover {
  background: var(--surface-raised);
}

.linkeem-trends-loading,
.linkeem-trends-empty {
  display: grid;
  gap: 4px;
  min-height: 92px;
  place-content: center;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

@keyframes linkeem-trends-spin {
  to { transform: rotate(360deg); }
}
