.news {
  margin-top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  pointer-events: none;
  color: var(--text);
  background: #966eec33;
  border-radius: 30px;
  height: 30px;
  padding: 0 15px;
  font-size: 14px;
  border: 1px solid #926eec;
  opacity: 0;
  pointer-events: none;
}

.news.show {
  opacity: 1;
  pointer-events: all;
}
