.csl-notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, .54);
}

.csl-notice-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: 32px 38px 34px;
  border-radius: 6px;
  background: #fff;
  color: #242424;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
  font-family: "Segoe UI", Arial, sans-serif;
}

.csl-notice-modal h2 {
  margin: 0;
  padding-right: 36px;
  text-align: center;
  color: #1f2933;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.csl-notice-line {
  height: 2px;
  margin: 14px 0 18px;
  background: #d0d0d0;
}

.csl-notice-body {
  color: #1f2933;
  font-size: clamp(16px, 2.3vw, 22px);
  line-height: 1.28;
  letter-spacing: .01em;
}

.csl-notice-x {
  position: absolute;
  top: 18px;
  right: 26px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 46px;
  line-height: 1;
  cursor: pointer;
}

.csl-notice-close {
  display: block;
  min-width: 128px;
  margin: 26px 0 0 auto;
  padding: 10px 22px;
  border: 0;
  border-radius: 18px;
  background: #c8cc18;
  color: #fff;
  box-shadow: 0 12px 0 rgba(0, 0, 0, .32);
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 560px) {
  .csl-notice-modal {
    padding: 24px 20px 28px;
  }

  .csl-notice-x {
    top: 10px;
    right: 14px;
    font-size: 38px;
  }

  .csl-notice-close {
    width: 100%;
    margin-top: 22px;
  }
}

