/**
 * Copyright © 2015 Ihor Vansach (ihor@magefan.com). All rights reserved.
 * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
 *
 * Glory to Ukraine! Glory to the heroes!
 */

.p4m-blog-recent__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.p4m-blog-recent {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
}

.p4m-blog-recent__item {
    margin: 0;
    padding: 0;
}

.p4m-blog-recent__image {
    display: block;
    margin-bottom: 16px;
}

.p4m-blog-recent__image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.p4m-blog-recent__post-title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
}

.p4m-blog-recent__meta {
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.p4m-blog-recent__date:after {
    content: "|";
    margin: 0 8px;
    color: #ccc;
}

.p4m-blog-recent__excerpt {
    display: -webkit-box;
    margin-bottom: 12px;
    overflow: hidden;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.p4m-blog-recent__more {
    display: inline-block;
}

@media (max-width: 767px) {
    .p4m-blog-recent__list {
        grid-template-columns: 1fr;
    }
}
