.video-cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;


}/* Simple, good-looking video frame */
.video-card {
  margin: 1.5rem auto 2.25rem;
  max-width: 960px; /* Reduce from 960px for a tighter fit */
  width: 100%;
  background: var(--mm-color-bg, #1f1f1f);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

/* 16:9 responsive container */
.video-aspect {
  position: relative;
  width: 100%;
  max-width: 960px; /* Match the card */
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  background: #000; /* looks clean during load */
}
.video-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  top: 0;
  left: 0;
}

/* Text under the video */
.video-caption {
  padding: 1.25rem 1.25rem 1.5rem;
}
.video-caption h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.video-caption h4 {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}
.video-caption p {
  margin: 0.5rem 0 0.75rem;
}
.video-caption ul {
  margin: 0.25rem 0 0.75rem 1.25rem;
}
