/* Full-width hero embed */
.single-video__hero {
  width: 100%;
}
.single-topline.topline {
  margin: 1.5rem auto;
}
/* Responsive 16:9 embed box */
.single-video__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
/* Make oEmbed iframes/videos fill the box */
.single-video__embed iframe, .single-video__embed video, .single-video__embed object, .single-video__embed embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Panel under video */
.single-video__panel {
  border-radius: 0.5rem;
  background: var(--Secondary-Daylight, #F4F2EB);
  padding: 3rem 1.5rem; /* mobile default */
  margin: 1.5rem;
}
/* inner + centered */
.single-video__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
/* logo */
.single-video__logo-img {
  display: block;
  max-width: 14rem;
  height: auto;
}
/* content */
.single-video__content {
  width: 100%;
  max-width: 60rem; /* optional, keeps text readable */
}
.single-video__content p:last-child {
	margin-bottom: 0;
}
/* desktop padding */
@media (min-width: 768px) {
  .single-topline.topline {
    margin: 4rem auto 3.5rem;
  }
  .single-video__panel {
    padding: 2.5rem 1.5rem;
  }
}