.sidebar--recent-posts .recent-posts__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #292c3d;
}
.sidebar--recent-posts .recent-item {
    display: block;
    margin-bottom: 20px;
}
.sidebar--recent-posts .recent-item::after {
    content: '';
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}
.sidebar--recent-posts .recent-image {
    display: table-cell;
    padding-right: 10px;
    width: 188px;
    height: 80px;
    background-size: cover;
    background-position: center;
}
.sidebar--recent-posts .recent-info {
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
}
.sidebar--recent-posts .recent-meta li {
    display: inline-block;
}
.sidebar--recent-posts .recent-info,
.sidebar--recent-posts .recent-meta li {
    color: #292c3d;
}
.sidebar--recent-posts .recent-item:hover .recent-info,
.sidebar--recent-posts .recent-item:hover .recent-meta li {
    color: #4AC18E;
}


@media (min-width: 640px) and (max-width: 1199px), (max-width: 479px) {
    .sidebar--recent-posts .recent-item {
        padding: 3.5%;
    }
}

@media (max-width: 1199px) {
    .sidebar--recent-posts {
        font-weight: 500;
        color: #999baa;
    }
    .sidebar--recent-posts .recent-posts__title {
        margin-bottom: 25px;
        font-weight: 600;
        font-size: 32px;
        line-height: 120%;
        text-transform: capitalize;
        transition: color .2s;
    }
    .sidebar--recent-posts .recent-posts__inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .sidebar--recent-posts .recent-item {
        display: block;
        margin: 0;
        padding: 3.5% 3.5%;
        border-radius: 4px;
        background-color: #f9f9f9;
        color: #999BAA;
        transition: .25s background-color ease;
    }
    .sidebar--recent-posts .recent-item::after {
        content: none;
    }
    .sidebar--recent-posts .recent-item:hover, 
    .sidebar--recent-posts .recent-item:focus {
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 24px 48px 0 rgba(0, 0, 0, .07);
        background-color: #fff;
        color: #999BAA;
    }
    .sidebar--recent-posts .recent-image {
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: 60%;
        padding-right: 0;
        margin-bottom: 14px;
        background: transparent no-repeat 50% 50%;
        background-size: cover;
    }
    .sidebar--recent-posts .recent-image img {
        width: 100%;
        border-radius: 8px;
    }
    .sidebar--recent-posts .recent-info {
        display: block;
        padding-left: 8px;
        padding-right: 8px;
    }
    .sidebar--recent-posts .recent-meta {
        display: block;
        max-width: 100%;
        display: -webkit-box;
        height: 65px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        margin-bottom: 4px;
        font-size: 18px;
        line-height: 120%;
        font-weight: 600;
        text-decoration: none;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
        color: #292c3d;
        transition: color .2s;
    }
}


@media (max-width: 991px) {
    .sidebar--recent-posts .recent-posts__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .sidebar--recent-posts .recent-posts__inner > *:nth-child(odd):last-child {
        grid-column: 1 / -1;
    }
    .sidebar--recent-posts .recent-meta {
        font-size: 20px;
        height: 72px;
        -webkit-line-clamp: 3;
    }
    .sidebar--recent-posts .recent-posts__inner > *:nth-child(odd):last-child .recent-meta {
        height: 48px;
        -webkit-line-clamp: 2;
    }
}


@media (max-width: 767px) {
    .sidebar--recent-posts .recent-meta {
        font-size: 18px;
        height: 65px;
        -webkit-line-clamp: 3;
    }
    .sidebar--recent-posts .recent-posts__inner > *:nth-child(odd):last-child .recent-meta {
        height: 44px;
        -webkit-line-clamp: 2;
    }
    .sidebar--recent-posts .recent-posts__title {
        font-size: 31px;
    }
}


@media (max-width: 639px) {
    .sidebar--recent-posts .recent-posts__inner {
        grid-template-columns: repeat(1, 1fr);
    }
    .sidebar--recent-posts .recent-meta,
    .sidebar--recent-posts .recent-posts__inner > *:nth-child(odd):last-child .recent-meta {
        font-size: 18px;
        height: 65px;
        -webkit-line-clamp: 3;
    }
}


@media (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
    .sidebar--recent-posts .recent-posts__inner {
        gap: 16px;
    }
}