/* What Is Google Ad Grants widget styles (match Downloads/Homepage.html) */

.agp-what-is-ad-grants-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);
}

.agp-what-is-ad-grants-widget.explainer-wrap {
	background: var(--light);
	border-top: 1px solid var(--border);
	padding: 0 40px;
}

.agp-what-is-ad-grants-widget .explainer-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 96px 0;
}

.agp-what-is-ad-grants-widget .explainer-header {
	margin-bottom: 56px;
}

.agp-what-is-ad-grants-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-what-is-ad-grants-widget .section-h2 {
	color: var(--navy);
	margin-bottom: 14px;
	font-size: 38px;
	font-weight: 800 !important;
	line-height: 1.2;
}

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

.agp-what-is-ad-grants-widget .section-sub p {
	margin: 0;
	max-width: inherit;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.agp-what-is-ad-grants-widget .steps-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 48px;
	display: grid;
	position: relative;
}

.agp-what-is-ad-grants-widget .steps-grid:before {
	content: '';
	background-image: repeating-linear-gradient(90deg, var(--teal) 0, var(--teal) 6px, transparent 6px, transparent 14px);
	height: 2px;
	position: absolute;
	top: 36px;
	left: calc(16.66% + 10px);
	right: calc(16.66% + 10px);
}

.agp-what-is-ad-grants-widget .step-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px 28px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.agp-what-is-ad-grants-widget .step-card:hover {
	border-color: var(--teal);
	box-shadow: 0 8px 28px #1aa18c1a;
}

.agp-what-is-ad-grants-widget .step-num {
	background: var(--teal);
	color: #fff;
	z-index: 1;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	position: relative;
	box-shadow: 0 4px 16px #1aa18c4d;
}

.agp-what-is-ad-grants-widget .step-title {
	color: var(--navy);
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 700 !important;
}

.agp-what-is-ad-grants-widget .step-desc {
	color: var(--gray);
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 1.65;
	font-weight: 400 !important;
}

.agp-what-is-ad-grants-widget .step-link {
	color: var(--teal);
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600 !important;
	text-decoration: none;
	display: inline-flex;
}

.agp-what-is-ad-grants-widget .explainer-highlight {
	background: var(--navy);
	border-radius: 16px;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	padding: 32px 40px;
	display: flex;
}

.agp-what-is-ad-grants-widget .explainer-highlight p {
	color: #fffc;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	font-weight: 400 !important;
}

.agp-what-is-ad-grants-widget .explainer-highlight strong {
	color: var(--teal);
}

.agp-what-is-ad-grants-widget .btn-primary {
	background: var(--teal);
	color: #fff;
	border-radius: 100px;
	align-items: center;
	gap: 8px;
	padding: 15px 32px;
	font-family: Sora, sans-serif;
	font-size: 15px;
	font-weight: 600 !important;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s;
	display: inline-flex;
}

.agp-what-is-ad-grants-widget strong {
	font-weight: 700 !important;
}

.agp-what-is-ad-grants-widget .btn-primary:hover {
	background: var(--teal-dark);
	transform: translateY(-1px);
}

@media (max-width: 900px) {
	.agp-what-is-ad-grants-widget.explainer-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}

	.agp-what-is-ad-grants-widget .section-h2 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.agp-what-is-ad-grants-widget .steps-grid {
		grid-template-columns: 1fr;
	}

	.agp-what-is-ad-grants-widget .steps-grid:before {
		display: none;
	}

	.agp-what-is-ad-grants-widget .explainer-highlight {
		flex-direction: column;
		align-items: flex-start;
	}
}

