/* ============================================================
   Membership page sections — matches designs/members-page/calwep members.pdf
   (members-page-builder: leading_the_way + benefits_grid)
   ============================================================ */

/* ---------- Leading the Way (split intro) ---------- */
.leading-way {
	padding: 64px 0;
	background: #ffffff;
}
.leading-way__cols {
	display: flex;
	align-items: center;
	gap: 56px;
}
.leading-way__text { flex: 1 1 42%; }
.leading-way__media { flex: 1 1 58%; }

.leading-way__title {
	margin: 0 0 20px;
	font-size: 34px;
	font-weight: 700;
	color: #16384d;
}
.leading-way__content {
	font-size: 16px;
	line-height: 1.6;
	color: #333333;
}
.leading-way__cta { margin: 26px 0 0; }

/* Donut stats: conic-gradient ring with a navy percent disc in the middle. */
.leading-way__stats {
	display: flex;
	justify-content: center;
	gap: 28px;
}
.leading-way__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 0 1 160px;
}
.leading-way__donut {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 112px;
	border-radius: 50%;
}
.leading-way__donut-center {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #16384d;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
}
.leading-way__stat-label {
	margin-top: 12px;
	font-size: 16px;
	font-weight: 700;
	color: #16384d;
}
.leading-way__stat-caption {
	margin-top: 4px;
	font-size: 11px;
	line-height: 1.4;
	color: #66707a;
}

/* Document thumbnail links under the stats. */
.leading-way__docs {
	display: flex;
	justify-content: center;
	gap: 44px;
	margin-top: 36px;
}
.leading-way__doc {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}
.leading-way__doc-thumb img {
	max-height: 175px;
	max-width: 100%;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.leading-way__doc:hover .leading-way__doc-thumb img {
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
	transform: translateY(-2px);
}
.leading-way__doc-label {
	margin-top: 14px;
	font-size: 14px;
	font-weight: 600;
	color: #16384d;
}
.leading-way__doc:hover .leading-way__doc-label { text-decoration: underline; }

/* ---------- Benefits Grid (icon cards) ---------- */
.benefits-grid {
	padding: 24px 0 64px;
	background: #ffffff;
}
.benefits-grid__title {
	margin: 0 0 40px;
	font-size: 34px;
	font-weight: 700;
	color: #16384d;
}
.benefits-grid__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 44px 56px;
}
.benefits-grid__icon img {
	height: 64px;
	width: auto;
}
.benefits-grid__item-title {
	margin: 14px 0 6px;
	font-size: 17px;
	font-weight: 700;
	color: #1a1a1a;
}
.benefits-grid__item-text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
	color: #444444;
}
.benefits-grid__footnote {
	margin-top: 40px;
	font-size: 14px;
	color: #444444;
}
.benefits-grid__footnote p { margin: 0; }
.benefits-grid__cta {
	margin: 34px 0 0;
	text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
	.leading-way__cols { flex-direction: column; gap: 40px; }
	.leading-way__text, .leading-way__media { flex: 1 1 100%; width: 100%; }
	.benefits-grid__items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.leading-way__stats { flex-wrap: wrap; }
	.leading-way__docs { flex-direction: column; align-items: center; }
	.benefits-grid__items { grid-template-columns: 1fr; }
}
