.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 34, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
  padding: 24px;
}

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

.modal {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  width: min(760px, 92vw);
  max-height: 80vh;
  overflow: auto;
  box-shadow: 0 30px 80px rgba(12, 20, 34, 0.25);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(12, 20, 34, 0.2);
  background: #f6f7fb;
  color: #121824;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  cursor: pointer;
}

.modal-content h3 {
  font-family: "Syne", sans-serif;
  margin-bottom: 12px;
}

.modal-content p {
  margin-bottom: 12px;
  color: #2e3a4f;
}

.card-link {
  margin-top: 12px;
  background: none;
  border: none;
  color: #1b9ad7;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
