/* Blog / Directory layout page */
@media (max-width: @xf-responsiveMedium)
{
    .p-body-sidebar
    {
        display: none;
    }
}
.p-body-main:not(.p-body-main--withSidebar) .block--previews .block-body {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "a a" "b_1 b_2" "b_3 b_4";
}
@media (min-width: @xf-responsiveMedium)
{
    @__ctaArticleFooter: 40px;
    .block.block--articles.block--previews .block-body .message--articlePreview
    {
        margin-top: 0;
        &:nth-of-type(n)
        {
            grid-area: unset;
            & .articlePreview
            {
                &-main
                {
                    flex-direction: column;
                 //   min-height: 100%;
                    padding-bottom: @__ctaArticleFooter;
                }
                &-image
                {
                    width: 100%;
                }
                &-title
                {
                    font-size: @xf-fontSizeLarger;
                }
                &-content
                {
                    margin-bottom: -@__ctaArticleFooter;
                }
                &-footer
                {
                    position: relative;
                    bottom: @__ctaArticleFooter;
                }
                &-meta
                {
                    border-top: solid 1px @xf-borderColor;
                    & .articlePreview-by
                    {
                        display: none;
                    }
                }
            }
        }
    }
}
.message--articlePreview .articlePreview-image+.articlePreview-text .bbWrapper:after
{
    background: none;
}
/**********/