/* Launch Adgroups widget styles (match Downloads/Homepage.html) */

.agp-launch-adgroups-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-launch-adgroups-widget.features-wrap {
	background: var(--white);
	padding: 0 40px;
}

.agp-launch-adgroups-widget .features-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 96px 0;
}

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

.agp-launch-adgroups-widget .section-sub {
	color: var(--gray);
	max-width: 560px;
	margin: 0 0 56px 0 !important;
	font-size: 16px !important;
	line-height: 1.5 !important;
	font-weight: 400 !important;
	display: block;
}

.agp-launch-adgroups-widget .section-sub,
.agp-launch-adgroups-widget .section-sub * {
	color: var(--gray) !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	margin-top: 0 !important;
}

.agp-launch-adgroups-widget .features-grid {
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	display: grid;
}

.agp-launch-adgroups-widget .feature-card {
	background: var(--light);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 28px 24px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.agp-launch-adgroups-widget .feature-card:hover {
	border-color: var(--teal);
	box-shadow: 0 4px 20px #1aa18c14;
}

.agp-launch-adgroups-widget .feature-icon {
	background: var(--teal-light);
	border-radius: 12px;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 14px;
	display: flex;
}

.agp-launch-adgroups-widget .feature-icon img,
.agp-launch-adgroups-widget .feature-icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

.agp-launch-adgroups-widget .feature-title {
	color: var(--navy);
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700 !important;
	line-height: 1.3;
}

.agp-launch-adgroups-widget .feature-desc {
	color: var(--gray);
	font-size: 13px;
	line-height: 1.65;
	font-weight: 400 !important;
	margin: 0;
}

@media (max-width: 900px) {
	.agp-launch-adgroups-widget.features-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}

	.agp-launch-adgroups-widget .features-grid {
		grid-template-columns: 1fr 1fr;
	}

	.agp-launch-adgroups-widget .section-h2 {
		font-size: 32px;
	}
}

@media (max-width: 600px) {
	.agp-launch-adgroups-widget .features-grid {
		grid-template-columns: 1fr;
	}

	.agp-launch-adgroups-widget .section-h2 {
		font-size: 26px;
	}
}

