.article-hero {
	padding: 1rem;
	margin-top: 2rem;
}

.article-hero h1 {
	font-size: 3rem;
}

.article-page .entry-meta .author, .article-page .entry-meta .meta-sep  {
	display: none;
}

.article-page .entry-meta .entry-date {
	font-weight: 700;
	font-size: 0.8rem;
	line-height: 1.25rem;
}

.type-post.status-publish {
  height: 100%;
}

.tile-grid {
	grid-template-columns: auto;
	grid-gap: 2rem;
}

.tile {
	padding: 2rem;
	padding-bottom: 45%;
	background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.tile .entry-title {
	height: 5rem;
}

.tile .entry-summary {
	height: 8rem;
}

.entry-title a:link, .entry-title a:visited, .entry-title a:focus, .entry-title a:active {
	color: #111 !important;
}

.entry-title a:hover {
	color: #fff234;
	text-decoration: underline;
}

.tile a.more-link:link, .tile a.more-link:visited, .tile a.more-link:focus, .tile a.more-link:active, .tile a.more-link:hover {
	color: #111;
}

.article-button {
	position: relative;
	top: -4rem;
  display: block;
  text-decoration: none;
  padding: 0.5rem 1rem;
  width: fit-content;
  font-weight: 600;
}

.article-button:link, .article-button:focus, .article-button:visited, .article-button:active  {
	background-color: #fff234;
  color: #111;
}

.article-button:hover {
	background-color: #111;
	color: #fff234;
	text-decoration: none;
}

.article-hero ol {
	list-style-type: decimal;
	padding-left: 2rem;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.article-hero ol li {
	padding-bottom: 1rem;
}


@media only screen and (min-width:735px) {
	.article-hero {
		margin-top: 6rem;
	}

	.article-page {
		padding-top: 6rem;
	}

	.tile-grid {
		grid-template-columns: repeat(4, 1fr);
		grid-gap: 2rem;
	}

	.tile {
		grid-column: span 2;
	}

	.breadcrumbs {
		position: relative;
		top: -2rem;
		font-size: 0.85rem;
	}
}



@media only screen and (min-width:1069px) {
	.tile-grid {
		grid-template-columns: repeat(6, 1fr);
	}

}


@media only screen and (min-width:1369px) {
	.tile-grid {
		grid-template-columns: repeat(8, 1fr);
	}

}