.wp-embed {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 1rem;
}

.wp-embed-featured-image {
  order: 2;
  width: 15%;
  max-width: none !important;
  margin: 0 !important;
}

.wp-embed-featured-image img {
  width: 100%;
  aspect-ratio: 300/200;
  object-fit: cover;
}

.wp-embed-heading {
  order: 1;
  width: 100%;
  margin: 0 !important;
}

.wp-embed-excerpt {
  order: 3;
  width: calc(85% - 1rem);
}

.wp-embed-footer {
  order: 4;
  width: 100%;
  margin: 0 !important;
}

@media screen and (max-width: 600px) {
  .wp-embed-featured-image {
    width: 40%;
  }

  .wp-embed-excerpt {
    width: calc(60% - 1rem);
  }
}

@media screen and (max-width: 420px) {
  .wp-embed-featured-image {
    width: 100%;
  }

  .wp-embed-excerpt {
    width: 100%;
  }
}