.embed {
  display: flex;
  align-items: center;
  overflow: hidden;
}

img.embed-image {
  max-width: 128px;
  max-height: 128px;
}

.embed-content {
  margin-left: 24px;
  overflow: hidden;
  max-width: 100%;
}

@media (max-width: 450px) {
  .embed {
    flex-direction: column;
  }

  img.embed-image {
    max-width: 96px;
    max-height: 96px;
  }

  .embed-content {
    margin: 16px 0 0;
  }
}
