.content-modal[hidden] { display: none; }
.content-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.content-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
}
.content-modal-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: min(80vh, 720px);
  overflow: auto;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: #171e19;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.content-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.content-modal-close:hover { border-color: rgba(217,244,61,.7); color: #d9f43d; }
.content-modal-label {
  margin: 0 44px 18px 0;
  color: #d9f43d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.content-modal-title {
  margin: 0 44px 18px 0;
  color: #d9f43d;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content-modal-body {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
}
.content-modal-body.is-quote { color: #fff; font-size: clamp(20px, 3vw, 28px); letter-spacing: -.025em; }
body.modal-open { overflow: hidden; }
