.hero-banner {
  position: relative;
  background: url("/staticfiles/img/banner.png") center/cover no-repeat;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.62);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  max-width: 100%;
}

.hero-banner .h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero-banner .lead {
  font-size: 20px;
  margin-bottom: 32px;
  color: #e5e7eb;
}

.cta {
  background: linear-gradient(180deg, color-mix(in oklab, var(--primary), transparent 85%), transparent 85%);
  text-align: center;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-actions {
  margin-top: 20px;
}

.banner-source {
  position: absolute;
  left: 20px;
  bottom: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  z-index: 2;
  transition: color 0.2s ease;
}

.banner-source:hover {
  color: #fff;
}