/* ============================================================================
   WEB SEARCH SOURCES — links shown below oracle answers
   ============================================================================ */

.sources-block {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  direction: rtl;
  text-align: right;
}

.sources-header {
  font-size: 11px;
  font-family: 'Frank Ruhl Libre', serif;
  letter-spacing: 0.05em;
  color: var(--p-accent, #d4a574);
  opacity: 0.85;
  margin-bottom: 6px;
}

.sources-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.source-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  text-decoration: none;
  color: #e8e2d2;
  font-size: 12px;
  transition: all 0.15s;
}
.source-link:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--p-accent, rgba(255,255,255,0.2));
}

.source-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.source-host {
  font-size: 10px;
  color: rgba(232,226,210,0.5);
  font-family: monospace;
  direction: ltr;
  text-align: left;
}
