.cpd-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2147483000;
}

.cpd-card {
  width: min(72vw, 1200px);
  max-width: 96vw;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.cpd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #2c1532;
  font-size: 16px;
  font-weight: 600;
}

.cpd-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 12px;
}

.cpd-close {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: #294e95;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
}

.cpd-close:hover {
  background: rgba(41, 78, 149, 0.15);
}

.cpd-iframe {
  width: 100%;
  min-height: 60vh;
  height: min(80vh, 720px);
  border: none;
  background: #fff;
}
