/* ── VIDEO MODULE ── */
.hds-video__wrapper { margin-top: var(--space-lg); }
.hds-video__embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}
.hds-video__embed iframe,
.hds-video__embed object,
.hds-video__embed embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
