.verbalex-page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.verbalex-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.verbalex-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.verbalex-content {
  display: flex;
  flex-direction: column;
}

.verbalex-content > :first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .verbalex-page {
    gap: 24px;
  }

  .verbalex-hero {
    padding-top: 4px;
  }
}