/* --- Joerrens Reviews - Frontend styles --- */
.joerrens-rv {
	margin-top: 3rem;
	margin-bottom: 3rem;
	padding: 3rem 2rem;
	box-sizing: border-box;
	background: #F4F2EE;
}
.joerrens-rv .joerrens-rv__inner {
	max-width: 1200px;
	margin: 0 auto;
}
.joerrens-rv h2.joerrens-rv__title {
	text-align: center !important;
	color: #005294 !important;
	margin: 0 0 1rem;
	line-height: 1.2;
}
.joerrens-rv .joerrens-rv__rating {
	text-align: center;
	font-size: 21px;
	color: #555;
	margin: 0 0 2.5rem;
}
.joerrens-rv .joerrens-rv__stars {
	color: #F4B400;
	letter-spacing: 1px;
	margin-right: 8px;
}
.joerrens-rv .joerrens-rv__rating-text {
	display: inline-block;
	vertical-align: middle;
}
.joerrens-rv .joerrens-rv__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.joerrens-rv .joerrens-rv__card {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 2rem 1.5rem;
	text-align: center;
}
.joerrens-rv .joerrens-rv__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	margin: 0 auto 14px;
	overflow: hidden;
}
.joerrens-rv .joerrens-rv__avatar--photo {
	background: transparent;
}
.joerrens-rv .joerrens-rv__avatar--photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.joerrens-rv .joerrens-rv__author {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 2px;
	color: #222;
}
.joerrens-rv .joerrens-rv__time {
	font-size: 13px;
	color: #777;
	margin: 0 0 14px;
}
.joerrens-rv .joerrens-rv__card-stars {
	color: #F4B400;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 16px;
}
.joerrens-rv .joerrens-rv__text {
	font-size: 21px;
	line-height: 1.4;
	color: #222;
	margin: 0 0 14px;
	min-height: 200px;
}
.joerrens-rv .joerrens-rv__more {
	font-size: 14px;
	color: #005294;
	text-decoration: none;
}
.joerrens-rv .joerrens-rv__more:hover {
	text-decoration: underline;
}
.joerrens-rv .joerrens-rv__footer {
	text-align: center;
	margin: 2.5rem 0 0;
}
.joerrens-rv .joerrens-rv__footer a {
	font-size: 21px;
	color: #005294;
	text-decoration: underline;
}
@media (max-width: 900px) {
	.joerrens-rv .joerrens-rv__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.joerrens-rv .joerrens-rv__text {
		min-height: 0;
		font-size: 18px;
	}
}