.mwm-cpe-list{
    display:flex;
    flex-direction:column;
    gap:28px;
    width:100%;
}
.mwm-cpe-card{
    display:flex;
    width:100%;
    min-width:0;
    background:#f7f7f7;
    overflow:hidden;
}
.mwm-cpe-card__media{
    display:block;
    flex:0 0 48%;
    width:48%;
    height:275px;
    overflow:hidden;
    background:#ececec;
}
.mwm-cpe-card__media img{
    display:block;
    width:100%;
    height:275px;
    object-fit:cover;
    object-position:center;
    transition:transform .35s ease;
}
.mwm-cpe-card__media:hover img{transform:scale(1.025)}
.mwm-cpe-card__no-image{display:block;width:100%;height:100%;background:#e8e8e8}
.mwm-cpe-card__content{
    display:flex;
    flex:1 1 auto;
    min-width:0;
    flex-direction:column;
    align-items:flex-start;
    padding:34px 34px 28px;
}
.mwm-cpe-card__category{
    display:inline-block;
    margin:0 0 18px;
    padding:6px 14px 5px;
    color:#fff;
    background:#f5a28f;
    text-transform:uppercase;
    font-size:13px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:.04em;
    text-decoration:none;
}
.mwm-cpe-card__title{
    margin:0 0 16px;
    font-size:30px;
    line-height:1.15;
    font-weight:400;
    letter-spacing:.04em;
    text-transform:uppercase;
}
.mwm-cpe-card__title a{color:#222;text-decoration:none}
.mwm-cpe-card__excerpt{
    margin:0 0 22px;
    color:#6b625f;
    font-size:17px;
    line-height:1.45;
}
.mwm-cpe-card__separator{
    display:block;
    width:58px;
    height:1px;
    background:#6f6f6f;
    margin:0 0 17px;
}
.mwm-cpe-card__comments{
    color:#aaa09b;
    font-size:13px;
    font-style:italic;
    text-decoration:none;
    margin:0 0 12px;
}
.mwm-cpe-card__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:auto;
    min-height:38px;
    padding:9px 18px;
    background:#f5a28f;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    line-height:1.2;
    text-transform:uppercase;
    font-weight:700;
    transition:opacity .2s ease, transform .2s ease, background-color .2s ease;
}
.mwm-cpe-card__button:hover{color:#fff;opacity:.9;transform:translateY(-1px)}
.mwm-cpe-empty{padding:18px 20px;background:#f7f7f7;color:#666}

@media (max-width: 767px){
    .mwm-cpe-card{flex-direction:column}
    .mwm-cpe-card__media{
        flex-basis:auto!important;
        width:100%!important;
        height:240px;
    }
    .mwm-cpe-card__media img{height:240px}
    .mwm-cpe-card__content{padding:24px 22px}
    .mwm-cpe-card__title{font-size:25px}
    .mwm-cpe-card__excerpt{font-size:16px}
}
