/* Holiday Notice Popup */
.hn-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.hn-modal{
  width: min(560px, 100%);
  border-radius: 16px;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
  padding: 18px 18px 14px;
  position: relative;
  transform: translateY(10px);
  opacity: 0;
  transition: all .18s ease;
}
.hn-overlay.hn-show .hn-modal{
  transform: translateY(0);
  opacity: 1;
}
.hn-close{
  position: absolute;
  right: 10px;
  top: 6px;
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: .85;
}
.hn-close:hover{ opacity: 1; }
.hn-title{
  font-size: 18px;
  font-weight: 800;
  padding-right: 28px;
  margin: 2px 0 10px;
}
.hn-content{
  font-size: 14px;
  line-height: 1.55;
  opacity: .95;
}
.hn-content a{
  color: inherit;
  text-decoration: underline;
}
.hn-actions{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
.hn-btn{
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
}
.hn-btn:hover{ filter: brightness(.95); }
