/* ===========================
   Web Alterations - Read More Modal
   =========================== */

.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999;
}

.wa-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.wa-modal {
  width: min(720px, 100%);
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 26px;
  position: relative;
  transform: translateY(-12px);
  transition: transform 0.25s ease;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.wa-modal-overlay.active .wa-modal {
  transform: translateY(0);
}

.wa-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #444;
}

.wa-modal-close:hover {
  color: #000;
}

.wa-modal-title {
  margin: 0 40px 12px 0;
  font-weight: 700;
  color: #0b0b0b;
}

.wa-modal-body {
  margin: 0;
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

/* Optional: make link look clickable */
.read-more-link {
  cursor: pointer;
}
