/*
 * The look of .nbl-widget-link (color, background, border, radius,
 * padding, spacing) is generated dynamically from the plugin's own
 * Settings page (see includes/functions/nbl-preview.php,
 * nbl_build_widget_css()) and injected as an inline stylesheet addition --
 * not hard-coded here.
 *
 * This file only adds baseline polish that isn't a per-site setting:
 * a subtle hover transition so the links feel a little more alive.
 */
.nbl-widget-link {
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease,
    border-width 0.15s ease, border-radius 0.15s ease, padding 0.15s ease,
    transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.nbl-widget-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.12);
  opacity: 0.92;
}

.nbl-widget-link-container {
  line-height: 1.4;
}
