.featured
{
	width: 100%;
}

.featured img
{
	width: 100%;
}

.postDetails
{
	padding-bottom: calc(0.5 * var(--section-padding));
	margin-bottom: calc(0.5 * var(--section-padding));
	border-bottom: 1px solid #eee;
	display: grid;
	gap: 5px;
}

.postDetails .author,
.postDetails time
{
	display: flex;
	align-items: center;
	gap: 3px;
}

.relatedPosts
{
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.relatedPosts h2
{
	grid-column: 1 / -1;
	text-align: center;
}

.wp-block-pullquote blockquote
{
	border: 2px solid #ccc;
	padding: var(--section-padding) 0;
	border-width: 1px 0;
	position: relative;
}

.wp-block-pullquote blockquote::after
{
	content: "";
	background: #fff url(/wp-content/themes/allaboutorganics/images/emblem.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 40px;
	width: 54px;

	position: absolute;
	left: calc(50% - 27px);
	bottom: -16px;
}


/* Latest Post Block */
.wp-block-latest-posts__list
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.wp-block-latest-posts__list li
{
	display: flex;
	flex-direction: column;
	position: relative;
}

.wp-block-latest-posts .wp-post-image
{
	width: 100%;
}

.wp-block-latest-posts__post-title
{
	background: var(--wp--preset--color--blue);
	padding: 20px;
	display: block;
	color: #fff;
	text-decoration: none;
	text-align: center;
	flex: 1;

	font-family: 'Roboto Slab', serif;
	font-size: 1.5em;
}

@media (hover: hover)
{
	.wp-block-latest-posts__post-title
	{
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background: #0000;
		color: #fff0;

		display: flex;
		justify-content: center;
		align-items: center;

		transition: background 0.2s linear 0.05s, color 0.2s linear;
	}

	.wp-block-latest-posts__post-title:hover
	{
		background: #0004;
		color: #ffff;
		transition: background 0.2s linear, color 0.2s linear 0.05s;
	}
}
