/* Organized blog card layout */
body.blog #posts .post-container {
	margin-bottom: 1.75rem;
}

body.blog #posts .hentry {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.09);
}

body.blog #posts .featured-media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

body.blog #posts .post-title {
	font-size: 1.6rem;
	line-height: 1.25;
}

body.blog #posts .post-title a::after {
	content: "Read Full Article →";
	display: block;
	width: max-content;
	margin-top: .9rem;
	padding: .65rem 1rem;
	border-radius: 6px;
	background: #2c6e9b;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .02em;
	line-height: 1;
	text-transform: uppercase;
	transition: background-color .2s ease, transform .2s ease;
}

body.blog #posts .post-title a:hover::after,
body.blog #posts .post-title a:focus::after {
	background: #1f526f;
	transform: translateY(-1px);
}

@media (min-width: 760px) {
	body.blog #posts {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
		align-items: stretch;
	}
	
	body.blog #posts .post-container {
		width: auto;
		margin: 0;
	}
	
	body.blog #posts .hentry {
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	
	body.blog #posts .post-content {
		flex: 1;
	}
	
	body.blog #posts .spinner-container,
	  body.blog #posts #infinite-handle {
		grid-column: 1 / -1;
	}
}

/* Organized blog card layout */
body.blog #posts .post-container {
	margin-bottom: 1.75rem;
}

body.blog #posts .hentry {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.09);
}

body.blog #posts .featured-media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

body.blog #posts .post-title {
	font-size: 1.6rem;
	line-height: 1.25;
}

@media (min-width: 760px) {
	body.blog #posts {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem;
		align-items: stretch;
	}
	
	body.blog #posts .post-container {
		width: auto;
		margin: 0;
	}
	
	body.blog #posts .hentry {
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	
	body.blog #posts .post-content {
		flex: 1;
	}
	
	body.blog #posts .spinner-container,
		  body.blog #posts #infinite-handle {
		grid-column: 1 / -1;
	}
}