.uk-featured-announcement {
  width: min(720px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 30px);
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: #11213a;
}

.uk-featured-announcement::backdrop {
  background: rgba(6, 14, 28, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.uk-featured-announcement__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 33, 58, 0.14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.uk-featured-announcement__masthead {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 0.95rem;
  padding: 1.05rem 4.7rem 1.05rem 1.35rem;
  background: #11213a;
  color: #ffffff;
}

.uk-featured-announcement__brandmark {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.uk-featured-announcement__brandmark img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.22));
}

.uk-featured-announcement__brandcopy {
  display: grid;
  gap: 0.2rem;
  text-align: left;
}

.uk-featured-announcement__brandcopy strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.uk-featured-announcement__brandcopy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uk-featured-announcement__close {
  position: absolute;
  z-index: 3;
  top: 1.65rem;
  right: 1.35rem;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.uk-featured-announcement__close:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.uk-featured-announcement__body {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.15rem);
  background: #ffffff;
}

.uk-featured-announcement__watermark {
  position: absolute;
  z-index: 0;
  right: -55px;
  bottom: -115px;
  width: 330px;
  height: 330px;
  object-fit: contain;
  opacity: 0.025;
  filter: grayscale(1);
  pointer-events: none;
  animation: uk-featured-watermark 10s ease-in-out infinite;
}

.uk-featured-announcement__content {
  position: relative;
  z-index: 1;
  max-width: 590px;
  text-align: left;
}

.uk-featured-announcement__kicker {
  display: block;
  margin-bottom: 0.75rem;
  color: #8b6b2f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.uk-featured-announcement__title {
  max-width: 18ch;
  margin: 0;
  color: #11213a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.uk-featured-announcement__rule {
  display: block;
  width: 48px;
  height: 2px;
  margin: 1.3rem 0;
  background: #b4914e;
}

.uk-featured-announcement__message {
  max-width: 58ch;
  margin: 0;
  color: #5f6c7f;
  font-size: clamp(0.94rem, 2vw, 1.04rem);
  line-height: 1.72;
  white-space: pre-line;
}

.uk-featured-announcement__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.uk-featured-announcement__button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border: 1px solid #11213a;
  border-radius: 9px;
  background: #11213a;
  color: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.uk-featured-announcement__button:hover {
  transform: translateY(-1px);
  border-color: #1c3152;
  background: #1c3152;
}

.uk-featured-announcement__button--quiet {
  border-color: #d7dee8;
  background: #ffffff;
  color: #11213a;
}

.uk-featured-announcement__button--quiet:hover {
  border-color: #bfc9d7;
  background: #f7f9fb;
}

.uk-featured-announcement__button[hidden] {
  display: none;
}

.uk-featured-announcement[open] {
  animation: uk-featured-enter 0.26s ease-out;
}

@keyframes uk-featured-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes uk-featured-watermark {
  0%,
  100% {
    opacity: 0.02;
    transform: translate3d(0, 3px, 0);
  }

  50% {
    opacity: 0.035;
    transform: translate3d(0, -4px, 0);
  }
}

@media (max-width: 520px) {
  .uk-featured-announcement {
    width: min(100% - 20px, 720px);
    max-height: calc(100dvh - 18px);
    border-radius: 15px;
  }

  .uk-featured-announcement__frame {
    border-radius: 15px;
  }

  .uk-featured-announcement__masthead {
    min-height: 78px;
    gap: 0.75rem;
    padding: 0.9rem 3.8rem 0.9rem 1rem;
  }

  .uk-featured-announcement__brandmark {
    width: 49px;
    height: 49px;
    border-radius: 11px;
  }

  .uk-featured-announcement__brandmark img {
    width: 43px;
    height: 43px;
  }

  .uk-featured-announcement__brandcopy strong {
    font-size: 0.82rem;
  }

  .uk-featured-announcement__brandcopy small {
    font-size: 0.59rem;
  }

  .uk-featured-announcement__close {
    top: 1.25rem;
    right: 0.9rem;
    width: 34px;
    height: 34px;
  }

  .uk-featured-announcement__body {
    padding: 1.7rem 1.25rem 1.35rem;
  }

  .uk-featured-announcement__title {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
  }

  .uk-featured-announcement__watermark {
    right: -70px;
    bottom: -80px;
    width: 245px;
    height: 245px;
  }

  .uk-featured-announcement__actions,
  .uk-featured-announcement__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .uk-featured-announcement,
  .uk-featured-announcement__button,
  .uk-featured-announcement__watermark {
    animation: none;
    transition: none;
  }
}
