.clearfix::after {
    content: '';
    display: table;
    clear: both
}
.clear::after {
    content: '';
    display: table;
    clear: both;
    height: 0;
    float: none
}
.small-recipe {
    margin-bottom: 45px;
}
.small-recipe-title {
    margin-bottom: 10px;
    color: #000;
    font-size: 36px;
}
.small-recipe-excerpt {
    color: #797979;
}
.small-recipe-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 32px;
    grid-row-gap: 16px;
    counter-reset:postSummaryCounter;
}
.small-recipe-hero {
    position: relative;
    grid-row: 1 / span 4;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 2px 3px 6px 0 rgba(0, 0, 0, .1);
    border-radius: 6px;
}
.small-recipe-hero-img{
    max-width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.small-recipe-hero-img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.small-recipe-hero-detail {
    padding: 30px;
}
.small-recipe-hero h3,
.small-recipe-hero h3 a{
    display: block;
    width: 100%;
    font-size: 36px;
    font-size: 22px;
    margin-bottom: 0;
    color: #000;
}
.small-recipe-hero h3:hover,
.small-recipe-hero h3 a:hover{
    color: #f14e22;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.small-recipe-hero-cat {
    color: #d54215;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-style: normal;
}

.small-recipe-item {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 2px 3px 6px 0 rgba(0, 0, 0, .1);
    border-radius: 6px;
}
.small-recipe-hero:before ,
.small-recipe-item:before {
    font-family: var(--gp-font--suez-one);
    counter-increment: postSummaryCounter;
    content: counter(postSummaryCounter);
    position: absolute;
    background: var(--wp--preset--color--primary);
    border-radius: 50%;
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    background: #F14E22;
    left: 0;
    top: 0;
    transform: translate(-40%, -30%);
    z-index: 99;
}
.small-recipe-hero:before {
    width: 46px;
    height: 46px;
    font-size: 18px;
    line-height: 18px;
}

.small-recipe-item-img{
    max-width: 22%;
}
.small-recipe-item-img img{
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.small-recipe-item h3,
.small-recipe-item h3 a{
    display: block;
    margin-bottom: 0;
    color: #000;
    font-size: 18px;
    width: 100%;
}
.small-recipe-item h3:hover,
.small-recipe-item h3 a:hover {
    color: #f14e22;
    transition: color 0.3s ease, background-color 0.3s ease;
}
.small-recipe-item h3 {
    padding: 0 20px;
}

.more-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: #000;
    font-weight: 600;
    font-size: 22px;
    margin-top: 20px;
    text-decoration: underline;
}
.more-link:after {
    content: '';
    display: inline-block;
/*    background-image: url(img/arrow-right-cercle.svg);*/
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}