/* EXIT INTENT POPUP – vše zanořené do #exitPopup */
#exitPopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* BOX */
#exitPopup .popup-content {
  background-color: #fff;
  padding: 16px 16px 18px;
  border-radius: 10px;
  width: 92%;
  max-width: 430px;
  text-align: left;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
  font-size: 16px;
  position: relative;
}

/* CLOSE */
#exitPopup .close {
  position: absolute;
  top: 8px;            /* blíž k hornímu okraji */
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* HLAVIČKA */
#exitPopup .popup-heading {
  font-weight: 700;
  font-size: 19px;
  margin: 10px 0 6px 0;
  text-align: center;
}

#exitPopup .popup-subheading {
  margin: 0 0 16px 0;
  text-align: center;
  font-size: 16px;
  color: #444;
}

/* JOB LIST */
#exitPopup .job-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 16px 0;
  max-height: 42vh;
  overflow-y: auto;
}

#exitPopup .job-item + .job-item {
  margin-top: 8px;
}

/* KARTY */
#exitPopup .job-item-link {
  display: block;
  padding: 10px 12px;
  background: #f4f4f4;
  border-radius: 8px;
  text-decoration: none;
}

/* NÁZEV NABÍDKY */
#exitPopup .job-item-title {
  font-weight: 700;
  font-size: 18px;
  color: #007bff;
  line-height: 1.18;
  margin-bottom: 4px;
}

/* META */
#exitPopup .job-item-meta {
  font-size: 15px;
  color: #555;
  line-height: 1.22;
}

/* HOVER */
#exitPopup .job-item-link:hover {
  background: #e9f1ff;
}

/* CTA – full width, text se může zalomit */
#exitPopup .btn-fullwidth {
  display: block;
  width: 100%;
  padding: 13px 10px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 12px;
  text-align: center;
  white-space: normal;      /* DŮLEŽITÉ – dovolí zalomení textu */
  line-height: 1.25;
  box-sizing: border-box;
}

#exitPopup .primary-cta {
  text-align: center;
}

/* BACK LINK */
#exitPopup .back-link-wrapper {
  margin-top: 10px;
  text-align: center;
}

#exitPopup .back-link {
  font-size: 15px;
}

/* MOBILE */
@media (max-width: 600px) {
  #exitPopup .popup-content {
    padding: 14px 14px 16px;
    width: 94%;
    font-size: 15px;
  }

  #exitPopup .popup-heading { font-size: 18px; }
  #exitPopup .popup-subheading { font-size: 15px; }

  #exitPopup .job-item-title { font-size: 17px; }
  #exitPopup .job-item-meta { font-size: 14px; }

  #exitPopup .btn-fullwidth { font-size: 16.5px; }
}
