/* Coastline Plugin
------------------------------------------- 

Table of contents
	- Testimonials
	- Media Queries

------------------------------------------- */

/* Testimonials
------------------------------------------- */

.testimonials-grid-container .testimonial {
	background-color: var(--white);
	margin-bottom: 24px;
	padding: 24px;
}

/* Media Queries
------------------------------------------- */

@media only screen and (min-width: 961px) {

	/* Testimonials
	--------------------------------------- */

	.testimonials-grid-container {
		display: flex;
		flex-wrap: wrap;
		gap: 24px;
	}
	
	.testimonials-grid-container .testimonial {
		margin-bottom: 0;
		width: calc( ( 100% - 48px ) / 3 );
	}

}

@media only screen and (max-width: 500px) {

	/* Testimonials
	--------------------------------------- */
	
	

}