.straus-recipe-ingredients-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.recipe-ingredient-section .ingredient-section-title {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.recipe-ingredient-section .ingredient-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #C8102E;
}

.recipe-ingredient-section .ingredient-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.recipe-ingredient-section .ingredient-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    padding-bottom: 15px;
    border-bottom: 1px solid #E0D9D6;
}

.recipe-ingredient-section .ingredient-item:last-child {
    border-bottom: none;
}

.recipe-ingredient-section .ingredient-item::before {
    content: "•";
    color: #C8102E;
    font-size: 22px;
    line-height: 1;
    display: inline-block;
    margin-top: -2px;
    /* aligns better with text */
}