.wp-embed-blogcard {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px;
  margin: 16px;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(76, 81, 81, 0.08);
  transition: box-shadow 0.3s, top 0.3s;
  text-decoration: none;
  top: 0;
}
.wp-embed-blogcard:hover {
  top: -8px;
  box-shadow: 0px 8px 16px rgba(76, 81, 81, 0.24);
}
@media screen and (max-width: 670px) {
  .wp-embed-blogcard {
    flex-wrap: wrap;
  }
}

.wp-embed-featured-image {
  margin: 0;
  width: 250px;
  min-width: 250px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.wp-embed-featured-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: top;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 670px) {
  .wp-embed-featured-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: inherit;
  }
  .wp-embed-featured-image img {
    width: 250px;
  }
}

p.wp-embed-heading {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.75px;
  color: #4c5151;
}

.wp-embed-title {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 8px;
  background: #55cbe1;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.75px;
  color: #ffffff;
}

.wp-embed-space {
  display: none;
}
@media screen and (max-width: 670px) {
  .wp-embed-space {
    display: block;
    height: 16px;
  }
}
