/**
 * VeriDoc Help Section Block Frontend Styles
 *
 * @package VeriDoc
 */
/* =====================================================
   VeriDoc Help Section – Link Color Binding
===================================================== */

.veridoc-help-section-block .veridoc-help-content a,
.veridoc-help-section-block .veridoc-help-content a.text-black,
.veridoc-help-section-block .veridoc-help-content a[class*="text-"] {
  color: var(--vd-link-color) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.veridoc-help-section-block .veridoc-help-content a:hover {
  opacity: 0.8;
}

/* =====================================================
   VeriDoc Help Section – Background Image Overlay
===================================================== */

.veridoc-help-section-block {
  position: relative;
}

.veridoc-help-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

