/**
 * Recipe Meta Block Styles
 */
.recipe-meta {
  margin: 2rem 0;
  font-family: var(--wp--preset--font-family--sans, sans-serif);
}
.recipe-meta-container {
  max-width: 1300px;
  margin: 0 auto;
}
.recipe-meta ul, .recipe-meta ol, .recipe-meta li {
  color: #343434;
  font-size: 1.25rem;
  font-family: "Roboto Slab";
}
.recipe-meta ol li {
  list-style-type: auto;
}
.recipe-meta ul {
  list-style-type: none;
  padding-left: 0 !important;
}
.recipe-meta ul li {
  position: relative;
  padding-left: 1.5em;
}
.recipe-meta ul li:before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: #A18630;
}
.recipe-meta h4 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.recipe-meta .recipe-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}
.recipe-meta .ingredients,
.recipe-meta .directions {
  margin-bottom: 2rem;
}
.recipe-meta .ingredients h6,
.recipe-meta .directions h6 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e5e5;
  font-family: "Roboto Slab";
  color: #A18630;
}
.recipe-meta .ingredients ul, .recipe-meta .ingredients ol,
.recipe-meta .directions ul,
.recipe-meta .directions ol {
  padding-left: 1.5rem;
}
.recipe-meta .ingredients ul li, .recipe-meta .ingredients ol li,
.recipe-meta .directions ul li,
.recipe-meta .directions ol li {
  margin-bottom: 0.5rem;
}
.recipe-meta .ingredients p, .recipe-meta .ingredients em, .recipe-meta .ingredients strong, .recipe-meta .ingredients b,
.recipe-meta .directions p,
.recipe-meta .directions em,
.recipe-meta .directions strong,
.recipe-meta .directions b {
  font-family: "Roboto Slab";
}
.recipe-meta .ingredients {
  float: left;
  width: 45%;
}
.recipe-meta .directions {
  float: right;
  width: 50%;
}
.recipe-meta .directions li {
  line-height: 1.6;
  margin-bottom: 1rem;
}
.recipe-meta:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 768px) {
  .recipe-meta .ingredients,
  .recipe-meta .directions {
    float: none;
    width: 100%;
  }
  .recipe-meta .recipe-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
