/**
 * OniGrow Tools showcase section (homepage and landing pages).
 * Self-contained: no dependency on the theme stylesheet.
 */
.og-showcase {
	padding: 50px 20px;
	background: #f8f9fa;
	color: #333;
}

.og-showcase-inner {
	max-width: 1080px;
	margin: 0 auto;
	text-align: center;
}

.og-showcase-title {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.25;
}

.og-showcase-lead {
	margin: 0 auto 30px;
	max-width: 760px;
	font-size: 16px;
	line-height: 1.6;
	color: #555;
}

.og-showcase-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}

.og-showcase-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	padding: 20px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
}

.og-showcase-icon {
	font-size: 26px;
	line-height: 1;
	margin-bottom: 10px;
}

.og-showcase-name {
	margin: 0 0 8px;
	font-size: 17px;
	line-height: 1.3;
}

.og-showcase-benefit {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.5;
	color: #555;
	flex: 1 1 auto;
}

.og-showcase-cost {
	display: inline-block;
	padding: 4px 10px;
	background: #edf7ed;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	color: #3c8c40;
}

.og-showcase-free {
	margin: 0 auto 22px;
	max-width: 760px;
	font-size: 15px;
	line-height: 1.55;
	color: #333;
}

.og-showcase-credits {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	font-size: 15px;
}

.og-showcase-credits-label {
	font-weight: 600;
}

.og-showcase-plan strong {
	margin-right: 6px;
}

.og-showcase-note {
	margin: 16px auto 24px;
	max-width: 760px;
	font-size: 14px;
	color: #666;
	line-height: 1.55;
}

.og-showcase-cta {
	display: inline-block;
	padding: 14px 28px;
	background: #4CAF50;
	color: #fff;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
}

.og-showcase-cta:hover,
.og-showcase-cta:focus {
	background: #45a049;
	color: #fff;
}

@media (max-width: 900px) {
	.og-showcase-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.og-showcase {
		padding: 36px 16px;
	}

	.og-showcase-title {
		font-size: 23px;
	}

	.og-showcase-grid {
		grid-template-columns: 1fr;
	}
}
