.webinar-strip {
  background: #2b7fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "Arimo", sans-serif;
  position: relative;
  z-index: 200;
}

.webinar-strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  animation: strip-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes strip-pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.webinar-strip-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.webinar-strip-text strong {
  color: #ffffff;
  font-weight: 700;
}

.webinar-strip-text .strip-date {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 3px;
  margin-left: 4px;
}

.webinar-strip-cta {
  background: #ffffff;
  color: #2b7fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

.webinar-strip-cta:hover {
  background: #f0f4ff;
  color: #2b7fff;
}

.webinar-strip-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.webinar-strip-close:hover {
  color: #ffffff;
}

@media (max-width: 600px) {
  .webinar-strip {
    padding: 10px 40px 10px 16px;
    gap: 10px;
  }

  .webinar-strip-text {
    font-size: 13px;
  }

  .webinar-strip-cta {
    font-size: 11px;
    padding: 5px 12px;
  }
}
