/**
 * Popup Lead Capture styles.
 */

.ucsc-popup-lead-capture {
  position: relative;
}

/* Overlay */
.ucsc-popup-lead-capture__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10000;
}

/* Modal wrapper */
.ucsc-popup-lead-capture__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100vw - 32px));
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  z-index: 10001;
  padding: 56px 56px 0;
  max-height: calc(100vh - 32px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* Close button */
.ucsc-popup-lead-capture__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 40px;
  text-align: center;
  outline: 0;
}

/* Content */
.ucsc-popup-lead-capture__content {
  position: relative;
  z-index: 2;
}

/* Typography helpers for typical WYSIWYG output */
.ucsc-popup-lead-capture__content h1,
.ucsc-popup-lead-capture__content h2,
.ucsc-popup-lead-capture__content h3 {
  margin: 0 0 16px;
}

.ucsc-popup-lead-capture__content p {
  margin: 0 0 16px;
}

/* Slug decoration (bottom-right) */
.ucsc-popup-lead-capture__modal::after {
  content: "";
  position: sticky;
  right: 0;
  bottom: 0;
  width: 252px;
  height: 38px;
  background-image: url("../assets/slug.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
  display: block;
  margin-left: auto;
  margin-top: 44px;
}

/* Basic responsive tweaks */
@media (max-width: 600px) {
  .ucsc-popup-lead-capture__modal {
    padding: 44px 20px 0;
    border-radius: 12px;
  }

  @media (max-width: 600px) {
    .ucsc-popup-lead-capture__modal::after {
      height: 26px;
      margin-top: 28px;
    }
  }
}

/* Make embeds/forms behave */
.ucsc-popup-lead-capture__content iframe,
.ucsc-popup-lead-capture__content embed,
.ucsc-popup-lead-capture__content object {
  max-width: 100%;
}

.ucsc-popup-lead-capture__webform {
  margin-top: 20px;
}

/* Frontend: hide the H2 title rendered by the block wrapper. */
.block-ucsc-popup-lead-capture.block-ucsc-popup-lead-capture-block > h2,
.block-ucsc-popup-lead-capture.block-ucsc-popup-lead-capture-block > h3 {
  display: none;
}

/* Layout Builder edit mode: show the title so editors can identify the block. */
.js-layout-builder-block.layout-builder-block.block-ucsc-popup-lead-capture.block-ucsc-popup-lead-capture-block > h2,
.js-layout-builder-block.layout-builder-block.block-ucsc-popup-lead-capture.block-ucsc-popup-lead-capture-block > h3 {
  display: block;
}
