.priorities-hero {
	padding: 4.5rem 1rem 3.25rem;
	background: var(--navy);
	color: var(--white);
	border-bottom: 3px solid rgba(245, 197, 66, 0.65);
}

.priorities-inner {
	margin: 0 auto;
	text-align: center;
	width: min(1100px, 90%);
}

.priorities-kicker {
	margin: 0 0 .9rem;
	padding: .35rem .8rem;
	color: rgba(255, 255, 255, .78);
	text-transform: uppercase;
	font-size: .85rem;
	letter-spacing: .10em;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 999px;
	display: inline-block;
}

.priorities-title {
	margin: 0 0 .9rem;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
}

.priorities-subtitle {
	margin: 0 auto;
	max-width: 65ch;
	color: rgba(255,255,255,.85);
	line-height: 1.7;
	font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.priorities-jump {
	margin-top: 1.6rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .65rem;
}

.jump-btn {
	padding: .6rem .95rem;
	background: rgba(255, 255, 255, .06);
	color: var(--white);
	font-weight: 800;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.jump-btn:hover {
	background: rgba(255, 255, 255, .10);
	border-color: rgba(255, 255, 255, .35);
	transform: translateY(-1px);
}

.jump-btn:focus {
	outline: 3px solid rgba(245, 197, 66, 0.75);
	outline-offset: 3px;
}

/* Accordion wrap */
.priorities-wrap {
	padding: 3.25rem 1rem 4rem;
	background: var(--offwhite);
}

.priorities-accordion {
	margin: 0 auto;
	display: grid;
	gap: 1rem;
	width: min(1100px, 90%);
}

/* Accordion item */
.acc-item {
	background: var(--white);
	border: 1px solid rgba(11, 42, 74, 0.14);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* Button */
.acc-btn {
	padding: 1.25rem 1.25rem;
	background: var(--white);
	color: var(--navy);
	text-align: left;
	font-weight: 900;
	font-size: 1.1rem;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	cursor: pointer;
}

.acc-btn:hover {
	background: rgba(11, 42, 74, 0.03);
}

.acc-btn:focus {
	outline: 3px solid rgba(245,197,66,.75);
	outline-offset: 3px;
}

/* Chevron */
.acc-icon {
	border-right: 3px solid #0b2a4a;
	border-bottom: 3px solid #0b2a4a;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
	transition: transform 160ms ease;
	opacity: .85;
}

.acc-btn[aria-expanded="true"] .acc-icon {
	transform: rotate(-135deg);
}

/* Panel */
.acc-panel {
	border-top: 3px solid #f5c542; /*Not sure if I want to keep this.maybe remove the border on title*/
}

.acc-content {
	padding: 1.25rem 1.25rem 1.35rem;
	color: rgba(11, 42, 74, 0.86);
	line-height: 1.75;
}

.acc-content p {
	margin: 0 0 1rem;
}

/* CTA row */
.acc-cta {
	margin-top: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}

.donate-btn {
	padding: .9rem 1.1rem;
	text-decoration: none;
	font-weight: 900;
	border-radius: 10px;
	border: 2px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.donate-btn.primary {
	background: var(--navy);
	color: var(--white);
	border-color: var(--goldBorder);
}

.donate-btn.ghost {
	background: transparent;
	color: var(--navy);
	border-color: rgba(11,42,74,.28);
}

/* Prevent sticky header covering anchors */
section[id] {
	scroll-margin-top: var(--header-h);
}

/* Nested full statement toggle */
.policy-details {
	margin-top: 1.1rem;
	background: rgba(11, 42, 74, 0.02);
	border: 1px solid var(--gold);
	border-radius: 14px;
	overflow: hidden;
}

.policy-summary-toggle {
	padding: .95rem 1rem;
	color: var(--navy);
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	list-style: none;
	cursor: pointer;
}

.policy-summary-toggle::-webkit-details-marker {
	display: none;
}

.policy-summary-toggle::after {
	border-right: 3px solid #0b2a4a;
	border-bottom: 3px solid #0b2a4a;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	transition: transform 160ms ease;
	content: "";
	opacity: .85;
}

.policy-details[open] .policy-summary-toggle::after {
	transform: rotate(-135deg);
}

.policy-full {
	padding: 0 1rem 1rem;
	color: rgba(11, 42, 74, 0.86);
	line-height: 1.75;
}

.policy-bullets {
	margin: 1rem 0 0;
	padding-left: 1.1rem;
}

.policy-bullets li {
	margin-bottom: .55rem;
	color: rgba(11, 42, 74, 0.86);
}