#webinar-banner {
  background: #1A1A1A;
  background-image: linear-gradient(90deg, #1A1A1A 0%, #2b1f47 100%);
  color: #fff;
  font-family: 'Manrope', Arial, sans-serif;
  position: relative;
  z-index: 1000;
}

#webinar-banner .wb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 11px 52px 11px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

#webinar-banner .wb-tag {
  background: #7F56D9;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

#webinar-banner .wb-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

#webinar-banner .wb-text strong {
  color: #B692F6;
}

#webinar-banner .wb-cta {
  background: #7F56D9;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

#webinar-banner .wb-cta:hover {
  background: #9E77ED;
}

#webinar-banner .wb-close {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
}

#webinar-banner .wb-close:hover {
  color: #fff;
}

@media (max-width: 640px) {
  #webinar-banner .wb-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 6px 8px;
    padding: 8px 36px 8px 12px;
    align-items: center;
    text-align: left;
  }

  #webinar-banner .wb-tag {
    grid-column: 1;
    grid-row: 1;
    font-size: 9px;
    padding: 2px 6px;
    white-space: nowrap;
  }

  #webinar-banner .wb-text {
    grid-column: 2;
    grid-row: 1;
    font-size: 11px;
    line-height: 1.35;
    min-width: 0;
  }

  #webinar-banner .wb-sub {
    display: none;
  }

  #webinar-banner .wb-cta {
    grid-column: 1 / -1;
    grid-row: 2;
    display: block;
    text-align: center;
    font-size: 11px;
    padding: 5px 12px;
    white-space: nowrap;
  }

  #webinar-banner .wb-close {
    top: 8px;
    right: 4px;
    transform: none;
  }
}
