/* Responsive embeds for the Presentations section */

.video-embed {
  position: relative;
  width: 100%;
  max-width: 45rem;
  aspect-ratio: 16 / 9;
  margin: 1rem 0 1.5rem;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.2rem;
}

.slide-embed {
  position: relative;
  width: 100%;
  max-width: 45rem;
  aspect-ratio: 16 / 9;
  margin: 1rem 0 0.5rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.2rem;
  overflow: hidden;
}

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

.pdf-embed {
  width: 100%;
  max-width: 45rem;
  /* 16:9 slide plus room for the built-in PDF viewer toolbar */
  aspect-ratio: 16 / 10.4;
  margin: 1rem 0 0.5rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.2rem;
  overflow: hidden;
}

.pdf-embed object {
  width: 100%;
  height: 100%;
}
