
article {
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
	width: 30%;
	width: calc(33% - 10px);
	margin-bottom: 15px;
	color: #4a4a4a;
}

article figure {
    padding-top: 50%;
    position: relative;
    margin: 0px;
}
article figure picture {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
article figure img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
article .article-author,
article .article-date,
article .article-category {
    white-space: nowrap;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 20px 20px;
    font-size: 14px;
    min-height: 24px;
    padding: 2px 0px 0px 24px;
}
article .article-category {
    background-position: left center;
}
article .article-category:empty {
	display: none;
}

.article-author {
	background-image: url(/icons/author.svg);
}
.article-author:hover {
	background-image: url(/icons/author_hover.svg);
}
.article-category {
	background-image: url(/icons/category.svg);
}
.article-category:hover {
	background-image: url(/icons/category_hover.svg);
}
.article-date {
	background-image: url(/icons/date.svg);
}
.article-date:hover {
	background-image: url(/icons/date_hover.svg);
}

article .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px 5px 10px;
    margin: 0px -10px 10px -10px;
    border-bottom: 1px solid #dfdede;
}
article .bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0px;
    margin-top: 10px;
}
article:hover {
    transform: scale(1.02);
}

article .post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
article .post-data {
    padding: 10px 10px 0px 10px;
}
article .post-data a {
    position: relative;
    z-index: 1;
}

article .post-body {
    max-height: 140px;
    height: 140px;
    overflow: hidden;
}

article .post-header {
    margin-bottom: 0.5rem;
}

article .post-data [itemprop="headline"] {
    font-size: 24px;
    font-size: 1.475rem;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.2em;
	min-height: 60px;
	height: 3.6em;
}
article .post-data [itemprop="articleBody"] {
    font-size: 16px;
    font-size: 0.925rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    line-height: 1.2em;
    height: 3.6em;
}

article li {
    list-style-type: disc;
}

@media screen and (max-width: 1399px) {
    article .post-data [itemprop="headline"],
    article .post-data [itemprop="articleBody"] {
        -webkit-line-clamp: 2;
    }
    article .post-data [itemprop="headline"] {
        font-size: 20px;
    }
}

@media screen and (max-width: 1023px) {
	article {
		width: 48%;
		width: calc(50% - 10px);
	}
	article:nth-child(even) {
		margin-left: 0px;
		margin-right: 0px;
	}
	article:nth-child(odd) {
		margin-right: 20px;
	}
}

@media screen and (max-width: 740px) {
	article {
		width: 100%;
	}
	article:nth-child(even),
	article:nth-child(odd) {
		margin-left: 0px;
		margin-right: 0px;
	}
}