.time {
    position: absolute;
    bottom: 6px;
}
.time > .container > div {
    display: inline-block;
    background-color: rgb(0 0 0 / 80%);
    padding: 6px 15px;
}
svg.icon-clock {
    vertical-align: middle;
    fill: #673ab7;
    stroke: currentColor;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
}



div[itemprop="description"] {
    margin-top: 20px;
    margin-bottom: 20px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 30px;
}
.tags a {
    position: relative;
    display: inline-block;
    height: 26px;
    padding-left: 15px;
    padding-right: 8px;
    background: #3F51B5;
    color: #fff;
    line-height: 23px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 3px 5px 5px 3px;
}
.tags a::before,
.tags a::after {
    content: '';
    position: absolute;
}
.tags a::before {
    top: 0;
    left: -14px;
    width: 15px;
    height: 26px;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    background-color: #3F51B5;
}
.tags a::after {
    top: 10px;
    left: 1px;
    float: left;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: -1px -1px 2px rgba(0,0,0,0.4);
}
.tags a:hover {
    background-color: #242424;
    color: orange;
}
.tags a:hover::before {
    background-color: #242424;
}
.tags a:first-child {
    margin-inline-start: 15px;
}
.section-ingredients {
    margin: 30px 0;
    padding: 24px 40px;
    background: #e4f3e9;
    font-family: "Neucha", cursive;
}
ul.ingredients {
    max-width: 768px;
    font-size: 24px;
}
.ingredients > li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.ingredients > li div:nth-child(1) {
    display: list-item;
}
.ingredients > li div:nth-child(1)::marker {
    color: #e91e63;
}
.ingredients > li div:nth-child(2) {
    flex: 1 0;
    border-bottom: 2px dotted #333;
    /* height: 1em; */
    margin: 0 .4em;
}
.ingredients a {
    text-decoration: none;
    color: #9C27B0;
    letter-spacing: 1px;
}
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
li {
    margin: 0;
    padding: 0;
}


ol {
    position: relative;
    margin-inline-start: 10px;
    counter-reset: numbered-list;
    border-inline-start: 3px solid #874295;
}
ol li {
    margin-bottom: 30px;
    padding-left: 30px;
}
ol li:last-child {
    border-left: 3px solid var(--body-bg);
    margin-left: -3px;
}
ol li:before {
    display: block;
    margin-top: 0;
    width: 50px;
    height: 50px;
    position: absolute;
    left: -26px;
    background-color: #9C27B0;
    color: white;
    content: counter(numbered-list, decimal);
    counter-increment: numbered-list;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    border: 4px solid var(--body-bg);
    border-radius: 50%;
}
