.announcement {
   display: flex;
   height: var(--announcement-height);
   &__content {
      color: black;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      flex-grow: 1;
      text-align: center;
      overflow: hidden;
   }
   &__close {
      display: flex;
      align-items: center;
      cursor: pointer;
      padding: 0 15px;
   }
}