/* ABOUTME: Styles for the testimonials section with star rating cards. */
/* ABOUTME: Grid layout for testimonial cards with responsive column adjustments. */
.testimonials_grid {
}

@media screen and (min-width: 768px) {
	.testimonials_grid {
		column-count: 2;
	}
}

@media screen and (min-width: 1024px) {
	.testimonials_grid {
		column-count: 3;
	}
}

@media screen and (min-width: 1340px) {
	.testimonials_grid {
		column-count: 4;
	}
}

.testimonial_card {
	box-shadow: 0px 0px 5px #999;
	padding: 1rem;
	border-radius: var(--rbr);
	break-inside: avoid;
	margin: 0 0rem 1rem 0;
}

.testimonial_card .testimonial_rating {
	font-size: 1.5rem;
}

.testimonial_card .testimonial_text {
	font-weight: bold;
}
.testimonial_card .testimonial_text p {
	margin-block: 0.5rem;
}

.testimonial_card .testimonial_source {
	text-transform: uppercase;
	font-size: 95%;
	text-align: right;
}
