/* Approved recipe media */

.recipe-media-hero {
  width: 100%;
  margin: 1.5rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: #09090a;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.035);
}

.recipe-media-hero img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .recipe-media-hero {
    margin-top: 1.1rem;
    border-radius: 15px;
  }
}
