.services > a {
	width: calc(100% - 3em);
	padding: 0.5em 1.5em;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-size: cover;
	background-position: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-shadow: 1px 1px 2px black;
	background-color: #000000cf;
	background-blend-mode: darken;
	transition: background-color 0.1s ease, color 0.1s ease;
	margin-top: 20px;
	color: #b9b9b9;
}

.services > a:hover {
	background-color: #000000af;
	color: #ffffff;
}

.services h3 {
	margin: 0;
	color: white;
	text-shadow: 2px 1px 3px black;
}

#ratings {
	display: flex;
	flex-direction: row;
	gap: 1em;
}

.rating {
	margin-top: 0.5em;
	border: 2px solid #7f7f7f7f;
	background-color: #000000af;
	padding: 5px;
	flex-wrap: wrap;
	flex: 1 1 300px;
}

@media (max-width: 600px) {
	#ratings {
		flex-direction: column;
	}

	.rating {
		flex: 1 0 auto;
	}
}

.rating .reviewdate {
	font-size: 0.75em;
	color: #9f9f9f;
	margin-bottom: 0.2em;
}

.filledstar {
	color: #e0a631;
}

.emptystar {
	color: #5f5f5f;
}

.rating blockquote {
	margin-left: 1em;
	font-style: normal;
}

.rating p {
	font-size: 0.8em;
	text-align: left;
}

.services p {
	text-align: left;
}
