.block-post {
	width: 100%;
}

.block-post-image {
	display: block;
	overflow: hidden;
	margin-bottom: 15px;
}

.block-post-image img {
	width: 100%;
	height: auto;
	transition: transform var(--speed-default) ease;
}

.block-post-image:hover img,
.block-post-image:focus img {
	transform: scale(1.05);
}

.block-post-meta {
	padding: 0;
	display: flex;
	font-size: 12px;
	font-weight: 300;
	margin: 0 0 14px 0;
	text-transform: uppercase;
	color: var(--color-secondary);
}

.block-post-meta a {
	color: inherit;
	text-decoration: none;
}

.block-post-meta li + li:before {
	content: '•';
	margin: 0 6px;
}

.block-post-title {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 15px;
	color: var(--color-primary);
}

.block-post-title a {
	color: inherit;
	text-decoration: none;
}

.block-post-excerpt {
	font-size: 12px;
	font-weight: 300;
	line-height: 2;
	margin-bottom: 15px;
}

.block-post-excerpt p:last-child {
	margin-bottom: 0;
}

.block-post-tags {
	margin-bottom: 15px;
}

.block-post-tags a + a {
	margin-left: 5px;
}

.block-post-share {
	display: flex;
	font-size: 14px;
	align-items: center;
	color: var(--color-secondary);
}

.block-post-share a {
	color: inherit;
	margin-left: 10px;
	text-decoration: none;
}

.block-post-share a:hover,
.block-post-share a:focus {
	color: var(--color-info);
}

.block-post-share span {
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
}