/* PPA Pathways Grid */
.ppa-pathway-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.ppa-pathway-card {
	background: #fff;
	border-radius: 18px;
	padding: 36px 20px;
	text-align: center;
	text-decoration: none;
	color: inherit;
	display: block;
}


.ppa-pathway-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--ppa-card-accent, var(--ppa-orange));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin: 0 auto 16px;
}

.ppa-pathway-icon i,
.ppa-pathway-icon svg {
	font-size: 26px;
	width: 26px;
	height: 26px;
	fill: currentColor;
}

.ppa-pathway-title {
	font-family: inherit;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--ppa-grey, #343434);
	line-height: 1.3;
	text-transform: none;
	letter-spacing: normal;
}

.ppa-pathway-subtitle {
	font-family: 'Playfair Display', 'Inria Serif', serif;
	font-style: italic;
	font-size: 14px;
	color: var(--ppa-card-accent, var(--ppa-orange));
	opacity: 0.7;
}

/* Responsive columns are driven by the widget's Columns control
   (add_responsive_control in class-ppa-pathways.php) – no hardcoded breakpoints here. */
