/* Version 1.0.5 */

.thumbnail-wrapper {
    margin-bottom: 26px;
}

.author-wrapper {
    margin: 10px 0 26px 0;
}

.author-row {
    line-height: 11px;
}

.author-container {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 8px;
    text-decoration: none;
}

.author-container--image img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-container--details {
    display: grid;
    align-items: center;
    font-size: 14px;
    color: #1B1B1B;
}

.author-container--name {
    font-weight: 700;
}

.author-container--position {
    font-weight: 400;
}

.author-container--details .author-container--position p{
    margin-bottom: 7px !important;
}

.pre_content_post {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-ratings {
    min-width: 90px;
}

.recipe-info {
    display: flex;
    gap: 26px;
    margin-top: 26px;
    margin-bottom: 17px;
}

.recipe-info-item {
    display: flex;
    gap: 10px;
}

.recipe-info-item--label {
    margin-top: 2px;
}

.recipe-info-item--link,
.recipe-info-item--name {
    font-weight: 600;
    color: #1B1B1B;
    text-decoration: none;
}

.recipe-nutritionals-container {
    margin-bottom: 26px;
}

.recipe-nutritionals-container--title {
    color: #1B1B1B;
    font-weight: 700;
    margin-bottom: 14px;
}

.recipe-nutritionals {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.recipe-nutritionals--item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 101px;
    height: 40px;
    background: #DF3B3C;
    color: #fff;
}

.recipe-nutritionals--value {
    font-weight: 600;
}

.steps-row {
    margin: 13px 0;
}

.step-item {
    margin-bottom: 20px;
}

.step-item--label {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #DF3B3C;
    text-transform: uppercase;
}

@media screen and (max-width: 768px) {
    .author-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 0 25px;
    }

    .content_post_terms {
        display: flex;
        overflow: scroll;
        padding-bottom: 15px;
    }

    .author-wrapper .ratting_mobile {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .recipe-info {
        flex-wrap: wrap;
        row-gap: 10px;
        column-gap: 26px;
    }

    .recipe-info-time {
        width: 100%;
    }
}