/* Nova Content Lightbox - estilos básicos */
.ncl-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.ncl-overlay.is-open {
  display: flex;
}

.ncl-modal {
  position: relative;
  background: #ff7b00;
  color: #111827;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  max-width: min(920px, 92vw);
  max-height: 86vh;
  width: auto;
  overflow: hidden;
  z-index: 9999;
}

.ncl-content {
  padding: 24px;
  overflow: auto;
  max-height: 86vh;
}

.ncl-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  border-radius: 9999px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ncl-close:hover {
  background: rgba(0, 0, 0, 0.5);
}

.ncl-close-icon {
  width: 18px;
  height: 18px;
  display: block;
  line-height: 1;
  color: #ffffff;
  font-size: 18px;
}

/* Headings inside lightbox content */
.ncl-content h1,
.ncl-content h2,
.ncl-content h3,
.ncl-content h4,
.ncl-content h5 {
  color: #ffffff;
  margin-bottom: 10px !important;
  margin-top: 0px !important;
}

[class^="light-"],
[class*=" light-"] {
  cursor: pointer;
}
