/* Webinar banner — Code 1: white card, green pill button */
a.webinar-banner,
a.webinar-banner * {
  text-decoration: none !important;
}

.webinar-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1080px;
  margin: 32px auto;
  padding: 22px 40px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
}

.webinar-banner:hover,
.webinar-banner:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.webinar-banner:focus-visible {
  outline: 3px solid #95569E;
  outline-offset: 3px;
}

.webinar-banner__content {
  flex: 1 1 auto;
  min-width: 0;
}

.webinar-banner__eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #95569E;
  margin-bottom: 6px;
}

.webinar-banner__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #341C4C;
}

.webinar-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: #58B999;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.webinar-banner:hover .webinar-banner__cta {
  background: #4aa888;
}

@media (max-width: 700px) {
  .webinar-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 22px 24px;
    gap: 18px;
  }
  .webinar-banner__cta {
    align-self: stretch;
    justify-content: center;
  }
  .webinar-banner__title {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .webinar-banner {
    transition: none;
  }
  .webinar-banner:hover {
    transform: none;
  }
}
