/* Customer Story widget styles (match Downloads/Homepage.html) */

.agp-customer-story-widget {
	--teal: #1aa18c;
	--teal-dark: #148a77;
	--teal-light: #e6f7f5;
	--navy: #0d1b2a;
	--gray: #6b7280;
	--light: #f9fafb;
	--white: #fff;
	--border: #e5e7eb;

	font-family: Sora, sans-serif;
	color: var(--navy);
	text-align: left;
}

.agp-customer-story-widget.cs-wrap {
	background: var(--light);
	border-top: 1px solid var(--border);
	padding: 0 40px;
}

.agp-customer-story-widget .cs-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 96px 0;
}

.agp-customer-story-widget .section-pill {
	background: var(--teal-light);
	color: var(--teal-dark);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 100px;
	margin-bottom: 20px;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 600 !important;
	display: inline-block;
}

.agp-customer-story-widget .section-h2 {
	color: var(--navy);
	margin-bottom: 14px;
	font-size: 38px;
	font-weight: 800 !important;
	line-height: 1.2;
}

.agp-customer-story-widget .section-sub {
	color: var(--gray);
	max-width: 560px;
	margin-bottom: 56px;
	font-size: 16px;
	line-height: 1.75;
	font-weight: 400 !important;
}

.agp-customer-story-widget .cs-layout {
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 64px;
	display: grid;
}

.agp-customer-story-widget .cs-stats {
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin: 28px 0 36px;
	display: grid;
}

.agp-customer-story-widget .cs-stat {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 20px 24px;
	text-align: center;
}

.agp-customer-story-widget .cs-stat-value {
	color: var(--teal);
	font-size: 30px;
	font-weight: 800 !important;
	line-height: 1;
	margin-bottom: 4px;
}

.agp-customer-story-widget .cs-stat-label {
	color: var(--navy);
	font-size: 12px;
	font-weight: 600 !important;
}

.agp-customer-story-widget .cs-quote-card {
	background: var(--navy);
	border-radius: 20px;
	padding: 40px;
	text-align: left;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.agp-customer-story-widget .cs-quote-mark {
	color: var(--teal);
	font-size: 56px;
	line-height: 0.9;
	margin-bottom: 16px;
	font-family: Georgia, serif;
}

.agp-customer-story-widget .cs-quote-text {
	color: #ffffffd9;
	font-size: 16px;
	line-height: 1.75;
	margin: 0 0 28px 0 !important; /* Avoid default <p> top margin pushing text out */
	font-weight: 400 !important;
}

.agp-customer-story-widget .cs-quote-text p {
	margin: 0;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.agp-customer-story-widget .cs-attribution {
	align-items: center;
	gap: 16px;
	display: flex;
	margin-top: auto;
}

.agp-customer-story-widget .cs-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid #1aa18c50;
	object-fit: cover;
	background: var(--teal-light);
}

.agp-customer-story-widget .cs-name {
	color: #fff;
	font-size: 14px;
	font-weight: 700 !important;
	margin-bottom: 2px;
}

.agp-customer-story-widget .cs-role {
	color: #ffffff80;
	font-size: 12px;
	line-height: 1.5;
	font-weight: 400 !important;
}

.agp-customer-story-widget .btn-cs {
	background: var(--teal);
	color: #fff;
	border-radius: 100px;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	font-family: Sora, sans-serif;
	font-size: 14px;
	font-weight: 600 !important;
	text-decoration: none;
	transition: background 0.2s;
	display: inline-flex;
}

.agp-customer-story-widget .btn-cs:hover {
	background: var(--teal-dark);
}

.agp-customer-story-widget .impact-cta {
	text-align: left;
}

.agp-customer-story-widget .impact-cta .btn-cs {
	margin-left: 0;
	margin-right: auto;
}

@media (max-width: 768px) {
	.agp-customer-story-widget .cs-layout {
		grid-template-columns: 1fr;
	}
}

