.recipe-header {
    text-align: left;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.recipe-meta {
    margin-bottom: 0.1rem;
}

.recipe-title {
    margin-bottom: 0.1rem;
}

.highlight-bubble {
    background-color: var(--secondary-pink);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 1rem;
    display: inline-block;
    margin: 0.1rem;
}

.recipe-highlights {
    display: flex;
    flex-wrap: wrap; /* Allows bubbles to wrap on smaller screens */
    gap: 0.5rem; /* Space between bubbles */
    margin: 1.5rem 0; /* Add some spacing around the highlight section */
}

.ingredients {
    margin: 2rem 0;
}

.ingredients ul {
    list-style: none;
    padding: 0;
}

.ingredients li {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--primary-grey);
    padding-bottom: 0.5rem;
}

.recipe-image {
    width: 100%;
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
    margin: 1rem auto;
    display: block;
}

/* STYLES FOR POST CONTENT */
.post-content img {
    max-width: 85%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Adjust for rounded corners */
    display: block; /* Prevent inline display issues */
    margin: 0 auto; /* Center the image */
  }
  
  .post-content ol,
  .post-content ul {
    padding-left: 1.5em; /* Add space for bullets/numbers within the div */
    margin: 0 auto; /* Center the list if desired */
    list-style-position: inside; /* Ensure bullets/numbers are inside the container */
  }
  
  .post-content li {
    margin-bottom: 0.5em; /* Optional: Add spacing between list items */
  }

  .special-note {
    margin: 1rem 0;
    padding: 1.5rem;
    background: var(--secondary-mist);
    border-left: 5px solid var(--secondary-sage);
}