/* Ways to Help — extends the home design system. */

.aryf-wth-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin: 1.4rem auto 0;
	max-width: 720px;
}
.aryf-wth-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5em 1em;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--c-border);
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--c-text);
	text-decoration: none;
	transition: background-color 0.18s ease, border-color 0.18s ease;
}
.aryf-wth-chip::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}
.aryf-wth-chip--blue   { color: var(--c-blue); }
.aryf-wth-chip--purple { color: var(--c-purple); }
.aryf-wth-chip--teal   { color: var(--c-teal); }
.aryf-wth-chip--amber  { color: var(--c-amber); }
.aryf-wth-chip--pink   { color: var(--c-pink); }
.aryf-wth-chip:hover,
.aryf-wth-chip:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--c-border-h);
	color: inherit;
	text-decoration: none;
}
.aryf-wth-chip > *:not(::before) { color: var(--c-text); }

/* Big sections */
.aryf-wth-section {
	scroll-margin-top: 90px;
}
.aryf-wth-section__head {
	max-width: 760px;
	margin: 0 0 3rem;
}
.aryf-wth-section__head .aryf-cta-primary {
	margin-top: 1.2rem;
}
.aryf-wth-section__footnote {
	font-size: 0.85rem;
	color: var(--c-text-mute);
	margin: 1rem 0 0;
}
.aryf-wth-section__benefits {
	margin-top: 1.5rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--c-text-soft);
	padding: 1.2rem 1.4rem;
	background: var(--c-bg-card);
	border: 1px solid var(--c-border);
	border-radius: 14px;
	border-left: 3px solid currentColor;
}

.aryf-wth-subhead {
	font-size: 1rem;
	font-weight: 500;
	color: var(--c-text-soft);
	margin: 0 0 1rem;
	letter-spacing: 0.02em;
}

.aryf-wth-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.aryf-wth-item {
	background: var(--c-bg-card);
	border: 1px solid var(--c-border);
	border-radius: 14px;
	padding: 1.2rem 1.3rem;
	transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.aryf-wth-item:hover {
	background: var(--c-bg-card-h);
	border-color: var(--c-border-h);
	transform: translateY(-1px);
}
.aryf-wth-item__h {
	font-size: 1.02rem;
	font-weight: 600;
	margin: 0 0 0.4rem;
	color: var(--c-text);
	letter-spacing: -0.01em;
}
.aryf-wth-item__p {
	font-size: 0.93rem;
	line-height: 1.55;
	color: var(--c-text-soft);
	margin: 0;
}

/* Section accent colors propagate through the body via currentColor */
.aryf-wth-section--blue   { color: var(--c-blue); }
.aryf-wth-section--purple { color: var(--c-purple); }
.aryf-wth-section--teal   { color: var(--c-teal); }
.aryf-wth-section--amber  { color: var(--c-amber); }
.aryf-wth-section--pink   { color: var(--c-pink); }
.aryf-wth-section .aryf-home-eyebrow { color: currentColor; }
.aryf-wth-section .aryf-home-h2,
.aryf-wth-section .aryf-home-p,
.aryf-wth-section .aryf-wth-item__h,
.aryf-wth-section .aryf-wth-item__p,
.aryf-wth-section .aryf-wth-subhead { color: var(--c-text); }
.aryf-wth-section .aryf-home-p,
.aryf-wth-section .aryf-wth-item__p,
.aryf-wth-section .aryf-wth-subhead { color: var(--c-text-soft); }

@media (max-width: 680px) {
	.aryf-wth-grid { grid-template-columns: 1fr; }
}
