/* Coast to Coast — Services / Case Studies / Testimonials front-end styles */

.c2c-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin: 1.5rem 0;
}

.c2c-grid-cols-1 { grid-template-columns: 1fr; }
.c2c-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.c2c-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.c2c-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 782px) {
	.c2c-grid {
		grid-template-columns: 1fr;
	}
}

/* Cards */

.c2c-card {
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.c2c-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.c2c-card__image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.c2c-card__title {
	margin: 0;
	padding: 1rem;
	font-size: 1.1rem;
}

/* Hero */

.c2c-hero img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: cover;
}

.c2c-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.c2c-archive {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.c2c-archive__header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.c2c-title {
	margin-top: 0;
}

.c2c-related {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 1rem 3rem;
}

/* Testimonials */

.c2c-testimonial {
	margin: 0;
	padding: 1.5rem;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	background: #fafafa;
}

.c2c-testimonial__photo img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 0.75rem;
}

.c2c-testimonial__quote {
	font-style: italic;
}

.c2c-testimonial__meta {
	margin-top: 0.75rem;
	display: flex;
	flex-direction: column;
}

.c2c-testimonial__name {
	font-style: normal;
	font-weight: 600;
}

.c2c-testimonial__role {
	font-size: 0.9rem;
	color: #666;
}
