.front-child-top-banner {
  position: relative;
  width: 100%;
  background-color: #1B5520;
  text-align: center;
  z-index: 9999;
  overflow: hidden;
}

.front-child-top-banner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-18deg);
  opacity: 0.9;
  pointer-events: none;
  animation: front-child-banner-shine 4s ease-in-out infinite;
}

@keyframes front-child-banner-shine {
  0% {
    left: -60%;
  }
  45% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .front-child-top-banner::before {
    animation: none;
    display: none;
  }
}

.front-child-top-banner-link {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  transition: background-color 0.2s ease;
}

.front-child-top-banner-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
}

.u-header__navbar-nav > .u-header__nav-item:nth-child(4) > .u-header__nav-link::after {
  content: "New";
  display: inline-block;
  margin-left: 6px;
  padding: 0px 6px;
  background: #ffffff;
  color: #1B5520;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  vertical-align: text-bottom;
}