/* css-links.css — bloco de link formatado (Fonte: + Copiar + Abrir),
   criado em 11/07 pra substituir link cru solto no meio do texto */

.link-bloco {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 8px 0;
  padding: 9px 12px;
  background: var(--surface2);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  max-width: 95%;
}
.link-fonte {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.link-raw {
  font-size: 11px;
  color: var(--muted);
  word-break: break-all;
  margin-top: 4px;
}
.link-botoes {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.link-btn {
  background: none;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.link-btn:hover, .link-btn:active {
  background: var(--neon-cyan);
  color: #fff;
  border-color: var(--neon-cyan);
}
