ul.g5blog__post-meta {
	@include align-items-center();
	a {
		color: inherit;
		border-bottom: 1px solid transparent;
		@include transition(all .3s);
		&:hover {
			color: var(--g5-color-dark);
			border-color: currentColor;
		}
	}
	li {
		margin: 0;
		&:after {
			content: '';
			display: inline-block;
			width: 4px;
			height: 4px;
			@include border-radius(50%);
			background-color: #C4C4C4;
			margin: 0 10px;
			vertical-align: middle;
		}
		&:last-child {
			&:after {
				display: none;
			}
		}

		&.meta-author {
			a {
				color: var(--g5-color-dark);
			}
			img {
				@include border-radius(50%);
				margin-right: 5px;
				width: 32px;
			}
			&:after {
				width: 1px;
				height: 14px;
				@include border-radius(0);
			}
		}

		i {
			display: none;
		}

	}
}

