:root {
  --video-banner-overlay-color: rgba(7, 16, 31, 0.4);
  /* --js-navy-10 with opacity */
  --vid-banner-transition: 300ms ease;
}

.video-banner-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-decoration: none !important;
  color: var(--js-cream);
  min-height: 480px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.video-banner-section:hover {
  /* Optional scale effect? User didn't request it but "interactive behavior" was mentioned.
       Let's stick to the button hover effect request. */
}

/* Background */
.video-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-banner-background video.video-background,
.video-banner-background .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}

.video-banner-background .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--video-banner-overlay-color);
  z-index: 2;
  transition: background 0.3s ease;
}

.video-banner-section:hover .video-banner-background .video-overlay {
  background: rgba(7, 16, 31, 0.5);
  /* Slightly darker on hover? */
}


/* Content */
.video-banner-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.video-banner-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 18px;
}

.video-banner-title-text {
  /* Using .category class for typography */
  color: var(--js-cream);
}

.video-banner-time-badge {
  /* Using .category-sm class for typography */
  color: var(--js-cream);
}

.video-banner-main-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: auto;
  padding: 0 24px;
}

.video-banner-header-text {
  margin-bottom: 16px;
}

.video-banner-description-text {
  margin-bottom: 32px;
  color: var(--js-cream);
}

/* Button Wrapper */
.video-banner-btn-wrapper {
  display: flex;
}

/* Interactive Behavior: Button Hover on Section Hover */
/* Assuming standard button hover styles. 
   Usually: invert colors or brighten. 
   The User explicitly asked: "When the section is hovered, the button should display its hover state"
   I will simulate a common hover state if I don't know the exact class definition.
   Typically .btn--filled:hover style should be applied.
*/
.video-banner-section:hover .btn--filled {
  background-color: var(--color-neutral-0);
  color: var(--color-neutral-900);
  box-shadow: none;
  text-decoration: none;
}

@media (max-width: 768px) {
  .video-banner-section {
    min-height: 0;
    height: auto;
    padding: 0;
    aspect-ratio: 0;
  }

  .video-banner-main-text-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 80px 24px;
  }

  .video-banner-header-text {
    font-size: 52px;
    /* Figma Mobile H3 size */
    line-height: 0.8;
  }
}

.video-background-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  min-width: 177.77vh;
  min-height: 56.25vw;
  pointer-events: none;
}