.footer__toparea--accent {
  background: #f1557a;
}

.cms-member-entry-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 42px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(241, 85, 122, 0.08);
  border: 1px solid rgba(241, 85, 122, 0.12);
}

.cms-member-entry-auth__nickname {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 120px;
}

.cms-member-entry-auth .dropdown-item {
  color: rgba(255, 255, 255, 0.92) !important;
  text-decoration: none;
}

.cms-member-entry-auth .dropdown-item:hover,
.cms-member-entry-auth .dropdown-item:focus,
.cms-member-entry-auth__nickname:hover,
.cms-member-entry-auth__nickname:focus {
  color: #ffffff !important;
  text-decoration: none;
}

.cms-member-entry-pending {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(241, 85, 122, 0.08);
  border: 1px solid rgba(241, 85, 122, 0.1);
  color: #f1557a;
  font-weight: 600;
}

.cms-member-entry-pending__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f1557a;
  box-shadow: 0 0 0 6px rgba(241, 85, 122, 0.14);
  animation: cms-member-entry-pulse 1.4s ease-in-out infinite;
}

@keyframes cms-member-entry-pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.88;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cms-member-entry-pending__dot {
    animation: none;
  }
}
