.recipe-header {
  background-color: var(--color-stone);
}

@media only screen and (min-width: 992px) {
  .recipe-header--has-image .recipe-header__container {
    padding-inline-end: 0;
  }
}

@media only screen and (min-width: 992px) {
  .recipe-header__card {
    flex-direction: row-reverse;
    display: flex;
  }
}

.recipe-header__image {
  flex: 1;
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}
@media only screen and (min-width: 768px) {
  .recipe-header__image {
    margin-right: -5rem;
    margin-left: -5rem;
  }
}
@media only screen and (min-width: 992px) {
  .recipe-header__image {
    margin-right: 0;
    margin-left: 0;
  }
}
.recipe-header__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.recipe-header__content {
  flex: 1;
  padding-top: 20px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .recipe-header__content {
    padding-top: 40px;
  }
}

.recipe-header__width > * + * {
  margin-top: 24px;
}
@media only screen and (min-width: 992px) {
  .recipe-header--has-image .recipe-header__width {
    max-width: 528px;
    padding-right: 40px;
  }
}

.recipe-header__breadcrumbs {
  margin-bottom: 20px;
}

.recipe-header__meta {
  position: relative;
  gap: 28px;
  display: flex;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media only screen and (min-width: 992px) {
  .recipe-header__meta {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.recipe-header__meta::before, .recipe-header__meta::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-navy);
  opacity: 0.2;
}
.recipe-header__meta::before {
  top: 0;
}
.recipe-header__meta::after {
  bottom: 0;
}

.recipe-header__tags {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}
