// Post Styling

.post {
	margin: 0 0 2em;
	padding: 0 0 3em;
}

article {
	border-bottom: solid 1px #eeeeee;
	.entry-title {
		line-height: 1.2em;
		margin-bottom: 0.5em;
		a {
			font-weight: 700;
			text-decoration: none;
			color: var(--accent);
			&:hover {
				color: var(--accent);
			}
		}
	}
	.entry-meta {
		display: flex;
		margin-bottom: 0.5em;
		a {
			color: black;
			text-decoration: underline;
			margin-right: 0.5em;
		}
		img {
			margin-right: 0.5em;
			margin-left: 0.5em;
			border-radius: 50%;
		}
		.posted-on, .byline {
			display: flex;
			align-items: center;
		}
	}
	.entry-excerpt {
		margin-bottom: 0.8em;
		font-size: 0.9em;
		width: 80%;
		color: #999;
	}
	.more-link {
		@include readmore();
	}
}

.post-navigation {
	span.dashicons {
		position: relative;
		top: 2px;
	}
}
