.anchor-link {
  cursor: pointer;
  transition: opacity .2s ease;
}

.anchor-link:hover {
  opacity: .6;
}

@keyframes shimmerPremium {
  0%   { background-position: -400% center; }
  100% { background-position: 400% center; }
}
@keyframes revealPremium {
  0%   { opacity: 0; letter-spacing: 0.55em; filter: blur(8px); }
  40%  { opacity: 0.6; filter: blur(2px); }
  100% { opacity: 1; letter-spacing: 0.2em; filter: blur(0); }
}

.t056__title {
  font-size: 23px !important;
  font-weight: 100 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  line-height: 1.6 !important;
  background: linear-gradient(
    105deg,
    #081f5c 0%, #081f5c 25%,
    #a8bedd 42%, #e8f0fb 50%,
    #a8bedd 58%,
    #081f5c 75%, #081f5c 100%
  );
  background-size: 400% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    revealPremium 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    shimmerPremium 9s linear 2s infinite;
}