:root {
	--gop-navy: #172a45;
	--gop-red: #8f2f2f;
	--gop-red-deep: #742729;
	--gop-red-soft: #a84743;
	--gop-cream: #f6f1e8;
	--gop-steel: #4d5a66;
	--gop-gold: #c49a45;
	--gop-white: #ffffff;
	--gop-ink: #18202a;
	--gop-border: rgba(116, 39, 41, 0.16);
	--font-body: Inter, "Open Sans", "Source Sans Pro", Arial, sans-serif;
	--font-heading: Merriweather, "Libre Baskerville", Georgia, serif;
	--content-width: 1120px;
	--section-space: clamp(2rem, 5vw, 4rem);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--gop-white);
	color: var(--gop-ink);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	overflow-x: hidden;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
}

h1,
h2,
h3,
h4 {
	color: var(--gop-red-deep);
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 0.75rem;
}

h1 {
	font-size: clamp(2.25rem, 9vw, 4.75rem);
}

h2 {
	font-size: clamp(2.15rem, 6vw, 3.35rem);
}

h3 {
	font-size: 1.38rem;
}

p {
	margin: 0 0 1rem;
}

.screen-reader-text,
.skip-link:not(:focus) {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.skip-link:focus {
	background: var(--gop-gold);
	color: var(--gop-navy);
	font-weight: 700;
	left: 1rem;
	padding: 0.75rem 1rem;
	position: fixed;
	top: 1rem;
	z-index: 1000;
}

:focus-visible {
	outline: 3px solid var(--gop-gold);
	outline-offset: 2px;
}

.site-header {
	background: var(--gop-navy);
	color: var(--gop-white);
	position: sticky;
	top: 0;
	z-index: 100;
}

.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--content-width);
	padding: 0.9rem 1rem;
}

.site-header__brand-area {
	align-items: center;
	display: flex;
	flex: 1 1 auto;
	gap: 0.8rem;
	min-width: 0;
}

.site-branding {
	flex: 1 1 13rem;
	min-width: 0;
}

.custom-logo-link {
	display: inline-block;
	margin-bottom: 0.35rem;
	max-width: 180px;
}

.site-title {
	color: var(--gop-white);
	display: block;
	font-family: var(--font-heading);
	font-size: clamp(1.15rem, 4vw, 1.32rem);
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
}

.site-description {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.82rem;
	line-height: 1.3;
	margin: 0.25rem 0 0;
}

.site-header__mark {
	display: block;
	flex: 0 0 auto;
	height: 4.4rem;
	width: 5.35rem;
}

.site-header__mark img {
	height: 100%;
	object-fit: contain;
	object-position: center;
	width: 100%;
}

.menu-toggle {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 0.35rem;
	display: inline-flex;
	flex-direction: column;
	gap: 0.26rem;
	height: 2.75rem;
	justify-content: center;
	padding: 0;
	width: 2.75rem;
}

.menu-toggle__bar {
	background: var(--gop-white);
	border-radius: 999px;
	display: block;
	height: 2px;
	width: 1.25rem;
}

.primary-navigation {
	background: var(--gop-navy);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: none;
	left: 0;
	max-height: calc(100vh - var(--cgop-header-height, 6.25rem));
	max-height: calc(100dvh - var(--cgop-header-height, 6.25rem));
	overflow-y: auto;
	padding: 0.5rem 1rem 1rem;
	position: absolute;
	right: 0;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	top: 100%;
	touch-action: pan-y;
}

.primary-navigation.is-open {
	display: block;
}

.primary-menu,
.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	border-radius: 0.35rem;
	color: var(--gop-white);
	display: block;
	font-weight: 700;
	padding: 0.75rem;
	text-decoration: none;
}

.primary-menu a:hover,
.primary-menu a:focus-visible {
	background: rgba(255, 255, 255, 0.1);
}

.hero {
	background: var(--gop-red-deep);
	color: var(--gop-white);
	min-height: 48vh;
	position: relative;
}

.hero__image-link {
	display: block;
	inset: 0;
	position: absolute;
	z-index: 0;
}

.hero__image-link:focus-visible {
	outline-offset: -0.65rem;
	z-index: 2;
}

.hero__image {
	height: 100%;
	inset: 0;
	object-fit: cover;
	object-position: center center;
	opacity: 0.42;
	position: absolute;
	width: 100%;
}

.hero__overlay {
	align-items: center;
	background: linear-gradient(90deg, rgba(116, 39, 41, 0.96), rgba(143, 47, 47, 0.6));
	display: flex;
	min-height: 48vh;
	pointer-events: none;
	position: relative;
	z-index: 1;
}

.hero__content {
	margin: 0 auto;
	max-width: var(--content-width);
	padding: 2.5rem 1rem;
	pointer-events: auto;
	width: 100%;
}

.hero__picture-marker {
	margin-top: 1.5rem;
	max-width: 520px;
}

.hero h1,
.hero p {
	color: var(--gop-white);
	max-width: 760px;
}

.hero p {
	font-size: clamp(1.05rem, 3vw, 1.3rem);
}

.eyebrow {
	color: var(--gop-gold);
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.button {
	align-items: center;
	background: var(--gop-red);
	border: 2px solid var(--gop-red);
	border-radius: 0.35rem;
	color: var(--gop-white);
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 2.9rem;
	padding: 0.72rem 1.1rem;
	text-decoration: none;
}

.button:hover,
.button:focus-visible {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
}

.button--secondary {
	background: transparent;
	border-color: currentColor;
	color: inherit;
}

.button--secondary:hover,
.button--secondary:focus-visible {
	background: rgba(255, 255, 255, 0.15);
}

.button--light {
	background: var(--gop-white);
	border-color: var(--gop-white);
	color: var(--gop-red-deep);
}

.button--light:hover,
.button--light:focus-visible {
	background: var(--gop-cream);
	border-color: var(--gop-cream);
	color: var(--gop-red-deep);
}

.facebook-link-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.facebook-link-list li {
	margin: 0;
}

.facebook-link {
	align-items: center;
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 0.35rem;
	color: var(--gop-red-deep);
	display: inline-flex;
	font-size: 0.92rem;
	font-weight: 800;
	gap: 0.5rem;
	min-height: 2.75rem;
	padding: 0.58rem 0.78rem;
	text-decoration: none;
}

.facebook-link:hover,
.facebook-link:focus-visible {
	background: var(--gop-cream);
	border-color: var(--gop-gold);
	color: var(--gop-red-deep);
	text-decoration: none;
}

.facebook-link__icon {
	flex: 0 0 auto;
	height: 1.25rem;
	width: 1.25rem;
}

.facebook-link--light {
	background: var(--gop-white);
	border-color: rgba(255, 255, 255, 0.72);
	color: var(--gop-red-deep);
}

.facebook-link--footer {
	background: transparent;
	border-color: transparent;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.94rem;
	min-height: 0;
	padding: 0;
}

.facebook-link--footer:hover,
.facebook-link--footer:focus-visible {
	background: transparent;
	border-color: transparent;
	color: var(--gop-white);
}

.facebook-link--footer .facebook-link__icon {
	height: 1rem;
	width: 1rem;
}

.hero .button:not(.button--secondary),
.section--navy .button:not(.button--secondary):not(.button--light),
.page-cta .button:not(.button--secondary):not(.button--light) {
	background: var(--gop-white);
	border-color: var(--gop-white);
	color: var(--gop-red-deep);
}

.hero .button:not(.button--secondary):hover,
.hero .button:not(.button--secondary):focus-visible,
.section--navy .button:not(.button--secondary):not(.button--light):hover,
.section--navy .button:not(.button--secondary):not(.button--light):focus-visible,
.page-cta .button:not(.button--secondary):not(.button--light):hover,
.page-cta .button:not(.button--secondary):not(.button--light):focus-visible {
	background: var(--gop-cream);
	border-color: var(--gop-cream);
	color: var(--gop-red-deep);
}

.hero .button--secondary,
.section--navy .button--secondary,
.page-cta .button--secondary {
	border-color: rgba(255, 255, 255, 0.82);
	color: var(--gop-white);
}

.has-open-menu {
	overflow: hidden;
}

.section {
	padding: var(--section-space) 0;
}

.section--cream {
	background: var(--gop-cream);
}

.section--navy {
	background: var(--gop-red-deep);
	color: var(--gop-white);
}

.section--navy h2,
.section--navy .lead {
	color: var(--gop-white);
}

.section__inner,
.content-wrap,
.page-hero-title-bar__inner,
.page-hero__inner {
	margin: 0 auto;
	max-width: var(--content-width);
	padding: 0 1rem;
	width: 100%;
}

.section-heading {
	margin-bottom: 2rem;
	max-width: 680px;
}

.party-platform-section {
	border-top: 1px solid var(--gop-border);
}

.party-platform-section__heading {
	max-width: 760px;
}

.party-platform-section__actions {
	align-items: center;
	margin-bottom: 1.25rem;
}

.party-platform-section__viewer {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 4px;
	box-shadow: 0 1rem 2.5rem rgba(25, 40, 61, 0.08);
	min-height: 32rem;
	overflow: hidden;
}

.party-platform-section__viewer iframe {
	border: 0;
	display: block;
	height: min(76vh, 52rem);
	min-height: 32rem;
	width: 100%;
}

.party-platform-section__viewer object {
	display: block;
	height: min(76vh, 52rem);
	min-height: 32rem;
	width: 100%;
}

.lead {
	color: var(--gop-steel);
	font-size: 1.12rem;
}

.card-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

.card,
.empty-state,
.cta-panel {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 0.5rem;
	box-shadow: 0 1rem 2.5rem rgba(116, 39, 41, 0.08);
	overflow: hidden;
}

.card__media {
	background: var(--gop-cream);
	display: block;
	overflow: hidden;
}

.card__media img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
}

.picture-placeholder {
	align-items: center;
	background: var(--gop-cream);
	border: 2px solid var(--gop-red-deep);
	border-radius: 50%;
	color: var(--gop-red-deep);
	display: inline-flex;
	font-size: 0.7rem;
	font-weight: 800;
	height: 2rem;
	justify-content: center;
	text-decoration: none;
	width: 2rem;
}

.picture-placeholder__icon {
	line-height: 1;
	user-select: none;
}

.sample-card .card__media {
	aspect-ratio: 3 / 2;
	background: linear-gradient(135deg, rgba(116, 39, 41, 0.06), rgba(23, 42, 69, 0.04)), var(--gop-cream);
	border-bottom: 1px solid var(--gop-border);
}

.picture-slot-link {
	color: inherit;
	display: block;
	text-decoration: none;
}

.picture-slot-link img {
	display: block;
	width: 100%;
}

.featured-media .picture-slot-link img,
.spotlight-panel .picture-slot-link img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.spotlight-panel .picture-slot-link img {
	border-radius: 0.5rem;
	margin-top: 1.25rem;
}

.representative-placeholder {
	aspect-ratio: 4 / 5;
}

.person-card__media {
	aspect-ratio: 4 / 5;
	display: block;
}

.person-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	width: 100%;
}

.representative-placeholder {
	align-items: center;
	background:
		linear-gradient(150deg, rgba(116, 39, 41, 0.96), rgba(143, 47, 47, 0.82) 45%, rgba(23, 42, 69, 0.92)),
		var(--gop-red-deep);
	color: var(--gop-white);
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	justify-content: center;
	min-height: 100%;
	overflow: hidden;
	padding: 1.25rem;
	position: relative;
	text-align: center;
}

.representative-placeholder::before {
	background:
		linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.11) 0 8px, transparent 8px 18px);
	content: "";
	inset: 0;
	opacity: 0.48;
	position: absolute;
}

.representative-placeholder__seal,
.representative-placeholder__text {
	position: relative;
	z-index: 1;
}

.representative-placeholder__seal {
	align-items: center;
	background: rgba(255, 255, 255, 0.12);
	border: 2px solid rgba(255, 255, 255, 0.58);
	border-radius: 50%;
	display: inline-flex;
	height: 5rem;
	justify-content: center;
	width: 5rem;
}

.representative-placeholder__seal svg {
	fill: none;
	height: 3.8rem;
	stroke: rgba(255, 255, 255, 0.92);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3;
	width: 3.8rem;
}

.officer-placeholder__seal img {
	filter: drop-shadow(0 0.25rem 0.5rem rgba(24, 32, 42, 0.2));
	height: 4.25rem;
	width: 4.25rem;
}

.representative-placeholder__text {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.person-card__position {
	color: var(--gop-steel);
	font-weight: 700;
	line-height: 1.45;
}

.card-meta-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.5rem;
}

.card__body,
.empty-state,
.cta-panel {
	padding: 1.25rem;
}

.card__meta {
	color: var(--gop-red);
	font-size: 0.82rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.card-meta-row .card__meta {
	margin: 0;
}

.party-badge {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-radius: 999px;
	color: var(--gop-steel);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	padding: 0.3rem 0.55rem;
	text-transform: uppercase;
	white-space: nowrap;
}

.party-badge--republican {
	background: #9c2f2f;
	border-color: var(--gop-red-deep);
	box-shadow: none;
	color: #fff;
}

.party-badge--democratic {
	background:
		linear-gradient(103deg, transparent 0 26%, rgba(17, 14, 12, 0.88) 27%, transparent 29% 100%),
		linear-gradient(76deg, transparent 0 47%, rgba(230, 221, 196, 0.58) 48%, rgba(33, 24, 16, 0.62) 49%, transparent 51% 100%),
		linear-gradient(154deg, transparent 0 63%, rgba(16, 13, 12, 0.72) 64%, transparent 66% 100%),
		repeating-linear-gradient(8deg, rgba(255, 255, 255, 0.08) 0 0.06rem, transparent 0.07rem 0.22rem),
		radial-gradient(circle at 16% 28%, rgba(82, 58, 30, 0.86) 0 0.13rem, transparent 0.15rem),
		radial-gradient(circle at 44% 78%, rgba(22, 18, 15, 0.78) 0 0.11rem, transparent 0.13rem),
		radial-gradient(circle at 82% 36%, rgba(95, 68, 37, 0.82) 0 0.15rem, transparent 0.17rem),
		linear-gradient(135deg, #345f9a 0%, #173f76 48%, #0c2548 100%);
	border-color: #2b2118;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.08),
		inset 0 -0.48rem 0.85rem rgba(23, 16, 10, 0.58),
		0 0.08rem 0 rgba(36, 24, 16, 0.42);
	color: #eee2cc;
	filter: saturate(0.76) contrast(1.24);
	text-shadow:
		0.05rem 0.04rem 0 rgba(39, 24, 14, 0.9),
		-0.035rem -0.02rem 0 rgba(0, 0, 0, 0.38);
	transform: rotate(-1.5deg) skewX(-6deg);
}

.party-badge--independent,
.party-badge--nonpartisan {
	background: rgba(168, 127, 58, 0.12);
	border-color: rgba(168, 127, 58, 0.3);
	color: #6f4f1f;
}

.position-status-badge {
	background: rgba(28, 49, 80, 0.08);
	border: 1px solid rgba(28, 49, 80, 0.18);
	border-radius: 999px;
	color: var(--gop-navy);
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	padding: 0.3rem 0.55rem;
	text-transform: uppercase;
}

.position-status-badge--historical {
	background: rgba(168, 127, 58, 0.12);
	border-color: rgba(168, 127, 58, 0.35);
	color: #6f4f1f;
}

.representative-card .position-status-badge--historical {
	background: linear-gradient(135deg, #8a5a10, #b47d22);
	border-color: #8a5a10;
	border-radius: 4px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
	color: var(--gop-white);
	flex: 1 0 100%;
	font-size: 0.95rem;
	justify-content: center;
	padding: 0.6rem 0.8rem;
	text-align: center;
	width: 100%;
}

.card__title a {
	color: var(--gop-red-deep);
	text-decoration: none;
}

.card__title a:hover,
.card__title a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
	color: var(--gop-red);
}

.gallery-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.gallery-card .card__media img {
	display: block;
}

.gallery-card .card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 13.25rem;
}

.gallery-card .card__meta,
.gallery-card .card__title,
.gallery-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
}

.gallery-card .card__meta {
	-webkit-line-clamp: 2;
}

.gallery-card .card__title {
	-webkit-line-clamp: 2;
}

.gallery-card__excerpt {
	color: var(--gop-steel);
	-webkit-line-clamp: 3;
}

.gallery-card .text-link {
	margin-top: auto;
}

.picture-topic-content {
	align-items: start;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	max-width: 100%;
	width: 100%;
}

.picture-topic-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0 0 1.5rem;
}

.content-wrap > .picture-topic-content {
	max-width: 100%;
	width: 100%;
}

.picture-topic-content > * {
	grid-column: 1 / -1;
	max-width: 760px;
}

.picture-topic-content > .wp-block-image,
.picture-topic-content > figure.wp-block-image,
.picture-topic-content > p:has(> img:only-child),
.picture-topic-content > .wp-block-gallery,
.picture-topic-content > .gallery,
.picture-topic-content > .blocks-gallery-grid {
	grid-column: auto;
	margin: 0;
	max-width: none;
	min-width: 0;
	width: 100%;
}

.picture-topic-content > .wp-block-gallery,
.picture-topic-content > .gallery,
.picture-topic-content > .blocks-gallery-grid {
	grid-column: 1 / -1;
}

.picture-topic-content > .wp-block-image img,
.picture-topic-content > figure.wp-block-image img,
.picture-topic-content > p:has(> img:only-child) img,
.picture-topic-content .gallery-icon img,
.picture-topic-content .blocks-gallery-item img {
	aspect-ratio: 4 / 3;
	background: var(--gop-cream);
	border-radius: 0.35rem;
	display: block;
	height: auto;
	max-height: 28rem;
	object-fit: contain;
	width: 100%;
}

.picture-topic-content .wp-block-gallery {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

.picture-topic-content .gallery,
.picture-topic-content .blocks-gallery-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	list-style: none;
	padding: 0;
}

.picture-topic-content .gallery-item,
.picture-topic-content .blocks-gallery-item {
	float: none;
	margin: 0;
	max-width: none;
	width: 100%;
}

.picture-topic-content .gallery-icon,
.picture-topic-content .blocks-gallery-item figure {
	align-items: center;
	background: var(--gop-cream);
	border-radius: 0.35rem;
	display: flex;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.picture-topic-content .wp-block-gallery.has-nested-images figure.wp-block-image {
	margin: 0;
	max-width: none !important;
	width: 100%;
}

.picture-topic-content .wp-block-gallery.has-nested-images figure.wp-block-image img {
	aspect-ratio: 4 / 3;
	background: var(--gop-cream);
	border-radius: 0.35rem;
	height: auto;
	max-height: 28rem;
	object-fit: contain;
	width: 100%;
}

.picture-topic-content__lightbox-trigger {
	cursor: pointer;
}

.picture-lightbox-open {
	overflow: hidden;
}

.picture-lightbox[hidden] {
	display: none;
}

.picture-lightbox {
	align-items: center;
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	padding: clamp(0.75rem, 2vw, 1.5rem);
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9999;
}

.picture-lightbox__backdrop {
	background: rgba(10, 24, 44, 0.88);
	border: 0;
	bottom: 0;
	cursor: zoom-out;
	left: 0;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.picture-lightbox__panel {
	align-items: center;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-template-rows: auto minmax(0, 1fr) auto;
	max-height: 94vh;
	max-width: min(1500px, 96vw);
	position: relative;
	width: 100%;
	z-index: 1;
}

.picture-lightbox__close {
	background: var(--gop-red-deep);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 0.35rem;
	color: var(--gop-white);
	cursor: pointer;
	font-weight: 800;
	grid-column: 1 / -1;
	justify-self: end;
	margin: 0 0.25rem 0.75rem 0;
	padding: 0.55rem 0.85rem;
}

.picture-lightbox__image {
	background: var(--gop-cream);
	border-radius: 0.35rem;
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
	display: block;
	grid-column: 2;
	grid-row: 2;
	height: auto;
	justify-self: center;
	max-height: 82vh;
	max-width: min(1200px, 100%);
	object-fit: contain;
	width: auto;
}

.picture-lightbox__arrow {
	align-items: center;
	background: var(--gop-white);
	border: 1px solid rgba(17, 40, 74, 0.25);
	border-radius: 999px;
	color: var(--gop-red-deep);
	cursor: pointer;
	display: inline-flex;
	font-size: 2.5rem;
	font-weight: 800;
	height: 3rem;
	justify-content: center;
	line-height: 0;
	padding: 0 0 0.18rem;
	width: 3rem;
	z-index: 2;
}

.picture-lightbox__arrow--prev {
	grid-column: 1;
	grid-row: 2;
	margin-right: 0.75rem;
}

.picture-lightbox__arrow--next {
	grid-column: 3;
	grid-row: 2;
	margin-left: 0.75rem;
}

.picture-lightbox__counter {
	color: var(--gop-white);
	font-weight: 800;
	grid-column: 1 / -1;
	margin: 0.75rem 0 0;
	text-align: center;
}

.attachment-picture__figure {
	margin: 0;
}

.attachment-picture__image {
	background: var(--gop-cream);
	border-radius: 0.35rem;
	display: block;
	height: auto;
	margin: 0 auto;
	max-height: 75vh;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}

.attachment-picture__figure figcaption {
	color: var(--gop-steel);
	font-size: 0.95rem;
	margin-top: 0.75rem;
	text-align: center;
}

.text-link {
	color: var(--gop-red-deep);
	font-weight: 800;
	text-decoration-color: var(--gop-gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.2em;
}

.event-card {
	display: grid;
	grid-template-columns: 5.5rem 1fr;
}

.event-card .card__media {
	grid-column: 1 / -1;
}

.event-card__date {
	align-items: center;
	background: var(--gop-red-deep);
	color: var(--gop-white);
	display: flex;
	font-family: var(--font-heading);
	font-size: 1.4rem;
	font-weight: 700;
	justify-content: center;
	padding: 1rem;
	text-align: center;
}

.event-volunteer-badge {
	background: var(--gop-red-deep);
	border-radius: 0.25rem;
	color: var(--gop-white);
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	grid-column: 1 / -1;
	letter-spacing: 0.07em;
	padding: 0.3rem 0.6rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.event-volunteer-badge:visited {
	color: var(--gop-white);
}

.event-volunteer-badge:hover,
.event-volunteer-badge:focus-visible {
	background: var(--gop-red);
	color: var(--gop-white);
	text-decoration: none;
}

.tribe-events-calendar-list__event-date-tag .event-volunteer-badge--tribe-date {
	background: transparent;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 0;
	color: var(--gop-white);
	font-family: var(--font-body);
	font-size: 0.56rem;
	letter-spacing: 0.04em;
	line-height: 1.2;
	margin: 0.55rem auto 0;
	max-width: 5rem;
	overflow-wrap: anywhere;
	padding: 0.45rem 0 0;
	white-space: normal;
	word-break: normal;
}

.tribe-events-calendar-list__event-date-tag .event-volunteer-badge--tribe-date:visited {
	color: var(--gop-white);
}

.tribe-events-calendar-list__event-date-tag .event-volunteer-badge--tribe-date:hover,
.tribe-events-calendar-list__event-date-tag .event-volunteer-badge--tribe-date:focus-visible {
	background: transparent;
	color: var(--gop-gold);
	text-decoration: none;
}

.event-volunteer-single {
	align-items: center;
	background: var(--gop-white);
	border: 1px solid rgba(116, 39, 41, 0.18);
	border-radius: 0.35rem;
	box-shadow: 0 12px 28px rgba(23, 42, 69, 0.08);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin: 1.5rem 0;
	padding: 1rem 1.15rem;
}

.event-volunteer-single p {
	color: var(--gop-ink);
	font-weight: 700;
	margin: 0;
}

.event-volunteer-single .event-volunteer-single__button,
.tribe-events .event-volunteer-single .event-volunteer-single__button,
.tribe-common .event-volunteer-single .event-volunteer-single__button {
	background: var(--gop-red);
	border: 2px solid var(--gop-red);
	border-radius: 0.35rem;
	color: var(--gop-white);
	flex-shrink: 0;
	font-weight: 800;
	min-height: 2.9rem;
	padding: 0.72rem 1.1rem;
	text-decoration: none;
}

.event-volunteer-single .event-volunteer-single__button:visited,
.tribe-events .event-volunteer-single .event-volunteer-single__button:visited,
.tribe-common .event-volunteer-single .event-volunteer-single__button:visited {
	color: var(--gop-white);
}

.event-volunteer-single .event-volunteer-single__button:hover,
.event-volunteer-single .event-volunteer-single__button:focus-visible,
.tribe-events .event-volunteer-single .event-volunteer-single__button:hover,
.tribe-events .event-volunteer-single .event-volunteer-single__button:focus-visible,
.tribe-common .event-volunteer-single .event-volunteer-single__button:hover,
.tribe-common .event-volunteer-single .event-volunteer-single__button:focus-visible {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
	color: var(--gop-white);
	text-decoration: none;
}

@media (max-width: 640px) {
	.event-volunteer-single {
		align-items: flex-start;
		flex-direction: column;
	}
}

.split-layout {
	display: grid;
	gap: 2rem;
}

.page-hero {
	background: var(--gop-cream);
	overflow: hidden;
	padding: clamp(3rem, 8vw, 5rem) 0;
	position: relative;
}

.page-hero-title-bar {
	background:
		linear-gradient(90deg, rgba(143, 47, 47, 0.34), transparent 34% 72%, rgba(196, 154, 69, 0.24)),
		linear-gradient(135deg, #10233d 0%, var(--gop-navy) 58%, #203a5f 100%);
	box-shadow: inset 0 -0.18rem 0 var(--gop-gold);
	overflow: hidden;
	padding: 0.45rem 0;
	position: relative;
}

.page-hero-title-bar--with-image {
	background:
		linear-gradient(90deg, rgba(16, 35, 61, 0.9), rgba(116, 39, 41, 0.62)),
		var(--page-title-background-image);
	background-position: center;
	background-size: cover;
}

.page-hero-title-bar h1 {
	color: var(--gop-white);
	font-size: clamp(1.35rem, 4vw, 2.35rem);
	line-height: 1.1;
	margin: 0;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.32);
}

.page-hero-title-bar--text-left .page-hero-title-bar__inner {
	text-align: left;
}

.page-hero-title-bar--text-center .page-hero-title-bar__inner {
	text-align: center;
}

.page-hero-title-bar--text-right .page-hero-title-bar__inner {
	text-align: right;
}

.page-hero--with-image {
	padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.page-hero__image {
	height: 100%;
	inset: 0;
	object-fit: cover;
	object-position: center center;
	opacity: 0.64;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.page-hero--with-image::after {
	background: linear-gradient(90deg, rgba(246, 241, 232, 0.68), rgba(246, 241, 232, 0.22));
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.page-hero--with-image .page-hero__inner {
	position: relative;
	z-index: 2;
}

.page-hero--with-placeholder .page-hero__inner {
	position: relative;
	z-index: 1;
}

.page-hero__placeholder {
	position: absolute;
	right: clamp(1rem, 4vw, 2.5rem);
	top: clamp(1rem, 4vw, 1.75rem);
	z-index: 2;
}

.page-hero__text {
	color: var(--gop-steel);
	font-size: 1.05rem;
	margin-top: 0.75rem;
	max-width: 640px;
}

.page-hero__content {
	max-width: 640px;
}

.page-hero--gallery-intro .page-hero__content {
	display: grid;
	gap: 0.85rem;
	justify-items: center;
	margin: 0 auto;
	text-align: center;
	width: min(100%, 34rem);
}

.picture-topic-hero-cover {
	margin: 0;
	width: min(100%, 22rem);
}

.picture-topic-hero-cover__image {
	aspect-ratio: 4 / 3;
	border-radius: 0.5rem;
	box-shadow: 0 0.7rem 1.6rem rgba(0, 0, 0, 0.18);
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.picture-topic-hero-meta {
	color: var(--gop-steel);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.45;
	margin: 0;
}

.picture-topic-hero-description {
	color: var(--gop-steel);
	font-size: 1.03rem;
	line-height: 1.65;
}

.picture-topic-hero-description > :last-child {
	margin-bottom: 0;
}

.page-hero--text-left .page-hero__inner {
	text-align: left;
}

.page-hero--text-left .page-hero__text {
	margin-left: 0;
	margin-right: auto;
}

.page-hero--text-center .page-hero__inner {
	text-align: center;
}

.page-hero--text-center .page-hero__text {
	margin-left: auto;
	margin-right: auto;
}

.page-hero--text-right .page-hero__inner {
	text-align: right;
}

.page-hero--text-right .page-hero__text {
	margin-left: auto;
	margin-right: 0;
}

.content-wrap {
	padding-bottom: var(--section-space);
	padding-top: 2.5rem;
}

.content-wrap--intro {
	margin-bottom: 2rem;
	padding-bottom: 0;
	padding-top: 0;
}

.content-wrap--page {
	padding-bottom: 2.5rem;
}

.content-wrap--before-action-band {
	padding-bottom: 0;
}

.content-wrap--affiliate-page {
	padding-bottom: 0;
}

.content-wrap > * {
	max-width: 760px;
	min-width: 0;
}

.content-wrap figure,
.content-wrap img,
.content-wrap .wp-caption,
.content-wrap .wp-block-image,
.content-wrap .wp-block-gallery,
.content-wrap .wp-block-media-text,
.content-wrap .aligncenter,
.content-wrap .alignleft,
.content-wrap .alignright,
.content-wrap .alignwide,
.content-wrap .alignfull,
.profile-content figure,
.profile-content img,
.profile-extra-info__content figure,
.profile-extra-info__content img {
	height: auto;
	max-width: 100%;
}

.content-wrap .alignwide,
.content-wrap .alignfull {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
}

.content-wrap iframe,
.content-wrap embed,
.content-wrap object,
.profile-content iframe,
.profile-content embed,
.profile-content object {
	max-width: 100%;
}

.sample-page-content {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-radius: 0.5rem;
	padding: 1.25rem;
}

.sample-page-content ul {
	margin-bottom: 0;
	padding-left: 1.25rem;
}

.affiliate-section {
	background: var(--gop-cream);
}

.affiliate-section__inner {
	align-items: center;
	display: grid;
	gap: 2rem;
}

.affiliate-section__copy {
	max-width: 680px;
}

.affiliate-list {
	margin: 1.25rem 0;
	padding-left: 1.2rem;
}

.affiliate-list li + li {
	margin-top: 0.45rem;
}

.affiliate-section__media {
	align-items: center;
	background: transparent;
	border-radius: 0.5rem;
	display: flex;
	justify-content: center;
	min-height: clamp(16rem, 34vw, 24rem);
	overflow: hidden;
	padding: clamp(0.75rem, 2vw, 1.25rem);
}

.affiliate-section__picture {
	align-items: center;
	align-self: stretch;
	display: flex;
	justify-content: center;
	min-height: clamp(14rem, 30vw, 21.5rem);
	width: 100%;
}

.affiliate-section__picture img {
	display: block;
	height: auto;
	max-height: clamp(14rem, 30vw, 21.5rem);
	max-width: 100%;
	object-fit: contain;
	opacity: 0.92;
	width: auto;
}

@media (min-width: 720px) {
	.affiliate-section__inner {
		grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
	}
}

.featured-media {
	margin: 0 0 2rem;
	max-width: 900px;
}

.content-wrap--affiliate-page > .featured-media--affiliate-wide {
	margin-bottom: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: none;
	width: 100vw;
}

.content-wrap--affiliate-page > .featured-media--affiliate-wide:first-child {
	margin-top: -2.5rem;
}

.featured-media--affiliate-wide .picture-slot-link img {
	aspect-ratio: 16 / 5;
	border-radius: 0;
	height: clamp(14rem, 32vw, 26rem);
	max-height: none;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.featured-media img {
	border-radius: 0.5rem;
}

.profile-layout {
	display: grid;
	gap: 2rem;
	margin: 0 auto;
	max-width: var(--content-width);
	padding: var(--section-space) 1rem;
}

.profile-photo {
	margin: 0;
}

.profile-photo img {
	aspect-ratio: 4 / 5;
	border-radius: 0.5rem;
	object-fit: cover;
	width: 100%;
}

.profile-content {
	max-width: 760px;
}

.profile-wide-section {
	margin: 0 auto;
	max-width: var(--content-width);
	padding: 0 1rem var(--section-space);
}

.profile-wide-section:empty {
	display: none;
}

.profile-wide-section .official-profile-panel {
	margin-top: 0;
}

.profile-meta {
	color: var(--gop-red);
	font-weight: 800;
	text-transform: uppercase;
}

.profile-section {
	border-top: 1px solid var(--gop-border);
	margin-top: 2rem;
	padding-top: 2rem;
}

.profile-detail-list {
	display: grid;
	gap: 0.85rem;
	margin: 0;
}

.profile-detail-list div {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-radius: 0.35rem;
	padding: 0.85rem;
}

.profile-detail-list dt {
	color: var(--gop-red);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.profile-detail-list dd {
	margin: 0.2rem 0 0;
}

.official-profile-panel {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-radius: 0.5rem;
	padding: 1.25rem;
}

.official-profile-panel h2 {
	font-size: clamp(1.55rem, 4vw, 2.1rem);
}

.official-profile-panel__header p:last-child {
	max-width: 640px;
}

.official-profile-panel__embed {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 0.35rem;
	margin: 1.25rem 0 0.75rem;
	overflow: hidden;
}

.official-profile-panel__embed iframe {
	border: 0;
	display: block;
	min-height: 34rem;
	width: 100%;
}

.official-profile-panel__note {
	color: var(--gop-steel);
	font-size: 0.92rem;
	margin: 0 0 1rem;
}

.official-profile-panel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.profile-extra-info__content > *:last-child {
	margin-bottom: 0;
}

.profile-extra-info__content a {
	color: var(--gop-red-deep);
	font-weight: 800;
}

.profile-extra-info__content a:hover,
.profile-extra-info__content a:focus-visible {
	color: var(--gop-red-soft);
}

.contact-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.contact-list a {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-radius: 0.35rem;
	color: var(--gop-red-deep);
	font-weight: 800;
	padding: 0.65rem 0.85rem;
	text-decoration: none;
}

.contact-list a:hover,
.contact-list a:focus-visible {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
	color: var(--gop-white);
}

.contact-list .facebook-link {
	display: inline-flex;
	gap: 0.48rem;
}

.contact-list .facebook-link:hover,
.contact-list .facebook-link:focus-visible {
	text-decoration: none;
}

/* ── Leadership Service Meta ── */
.leadership-service-meta {
	color: var(--gop-steel);
	font-size: 0.75rem;
	margin: 0.35rem 0 0;
}

/* ── Leadership Status Toggle ── */
.leadership-status-toggle {
	display: flex;
	gap: 0;
	margin-bottom: 1rem;
}

.leadership-status-toggle__btn {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	color: var(--gop-steel);
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.5rem 1.1rem;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.leadership-status-toggle__btn:first-child {
	border-radius: 4px 0 0 4px;
}

.leadership-status-toggle__btn:last-child {
	border-left: 0;
	border-radius: 0 4px 4px 0;
}

.leadership-status-toggle__btn.is-active,
.leadership-status-toggle__btn[aria-pressed="true"] {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
	color: var(--gop-white);
}

.leadership-status-toggle__btn:hover:not(.is-active):not([aria-pressed="true"]) {
	background: var(--gop-cream);
	color: var(--gop-charcoal);
}

.representative-rollup-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.representative-visibility-toggle {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 1rem;
}

.representative-visibility-toggle label {
	align-items: center;
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 999px;
	color: var(--gop-red-deep);
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	gap: 0.5rem;
	padding: 0.55rem 0.85rem;
}

.representative-visibility-toggle input {
	accent-color: var(--gop-red-deep);
	height: 1rem;
	width: 1rem;
}

/* Democratic card visibility is handled per-seat by JS in the carousel model. */
.representatives-directory:not(.representatives-directory--show-democrats) .card-grid > .representative-card[data-representative-party="democratic"] {
	display: none;
}

.representatives-directory:not(.representatives-directory--show-democrats) [data-representative-seat-card][data-representative-party="democratic"],
.representatives-directory:not(.representatives-directory--show-democrats) [data-representative-seat-card][data-representative-party="democrat"],
.representatives-directory:not(.representatives-directory--show-democrats) [data-representative-seat-card][data-representative-party="democratic_party"],
.representatives-directory:not(.representatives-directory--show-democrats) [data-representative-seat-card][data-representative-party="dem"] {
	display: none;
}

.representative-rollup-nav a {
	align-items: center;
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-radius: 0.35rem;
	color: var(--gop-red-deep);
	display: inline-flex;
	font-weight: 800;
	gap: 0.5rem;
	padding: 0.65rem 0.85rem;
	text-decoration: none;
}

.representative-rollup-nav span {
	background: var(--gop-white);
	border-radius: 999px;
	color: var(--gop-steel);
	font-size: 0.82rem;
	min-width: 1.5rem;
	padding: 0.05rem 0.45rem;
	text-align: center;
}

.representative-rollup-nav a:hover,
.representative-rollup-nav a:focus-visible {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
	color: var(--gop-white);
}

.representative-rollup {
	display: grid;
	gap: 3rem;
}

.representative-group {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 0.5rem;
	overflow: hidden;
	scroll-margin-top: 8rem;
}

.representative-group + .representative-group {
	margin-top: 0;
}

.representative-group__header {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	margin-bottom: 0;
	max-width: none;
	padding: 1rem 1.25rem;
}

.representative-group__header::-webkit-details-marker {
	display: none;
}

.representative-group__header::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	flex: 0 0 auto;
	height: 0.65rem;
	margin-left: 1rem;
	transform: rotate(45deg);
	transition: transform 0.15s ease;
	width: 0.65rem;
}

.representative-group[open] .representative-group__header::after {
	transform: rotate(225deg);
}

.representative-group__header:hover,
.representative-group__header:focus-visible {
	background: var(--gop-cream);
	color: var(--gop-red-deep);
}

.representative-group__header .eyebrow,
.representative-group__header h2 {
	margin: 0;
}

.representative-group__content {
	border-top: 1px solid var(--gop-border);
	padding: 1.25rem;
}

.representative-group__meta {
	color: var(--gop-steel);
	font-weight: 700;
}

.representative-subgroups {
	display: grid;
	gap: 0.85rem;
}

.representative-subgroup {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 0.5rem;
	overflow: hidden;
}

.representative-subgroup summary {
	align-items: center;
	color: var(--gop-navy);
	cursor: pointer;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	list-style: none;
	padding: 1rem 1.2rem;
	position: relative;
}

.representative-subgroup summary::-webkit-details-marker {
	display: none;
}

.representative-subgroup summary::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	flex: 0 0 auto;
	height: 0.55rem;
	transform: rotate(45deg);
	transition: transform 160ms ease;
	width: 0.55rem;
}

.representative-subgroup[open] summary::after {
	transform: rotate(225deg);
}

.representative-subgroup summary:hover,
.representative-subgroup summary:focus-visible {
	background: var(--gop-cream);
	color: var(--gop-red-deep);
}

.representative-subgroup__title {
	font-family: var(--font-heading);
	font-size: 1.18rem;
	font-weight: 800;
}

.representative-subgroup__count {
	background: var(--gop-cream);
	border-radius: 999px;
	color: var(--gop-steel);
	font-size: 0.85rem;
	font-weight: 800;
	margin-left: auto;
	padding: 0.15rem 0.6rem;
	white-space: nowrap;
}

.representative-subgroup__content {
	border-top: 1px solid var(--gop-border);
	padding: 1rem;
}

@media (max-width: 560px) {
	.representative-subgroup summary {
		align-items: flex-start;
		flex-direction: column;
		padding-right: 2.6rem;
	}

	.representative-subgroup summary::after {
		position: absolute;
		right: 1.2rem;
		top: 1.25rem;
	}

	.representative-subgroup__count {
		margin-left: 0;
	}
}

/* ── Representative Directory Controls ── */
.representative-directory-controls {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}

.representative-history-reset {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 4px;
	color: var(--gop-steel);
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.5rem 1.1rem;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.representative-history-reset:hover {
	background: var(--gop-cream);
	color: var(--gop-charcoal);
}


.navigation.pagination {
	margin-top: 2rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.page-numbers {
	border: 1px solid var(--gop-border);
	border-radius: 0.35rem;
	padding: 0.45rem 0.75rem;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--gop-red-deep);
	color: var(--gop-white);
}

.site-footer {
	background: #2a1216;
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__inner {
	display: grid;
	gap: 1.1rem;
	margin: 0 auto;
	max-width: var(--content-width);
	padding: 1.5rem 1rem;
}

.site-footer__title {
	color: var(--gop-white);
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.site-footer a:not(.button),
.site-footer a:not(.button):visited {
	color: rgba(255, 255, 255, 0.86);
	text-decoration: none;
}

.site-footer a:not(.button):hover,
.site-footer a:not(.button):focus,
.site-footer a:not(.button):focus-visible {
	color: var(--gop-white);
	text-decoration: underline;
	text-decoration-color: var(--gop-gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.2em;
}

.footer-menu {
	display: grid;
	gap: 0.45rem;
}

.footer-menu a {
	display: inline-flex;
	font-weight: 700;
	text-decoration: none;
	width: fit-content;
}

.footer-menu a:hover,
.footer-menu a:focus {
	text-decoration: underline;
	text-decoration-color: var(--gop-gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.2em;
}

.site-footer__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.site-footer__social {
	margin-top: 0;
}

.site-footer__social-title,
.page-cta__social-label {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	margin: 0;
	text-transform: uppercase;
}

.site-footer__social .facebook-link-list {
	flex-direction: column;
	gap: 0.45rem;
	margin-top: 0;
}

.page-cta__social {
	margin-top: 1rem;
}

.page-cta__social .facebook-link-list {
	margin-top: 0.65rem;
}

.site-footer .facebook-link:hover,
.site-footer .facebook-link:focus-visible {
	text-decoration: none;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin: 0 auto;
	max-width: var(--content-width);
	padding: 0.65rem 1rem;
}

.site-footer__bottom p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.85rem;
	margin: 0;
}

/* ── Action Band ── */

.action-band {
	background:
		linear-gradient(90deg, rgba(143, 47, 47, 0.58), transparent 26% 74%, rgba(196, 154, 69, 0.42)),
		linear-gradient(135deg, #10233d 0%, var(--gop-navy) 48%, #203a5f 100%);
	background-position: center;
	background-size: cover;
	color: var(--gop-white);
	overflow: hidden;
	padding: 0.65rem 0;
	position: relative;
}

.action-band--with-image {
	background:
		linear-gradient(90deg, rgba(16, 35, 61, 0.82), rgba(143, 47, 47, 0.54)),
		var(--action-band-background-image);
	background-position: center;
	background-size: cover;
}

.action-band--default-svg {
	background: var(--action-band-background-image);
	background-position: center;
	background-size: cover;
}

.action-band::before {
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='96'%20height='32'%20viewBox='0%200%2096%2032'%3E%3Cpath%20fill='%23ffffff'%20fill-opacity='.34'%20d='M12%203l2.2%205.5%205.8.4-4.5%203.7%201.4%205.7-4.9-3.1-4.9%203.1%201.4-5.7L4%208.9l5.8-.4L12%203zm60%205l1.4%203.5%203.7.3-2.9%202.3.9%203.6-3.1-2-3.1%202%20.9-3.6-2.9-2.3%203.7-.3L72%208zM42%2017l1.3%203.2%203.4.2-2.6%202.2.8%203.3-2.9-1.8-2.9%201.8.8-3.3-2.6-2.2%203.4-.2L42%2017z'/%3E%3C/svg%3E");
	content: "";
	inset: 0;
	opacity: 0.72;
	pointer-events: none;
	position: absolute;
}

.action-band--with-image::before {
	opacity: 0.34;
}

.action-band--default-svg::before,
.action-band--default-svg::after {
	display: none;
}

.action-band::after {
	background: linear-gradient(90deg, var(--gop-red-deep), var(--gop-gold), var(--gop-white), var(--gop-gold), var(--gop-red-deep));
	bottom: 0;
	content: "";
	height: 0.18rem;
	left: 0;
	position: absolute;
	right: 0;
}

.action-band__inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1.25rem;
	justify-content: space-between;
	margin: 0 auto;
	max-width: var(--content-width);
	padding: 0 1rem;
	position: relative;
	z-index: 1;
}

.action-band__picture-marker {
	position: absolute;
	right: clamp(0.75rem, 3vw, 1.4rem);
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}

.action-band__text {
	color: var(--gop-white);
	font-size: 1.2rem;
	font-weight: 800;
	margin: 0;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.action-band__buttons {
	display: flex;
	flex-shrink: 0;
	gap: 0.55rem;
}

.action-band .button {
	font-size: 1rem;
	min-height: 2.4rem;
	padding: 0.48rem 0.9rem;
}

.action-band .button:not(.button--secondary) {
	background: var(--gop-white);
	border-color: var(--gop-white);
	box-shadow: 0 0 0 0.16rem rgba(196, 154, 69, 0.35);
	color: var(--gop-red-deep);
}

.action-band .button:not(.button--secondary):hover,
.action-band .button:not(.button--secondary):focus-visible {
	background: var(--gop-cream);
	border-color: var(--gop-gold);
	color: var(--gop-red-deep);
}

.action-band .button--secondary {
	background: rgba(143, 47, 47, 0.92);
	border-color: rgba(255, 255, 255, 0.78);
	color: var(--gop-white);
	box-shadow: 0 0 0 0.16rem rgba(255, 255, 255, 0.12);
}

/* ── Contact Form ── */

.contact-form-wrap {
	margin: 2.5rem auto 3rem;
	max-width: 820px;
	padding: 0 1rem;
}

.contact-direct {
	background: #f8f0dc;
	border: 1px solid rgba(116, 39, 41, 0.18);
	border-radius: 0.25rem;
	box-shadow: 0 0.45rem 1.25rem rgba(23, 42, 69, 0.08);
	color: var(--gop-red-deep);
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	justify-content: center;
	margin: 0 auto 1rem;
	padding: 0.75rem 1rem;
}

.contact-direct p {
	margin: 0;
}

.contact-direct a {
	font-family: var(--font-heading);
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

.contact-form {
	background: var(--gop-white);
	border: 1px solid rgba(23, 42, 69, 0.12);
	border-top: 0.35rem solid var(--gop-red-deep);
	border-radius: 0.25rem;
	box-shadow: 0 1rem 2.5rem rgba(23, 42, 69, 0.1);
	color: var(--gop-ink);
	padding: clamp(1.5rem, 4vw, 2.75rem);
}

.contact-form__success {
	background: #f1faf5;
	border: 1px solid rgba(45, 140, 90, 0.55);
	border-radius: 0.25rem;
	box-shadow: 0 0.45rem 1.25rem rgba(23, 42, 69, 0.08);
	color: #1a5c38;
	font-family: var(--font-heading);
	padding: 1rem 1.25rem;
}

.contact-form__error {
	background: #fff3f1;
	border: 1px solid rgba(201, 64, 64, 0.62);
	border-radius: 0.25rem;
	box-shadow: 0 0.45rem 1.25rem rgba(23, 42, 69, 0.08);
	color: #8a1c1c;
	margin-bottom: 1.25rem;
	padding: 1rem 1.25rem;
}

.contact-form__hp {
	left: -9999px;
	position: absolute;
}

.contact-form__row {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
}

.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.contact-form__label {
	color: var(--gop-navy);
	font-family: var(--font-heading);
	font-size: 0.92rem;
	font-weight: 700;
	text-transform: uppercase;
}

.contact-form__required {
	color: var(--gop-red-deep);
}

.contact-form__input {
	background: #fbfcff;
	border: 1px solid rgba(23, 42, 69, 0.18);
	border-radius: 0.18rem;
	box-shadow: inset 0 1px 2px rgba(23, 42, 69, 0.04);
	color: var(--gop-ink);
	font-family: var(--font-body);
	font-size: 1rem;
	outline-offset: 2px;
	padding: 0.7rem 0.8rem;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
	width: 100%;
}

.contact-form__input:focus {
	background: var(--gop-white);
	border-color: var(--gop-navy);
	box-shadow:
		inset 0 1px 2px rgba(23, 42, 69, 0.04),
		0 0 0 3px rgba(23, 42, 69, 0.12);
	outline: 0;
}

.contact-form__textarea {
	line-height: 1.7;
	min-height: 11rem;
	resize: vertical;
}

.contact-form__footer {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	margin-top: 0.5rem;
}

.contact-form__note {
	color: rgba(23, 42, 69, 0.72);
	font-family: var(--font-heading);
	font-size: 0.85rem;
	margin: 0;
}

.contact-form .button {
	box-shadow: 0 0.35rem 0.8rem rgba(116, 39, 41, 0.2);
}

@media (max-width: 600px) {
	.contact-form__row {
		grid-template-columns: 1fr;
	}

	.contact-form {
		padding: 1.35rem;
	}
}

/* ── Volunteer Forms ── */

.volunteer-forms-wrap {
	margin: 2.5rem auto 0;
	max-width: 820px;
	padding: 0 1rem;
}

.volunteer-form-panel {
	border-top: 2px solid var(--gop-red-deep);
	margin-bottom: 3rem;
	padding-top: 2rem;
}

.volunteer-form-panel__heading {
	color: var(--gop-red-deep);
	font-size: clamp(1.85rem, 4vw, 2.45rem);
	margin-bottom: 0.65rem;
}

.volunteer-form-panel__intro {
	color: rgba(43, 33, 24, 0.82);
	margin-bottom: 1.5rem;
}

.volunteer-form__notice {
	border-radius: 4px;
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
}

.volunteer-form__notice--success {
	background: #f7f0d9;
	border: 1px solid rgba(45, 140, 90, 0.55);
	color: #1a4a2a;
}

.volunteer-form__notice--error {
	background: #f8ead8;
	border: 1px solid rgba(201, 64, 64, 0.62);
	color: #6b1a1a;
}

.volunteer-form__notice--info {
	background: #f3f4f8;
	border: 1px solid rgba(60, 80, 140, 0.28);
	color: rgba(43, 33, 24, 0.82);
}

.volunteer-form__notice p {
	margin: 0;
}

.volunteer-form__hp {
	left: -9999px;
	position: absolute;
}

.volunteer-form__row {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 1rem;
}

.volunteer-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-bottom: 1rem;
}

.volunteer-form__fieldset {
	border: none;
	margin: 0 0 1rem;
	padding: 0;
}

.volunteer-form__label {
	color: var(--gop-red-deep);
	font-family: var(--font-heading);
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.volunteer-form__required {
	color: var(--gop-red-deep);
}

.volunteer-form__input {
	background: rgba(255, 251, 240, 0.72);
	border: 1px solid rgba(116, 39, 41, 0.28);
	border-radius: 3px;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 0.6rem 0.75rem;
	transition: border-color 0.15s, background 0.15s;
	width: 100%;
}

.volunteer-form__input:focus {
	background: rgba(255, 252, 242, 0.95);
	border-color: var(--gop-red-deep);
	box-shadow: 0 0 0 2px rgba(116, 39, 41, 0.12);
	outline: none;
}

.volunteer-form__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23742729' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
	background-position: right 0.75rem center;
	background-repeat: no-repeat;
	background-size: 10px;
	cursor: pointer;
	padding-right: 2rem;
}

.volunteer-form__textarea {
	line-height: 1.7;
	min-height: 8rem;
	resize: vertical;
}

.volunteer-form__footer {
	align-items: center;
	display: flex;
	gap: 1.25rem;
	justify-content: space-between;
	margin-top: 1.25rem;
}

.volunteer-form__note {
	color: rgba(43, 33, 24, 0.72);
	font-family: var(--font-heading);
	font-size: 0.82rem;
	margin: 0;
}

/* Event option list */

.volunteer-event-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 0.75rem;
}

.volunteer-event-option {
	background: rgba(255, 251, 240, 0.6);
	border: 1px solid rgba(116, 39, 41, 0.18);
	border-radius: 5px;
	padding: 1rem 1.1rem;
}

.volunteer-event-option__label {
	align-items: flex-start;
	cursor: pointer;
	display: flex;
	gap: 0.65rem;
}

.volunteer-event-option__radio {
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.volunteer-event-option__title {
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
}

.volunteer-event-option__meta {
	color: rgba(43, 33, 24, 0.72);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.88rem;
	gap: 0.5rem 1.25rem;
	margin-top: 0.35rem;
	padding-left: 1.55rem;
}

.volunteer-event-option__date::before {
	content: "📅 ";
	font-style: normal;
}

.volunteer-event-option__venue::before {
	content: "📍 ";
	font-style: normal;
}

.volunteer-event-option__excerpt {
	color: rgba(43, 33, 24, 0.78);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0.5rem 0 0.35rem 1.55rem;
}

.volunteer-event-option__link {
	display: inline-block;
	font-size: 0.88rem;
	margin-left: 1.55rem;
	margin-top: 0.25rem;
}

/* input:checked highlight */

.volunteer-event-option:has(input:checked) {
	border-color: var(--gop-red-deep);
	box-shadow: 0 0 0 2px rgba(116, 39, 41, 0.12);
}

@media (max-width: 600px) {
	.volunteer-form__row {
		grid-template-columns: 1fr;
	}

	.volunteer-form__footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.volunteer-event-option__meta {
		flex-direction: column;
		gap: 0.25rem;
	}
}

/* ── Donation Form ── */

.donation-form-wrap {
	margin: 2.5rem auto 3rem;
	max-width: 860px;
	padding: 0 1rem;
}

.donation-form-wrap__heading {
	color: var(--gop-red-deep);
	font-size: 1.45rem;
	margin-bottom: 0.4rem;
}

.donation-form-wrap__intro {
	color: rgba(43, 33, 24, 0.82);
	margin-bottom: 1.75rem;
}

.donation-form__notice {
	border-radius: 4px;
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
}

.donation-form__notice--warning {
	background: #fdf3e3;
	border: 1px solid rgba(196, 130, 30, 0.55);
	color: #7a4b0a;
}

.donation-form__notice p {
	margin: 0;
}

.donation-form {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.donation-form__section {
	border-top: 1px solid rgba(116, 39, 41, 0.14);
	padding: 1.75rem 0;
}

.donation-form__section--compact {
	padding: 1.25rem 0;
}

.donation-form__section-title {
	color: var(--gop-navy);
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.donation-form__section-note {
	color: rgba(43, 33, 24, 0.68);
	font-size: 0.88rem;
	margin: -0.5rem 0 1rem;
}

/* Amount buttons */

.donation-form__fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

.donation-form__amount-grid {
	display: grid;
	gap: 0.6rem;
	grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
}

.donation-form__amount-option {
	position: relative;
}

.donation-form__amount-radio {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.donation-form__amount-label {
	align-items: center;
	background: rgba(255, 251, 240, 0.7);
	border: 2px solid rgba(116, 39, 41, 0.22);
	border-radius: 4px;
	color: var(--gop-navy);
	cursor: pointer;
	display: flex;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	justify-content: center;
	min-height: 3rem;
	padding: 0.6rem 0.5rem;
	text-align: center;
	transition: background 0.14s, border-color 0.14s, color 0.14s;
	width: 100%;
}

.donation-form__amount-label:hover {
	background: rgba(255, 248, 228, 0.95);
	border-color: rgba(116, 39, 41, 0.5);
}

.donation-form__amount-radio:checked + .donation-form__amount-label {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
	color: #fff;
}

.donation-form__amount-radio:focus-visible + .donation-form__amount-label {
	outline: 3px solid var(--gop-gold);
	outline-offset: 2px;
}

/* Custom amount */

.donation-form__custom-amount {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-top: 1rem;
	max-width: 16rem;
}

.donation-form__input--amount {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
}

/* Frequency buttons */

.donation-form__frequency-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.donation-form__freq-option {
	position: relative;
}

.donation-form__freq-radio {
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.donation-form__freq-label {
	background: rgba(255, 251, 240, 0.7);
	border: 2px solid rgba(116, 39, 41, 0.22);
	border-radius: 2rem;
	color: var(--gop-navy);
	cursor: pointer;
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 0.92rem;
	font-weight: 600;
	padding: 0.45rem 1.1rem;
	transition: background 0.14s, border-color 0.14s, color 0.14s;
}

.donation-form__freq-label:hover {
	background: rgba(255, 248, 228, 0.95);
	border-color: rgba(116, 39, 41, 0.5);
}

.donation-form__freq-radio:checked + .donation-form__freq-label {
	background: var(--gop-navy);
	border-color: var(--gop-navy);
	color: #fff;
}

.donation-form__freq-radio:focus-visible + .donation-form__freq-label {
	outline: 3px solid var(--gop-gold);
	outline-offset: 2px;
}

.donation-form__freq-note {
	color: rgba(43, 33, 24, 0.65);
	font-size: 0.82rem;
	margin: 0.75rem 0 0;
}

/* Processing fee coverage */

.donation-form__cover-fee-label {
	align-items: flex-start;
	cursor: pointer;
	display: flex;
	font-family: var(--font-heading);
	font-size: 0.95rem;
	gap: 0.6rem;
}

.donation-form__cover-fee-label input[type="checkbox"] {
	flex-shrink: 0;
	margin-top: 0.18rem;
}

.donation-form__cover-fee-note {
	color: rgba(43, 33, 24, 0.62);
	font-size: 0.82rem;
	margin: 0.5rem 0 0 1.6rem;
}

/* Donor info fields */

.donation-form__row {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
	margin-bottom: 1rem;
}

.donation-form__row--thirds {
	grid-template-columns: 2fr 1.5fr 1fr;
}

.donation-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin-bottom: 1rem;
}

.donation-form__label {
	color: rgba(43, 33, 24, 0.82);
	font-family: var(--font-heading);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.donation-form__input {
	background: rgba(255, 251, 240, 0.72);
	border: 1px solid rgba(116, 39, 41, 0.24);
	border-radius: 3px;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 0.6rem 0.75rem;
	transition: border-color 0.14s, background 0.14s;
	width: 100%;
}

.donation-form__input:focus {
	background: rgba(255, 252, 242, 0.95);
	border-color: var(--gop-red-deep);
	box-shadow: 0 0 0 2px rgba(116, 39, 41, 0.12);
	outline: none;
}

.donation-form__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23742729' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
	background-position: right 0.75rem center;
	background-repeat: no-repeat;
	background-size: 10px;
	cursor: pointer;
	padding-right: 2rem;
}

/* Compliance section */

.donation-form__contrib-types {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin-bottom: 1.25rem;
	margin-top: 0.5rem;
}

.donation-form__contrib-option {
	align-items: center;
	display: flex;
	gap: 0.4rem;
}

.donation-form__contrib-option label {
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 600;
}

.donation-form__compliance-panel {
	margin-bottom: 1rem;
}

.donation-form__bizpac-note {
	background: #f3f4f8;
	border: 1px solid rgba(60, 80, 140, 0.24);
	border-radius: 4px;
	color: rgba(43, 33, 24, 0.82);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
	padding: 0.85rem 1rem;
}

.donation-form__compliance-note {
	color: rgba(43, 33, 24, 0.62);
	font-size: 0.82rem;
	margin: 0.25rem 0 0;
}

/* Footer / continue */

.donation-form__footer {
	border-top: 2px solid rgba(116, 39, 41, 0.18);
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	padding: 1.75rem 0 0.5rem;
}

.donation-form__summary {
	background: rgba(255, 251, 240, 0.8);
	border: 1px solid rgba(116, 39, 41, 0.16);
	border-radius: 4px;
	padding: 0.75rem 1rem;
}

.donation-form__summary-text {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	margin: 0;
}

.donation-form__continue-btn {
	align-self: flex-start;
	font-size: 1.05rem;
	padding: 0.8rem 1.75rem;
}

.donation-form__continue-btn[aria-disabled="true"],
.donation-form__continue-btn:disabled {
	cursor: not-allowed;
	opacity: 0.45;
	pointer-events: none;
}

.donation-form__secure-note {
	color: rgba(43, 33, 24, 0.6);
	font-size: 0.82rem;
	margin: 0;
}

@media (max-width: 640px) {
	.donation-form__amount-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.donation-form__row,
	.donation-form__row--thirds {
		grid-template-columns: 1fr;
	}

	.donation-form__continue-btn {
		align-self: stretch;
		text-align: center;
	}
}

@media (max-width: 380px) {
	.donation-form__amount-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Page CTA Band ── */

.page-cta {
	background: var(--gop-red-deep);
	color: var(--gop-white);
	padding: var(--section-space) 0;
}

.page-cta h2 {
	color: var(--gop-white);
}

.page-cta p {
	color: rgba(255, 255, 255, 0.85);
}

.page-cta__inner {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 0 auto;
	max-width: var(--content-width);
	padding: 0 1rem;
}

/* ── Values Strip ── */

.values-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	list-style: none;
	margin: 0;
	padding: 0;
}

.value-item {
	border-top: 3px solid var(--gop-gold);
	padding-top: 1rem;
}

.value-item__label {
	color: var(--gop-red-deep);
	display: block;
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.value-item__text {
	color: var(--gop-steel);
	font-size: 0.9rem;
	line-height: 1.55;
	margin: 0;
}

/* ── Section footer (View-all links below card grids) ── */

.home-section-footer {
	margin-top: 2rem;
}

.source-note {
	margin-top: 2rem;
}

.card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1rem;
}

.legislative-card__context {
	color: var(--gop-steel);
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

/* ── Community Spotlight ── */

.spotlight-panel {
	max-width: 720px;
}

.spotlight-panel .picture-placeholder {
	margin-top: 1.25rem;
}

/* History timeline scope tabs */

.timeline-scope-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.timeline-scope-tab {
	background: transparent;
	border: 1.5px solid var(--gop-border);
	border-radius: 2rem;
	color: var(--gop-ink);
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 600;
	padding: 0.35rem 0.9rem;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.timeline-scope-tab:hover {
	border-color: var(--gop-red-deep);
	color: var(--gop-red-deep);
}

.timeline-scope-tab.is-active {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
	color: var(--gop-white);
}

.history-source {
	border-top: 1px solid var(--gop-border);
	font-size: 0.88rem;
	margin-top: 1rem;
	padding-top: 0.75rem;
}

/* History timeline — vertical expandable dot layout */

.timeline {
	list-style: none;
	margin: 0;
	padding: 0 0 0 2.25rem;
	position: relative;
}

.timeline::before {
	background: var(--gop-gold);
	bottom: 0;
	content: "";
	left: 0.625rem;
	position: absolute;
	top: 0;
	width: 3px;
}

.timeline__item {
	padding-bottom: 1rem;
	position: relative;
}

.timeline__item:last-child {
	padding-bottom: 0;
}

/* Dot on the rail — child of <summary> but positioned on the list item */
.timeline__dot {
	background: var(--gop-red);
	border: 3px solid var(--gop-white);
	border-radius: 50%;
	box-shadow: 0 0 0 2px var(--gop-gold);
	display: block;
	height: 1rem;
	left: -2rem;
	pointer-events: none;
	position: absolute;
	top: 0.875rem;
	transition: background 0.15s, box-shadow 0.15s;
	width: 1rem;
}

.timeline__entry[open] .timeline__dot {
	background: var(--gop-navy);
	box-shadow: 0 0 0 2px var(--gop-navy);
}

/* Clickable summary card */
.timeline__summary {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 0.5rem;
	box-shadow: 0 1px 4px rgba(116, 39, 41, 0.07);
	color: var(--gop-ink);
	cursor: pointer;
	display: grid;
	gap: 0.2rem;
	list-style: none;
	padding: 0.875rem 1rem;
	transition: border-color 0.15s;
	user-select: none;
}

.timeline__summary::-webkit-details-marker {
	display: none;
}

.timeline__summary::marker {
	content: none;
}

.timeline__summary:hover,
.timeline__summary:focus-visible {
	border-color: var(--gop-red);
	outline: 3px solid var(--gop-gold);
	outline-offset: 2px;
}

.timeline__entry[open] > .timeline__summary {
	border-bottom-color: transparent;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.timeline__date {
	color: var(--gop-red);
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
}

.timeline__title {
	color: var(--gop-red-deep);
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
}

.timeline__scope-badge {
	align-self: start;
	border: 1px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.72rem;
	font-weight: 800;
	justify-self: start;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 0.2rem 0.55rem;
	text-transform: uppercase;
	width: max-content;
}

.timeline__scope-badge--dekalb {
	background: rgba(196, 154, 69, 0.16);
	border-color: rgba(196, 154, 69, 0.42);
	color: #73551f;
}

.timeline__scope-badge--indiana {
	background: rgba(23, 42, 69, 0.1);
	border-color: rgba(23, 42, 69, 0.24);
	color: var(--gop-navy);
}

.timeline__scope-badge--federal {
	background: rgba(143, 47, 47, 0.12);
	border-color: rgba(143, 47, 47, 0.28);
	color: var(--gop-red-deep);
}

.timeline:not([data-history-current-scope="all"]) .timeline__scope-badge {
	display: none;
}

/* Expanded content panel */
.timeline__panel {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-bottom-left-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
	border-top: 0;
	padding: 1.25rem;
}

.timeline__panel > h3 {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.timeline__panel .featured-media {
	margin-bottom: 1rem;
}

.timeline__panel .featured-media img {
	border-radius: 0.35rem;
	height: auto;
	width: 100%;
}

.timeline__content > * + * {
	margin-top: 0.75rem;
}

.timeline__no-results {
	color: var(--gop-steel);
	font-style: italic;
	margin-top: 1rem;
	padding: 0.5rem 0;
}

/* ── Article metadata (news post date / categories) ── */

.article-meta {
	color: var(--gop-steel);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.85rem;
	gap: 0.25rem 1rem;
	margin-bottom: 1.5rem;
}

.article-meta--box {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-radius: 0.5rem;
	padding: 1rem;
}

.article-meta__item a {
	color: inherit;
	font-weight: 700;
	text-decoration-color: var(--gop-gold);
	text-underline-offset: 0.2em;
}

.article-meta__item a:hover,
.article-meta__item a:focus-visible {
	color: var(--gop-red-deep);
}

/* ── Archive description (taxonomy/category description inside page-hero) ── */

.archive-description {
	color: var(--gop-steel);
	font-size: 1.05rem;
	margin-top: 0.75rem;
	max-width: 640px;
}

/* ── Post prev/next navigation ── */

.post-navigation {
	border-top: 1px solid var(--gop-border);
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	margin: 2rem auto 0;
	max-width: var(--content-width);
	padding: 2rem 1rem 0;
}

.post-navigation a {
	color: var(--gop-red-deep);
	font-weight: 700;
	text-decoration: none;
	text-underline-offset: 0.2em;
}

.post-navigation a:hover,
.post-navigation a:focus-visible {
	color: var(--gop-red);
	text-decoration: underline;
	text-decoration-color: var(--gop-gold);
}

/* ═══════════════════════════════════════════════════════════
   Events Calendar — theme integration
   Targets The Events Calendar plugin v6 (tribe-*) classes.
   CSS-only; no template overrides required.
   ═══════════════════════════════════════════════════════════ */

/* Base: inherit site typography and override TEC color tokens */
.tribe-common,
.tribe-events {
	color: var(--gop-ink);
	font-family: var(--font-body);
}

.tribe-common {
	--tec-color-accent-primary: var(--gop-red-deep);
	--tec-color-accent-primary-hover: var(--gop-red);
	--tec-color-accent-primary-multiday: var(--gop-red-soft);
	--tec-color-accent-secondary: var(--gop-gold);
	--tec-color-text-primary: var(--gop-ink);
	--tec-color-text-secondary: var(--gop-steel);
	--tec-color-background-primary: var(--gop-white);
	--tec-color-background-secondary: var(--gop-cream);
	--tec-font-family-sans-serif: var(--font-body);
	--tec-font-family-serif: var(--font-heading);
}

/* Prevent browser-default blue/purple link states throughout event views */
.tribe-events a,
.tribe-common a {
	color: var(--gop-red-deep);
}

.tribe-events a:visited,
.tribe-common a:visited {
	color: var(--gop-red-deep);
}

.tribe-events a:hover,
.tribe-events a:focus-visible,
.tribe-common a:hover,
.tribe-common a:focus-visible {
	color: var(--gop-red);
}

/* ── List view ── */

.tribe-events-calendar-list__event {
	border-bottom: 1px solid var(--gop-border);
	padding: 1.5rem 0;
}

.tribe-events-calendar-list__event:first-child {
	border-top: 1px solid var(--gop-border);
}

/* Date tag badge */
.tribe-common .tribe-events-calendar-list__event-date-tag,
.tribe-events .tribe-events-calendar-list__event-date-tag,
.tribe-events-calendar-list__event-date-tag {
	align-items: center;
	background: var(--gop-navy);
	border-radius: 0.35rem;
	color: var(--gop-white);
	display: flex;
	flex-direction: column;
	font-family: var(--font-heading);
	font-weight: 700;
	justify-content: flex-start;
	min-width: 4rem;
	padding: 0.5rem 0.65rem;
	text-align: center;
}

.tribe-common .tribe-events-calendar-list__event-date-tag *,
.tribe-events .tribe-events-calendar-list__event-date-tag * {
	color: var(--gop-white) !important;
}

.tribe-common .tribe-events-calendar-list__event-date-tag-datetime,
.tribe-events .tribe-events-calendar-list__event-date-tag-datetime,
.tribe-events-calendar-list__event-date-tag-datetime {
	color: var(--gop-white);
	display: block;
}

.tribe-common .tribe-events-calendar-list__event-date-tag-dayofweek,
.tribe-common .tribe-events-calendar-list__event-date-tag-weekday,
.tribe-events .tribe-events-calendar-list__event-date-tag-dayofweek,
.tribe-events .tribe-events-calendar-list__event-date-tag-weekday,
.tribe-events-calendar-list__event-date-tag-dayofweek,
.tribe-events-calendar-list__event-date-tag-weekday {
	color: var(--gop-white);
	display: block;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 400;
	opacity: 0.85;
	text-transform: uppercase;
}

.tribe-common .tribe-events-calendar-list__event-date-tag-daynum,
.tribe-events .tribe-events-calendar-list__event-date-tag-daynum,
.tribe-events-calendar-list__event-date-tag-daynum {
	color: var(--gop-white);
	display: block;
	font-size: 1.1rem;
	letter-spacing: -0.01em;
}

/* Event title */
.tribe-events-calendar-list__event-title,
.tribe-events-calendar-list__event-title .tribe-events-calendar-list__event-title-link {
	color: var(--gop-red-deep);
	font-family: var(--font-heading);
}

.tribe-events-calendar-list__event-title-link:visited {
	color: var(--gop-red-deep);
}

.tribe-events-calendar-list__event-title-link:hover,
.tribe-events-calendar-list__event-title-link:focus-visible {
	color: var(--gop-red);
	text-decoration: underline;
	text-decoration-color: var(--gop-gold);
	text-underline-offset: 0.2em;
}

/* Date/time text below title */
.tribe-events-calendar-list__event-datetime-wrapper,
.tribe-event-schedule-details {
	color: var(--gop-steel);
	font-size: 0.9rem;
}

/* ── Top bar (month heading + prev/next) ── */

.tribe-events-c-top-bar {
	border-bottom: 1px solid var(--gop-border);
	padding-bottom: 1rem;
}

.tribe-events-c-top-bar__nav-link {
	color: var(--gop-red-deep);
	font-weight: 700;
}

.tribe-events-c-top-bar__nav-link:hover,
.tribe-events-c-top-bar__nav-link:focus-visible {
	color: var(--gop-red);
}

.tribe-events-c-top-bar__datepicker-button {
	color: var(--gop-ink);
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 700;
}

/* ── Prev/next nav (list view) ── */

.tribe-events-c-nav__list {
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	margin-top: 2rem;
}

.tribe-events-c-nav__prev-button,
.tribe-events-c-nav__next-button {
	background: var(--gop-white);
	border: 2px solid var(--gop-border);
	border-radius: 0.35rem;
	color: var(--gop-red-deep);
	font-weight: 700;
	padding: 0.6rem 1rem;
	text-decoration: none;
}

.tribe-events-c-nav__prev-button:hover,
.tribe-events-c-nav__prev-button:focus-visible,
.tribe-events-c-nav__next-button:hover,
.tribe-events-c-nav__next-button:focus-visible {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
	color: var(--gop-white);
}

/* ── View selector (List / Month / Day) ── */

.tribe-events-c-view-selector__button {
	color: var(--gop-steel);
	font-size: 0.88rem;
	font-weight: 700;
}

.tribe-events-c-view-selector__button--active,
.tribe-events-c-view-selector__button:hover,
.tribe-events-c-view-selector__button:focus-visible {
	color: var(--gop-red-deep);
}

/* ── Events search bar ── */

.tribe-events-c-events-bar {
	background: var(--gop-cream);
	border-radius: 0.4rem;
	margin-bottom: 2rem;
	padding: 1rem;
}

.tribe-events-c-search__input-control-input,
.tribe-events-c-search__input-control input[type="text"],
.tribe-events-c-search__input-control input[type="search"] {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 0.35rem;
	color: var(--gop-ink);
	font-family: var(--font-body);
	padding: 0.6rem 0.85rem;
}

.tribe-events-c-search__button {
	background: var(--gop-red-deep);
	border: 2px solid var(--gop-red-deep);
	border-radius: 0.35rem;
	color: var(--gop-white);
	font-weight: 700;
	padding: 0.6rem 1.1rem;
}

.tribe-events-c-search__button:hover,
.tribe-events-c-search__button:focus-visible {
	background: var(--gop-red);
	border-color: var(--gop-red);
}

/* ── Month/grid calendar ── */

/* Subscribe/export controls */

.tribe-events .tribe-events-c-subscribe-dropdown__container,
.tribe-common .tribe-events-c-subscribe-dropdown__container {
	margin-top: 1.5rem;
	position: relative;
	z-index: 5;
}

.tribe-events .tribe-events-c-subscribe-dropdown,
.tribe-common .tribe-events-c-subscribe-dropdown {
	display: inline-block;
	position: relative;
}

.tribe-events .tribe-events-c-subscribe-dropdown__button,
.tribe-common .tribe-events-c-subscribe-dropdown__button {
	align-items: center;
	background: var(--gop-red);
	border: 2px solid var(--gop-red);
	border-radius: 0.35rem;
	color: var(--gop-white);
	display: inline-flex;
	font-family: var(--font-body);
	font-weight: 800;
	gap: 0.45rem;
	justify-content: center;
	min-height: 2.9rem;
	padding: 0.72rem 1.1rem;
	text-decoration: none;
}

.tribe-events .tribe-events-c-subscribe-dropdown__button:hover,
.tribe-events .tribe-events-c-subscribe-dropdown__button:focus-visible,
.tribe-common .tribe-events-c-subscribe-dropdown__button:hover,
.tribe-common .tribe-events-c-subscribe-dropdown__button:focus-visible {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
	color: var(--gop-white);
}

.tribe-events .tribe-events-c-subscribe-dropdown__button-text,
.tribe-common .tribe-events-c-subscribe-dropdown__button-text {
	color: inherit;
	font-weight: inherit;
}

.tribe-events .tribe-events-c-subscribe-dropdown__content,
.tribe-common .tribe-events-c-subscribe-dropdown__content {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 0.35rem;
	box-shadow: 0 16px 36px rgba(23, 42, 69, 0.16);
	margin-top: 0.45rem;
	min-width: 16rem;
	overflow: hidden;
	z-index: 20;
}

.tribe-events .tribe-events-c-subscribe-dropdown__list,
.tribe-common .tribe-events-c-subscribe-dropdown__list {
	list-style: none;
	margin: 0;
	padding: 0.35rem 0;
}

.tribe-events .tribe-events-c-subscribe-dropdown__list-item-link,
.tribe-common .tribe-events-c-subscribe-dropdown__list-item-link {
	color: var(--gop-ink);
	display: block;
	font-weight: 700;
	padding: 0.6rem 0.9rem;
	text-decoration: none;
}

.tribe-events .tribe-events-c-subscribe-dropdown__list-item-link:visited,
.tribe-common .tribe-events-c-subscribe-dropdown__list-item-link:visited {
	color: var(--gop-ink);
}

.tribe-events .tribe-events-c-subscribe-dropdown__list-item-link:hover,
.tribe-events .tribe-events-c-subscribe-dropdown__list-item-link:focus-visible,
.tribe-common .tribe-events-c-subscribe-dropdown__list-item-link:hover,
.tribe-common .tribe-events-c-subscribe-dropdown__list-item-link:focus-visible {
	background: var(--gop-cream);
	color: var(--gop-red-deep);
	text-decoration: none;
}

.tribe-events .tribe-events-cal-links,
.tribe-common .tribe-events-cal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.tribe-events .tribe-events-cal-links a,
.tribe-common .tribe-events-cal-links a {
	align-items: center;
	background: var(--gop-red);
	border: 2px solid var(--gop-red);
	border-radius: 0.35rem;
	color: var(--gop-white);
	display: inline-flex;
	font-weight: 800;
	min-height: 2.9rem;
	padding: 0.72rem 1.1rem;
	text-decoration: none;
}

.tribe-events .tribe-events-cal-links a:visited,
.tribe-common .tribe-events-cal-links a:visited {
	color: var(--gop-white);
}

.tribe-events .tribe-events-cal-links a:hover,
.tribe-events .tribe-events-cal-links a:focus-visible,
.tribe-common .tribe-events-cal-links a:hover,
.tribe-common .tribe-events-cal-links a:focus-visible {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
	color: var(--gop-white);
	text-decoration: none;
}

.tribe-events-calendar-month__header-column {
	color: var(--gop-steel);
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
}

.tribe-events-calendar-month__day-cell {
	border: 1px solid var(--gop-border);
}

.tribe-events-calendar-month__day-cell--past {
	background: rgba(246, 241, 232, 0.55);
}

.tribe-events-calendar-month__day-date-link,
.tribe-events-calendar-month__day-date {
	color: var(--gop-ink);
	font-weight: 700;
}

.tribe-events-calendar-month__day-date-link:hover,
.tribe-events-calendar-month__day-date-link:focus-visible {
	color: var(--gop-red-deep);
}

/* Today highlight */
.tribe-events-calendar-month__day-cell--current .tribe-events-calendar-month__day-date {
	align-items: center;
	background: var(--gop-red-deep);
	border-radius: 50%;
	color: var(--gop-white);
	display: inline-flex;
	height: 1.75rem;
	justify-content: center;
	width: 1.75rem;
}

/* Event dots/links in month cells */
.tribe-events-calendar-month__calendar-event-title-link {
	color: var(--gop-red-deep);
	font-size: 0.82rem;
}

.tribe-events-calendar-month__calendar-event-title-link:visited {
	color: var(--gop-red-deep);
}

.tribe-events-calendar-month__calendar-event-title-link:hover,
.tribe-events-calendar-month__calendar-event-title-link:focus-visible {
	color: var(--gop-red);
}

/* ── Single event page ── */

.tribe-events-single-event-title {
	color: var(--gop-red-deep);
	font-family: var(--font-heading);
	font-size: clamp(1.75rem, 5vw, 2.75rem);
	line-height: 1.15;
	margin-bottom: 0.5rem;
}

.tribe-events-schedule {
	color: var(--gop-steel);
	font-size: 0.92rem;
	margin-bottom: 1rem;
}

.tribe-events-event-meta {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-radius: 0.4rem;
	font-size: 0.9rem;
	margin-top: 1.5rem;
	padding: 1.25rem;
}

.tribe-events-event-meta h2 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

.tribe-events-event-meta dt {
	color: var(--gop-steel);
	font-weight: 700;
}

/* Back-to-events nav link */
.tribe-events-back a {
	color: var(--gop-red-deep);
	font-weight: 700;
	text-decoration: none;
}

.tribe-events-back a:hover,
.tribe-events-back a:focus-visible {
	color: var(--gop-red);
	text-decoration: underline;
	text-decoration-color: var(--gop-gold);
	text-underline-offset: 0.2em;
}

/* ── Plugin notices and empty states ── */

.tribe-events-notices {
	background: var(--gop-cream);
	border-left: 4px solid var(--gop-gold);
	border-radius: 0 0.35rem 0.35rem 0;
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
}

.tribe-events-notices li {
	color: var(--gop-steel);
	font-size: 0.95rem;
}

@media (min-width: 520px) {
	.card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.picture-topic-content {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.picture-topic-content .wp-block-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.picture-topic-content .gallery,
	.picture-topic-content .blocks-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.empty-state {
		grid-column: 1 / -1;
	}

	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 720px) {
	.menu-toggle {
		display: none;
	}

	.primary-navigation {
		background: transparent;
		border: 0;
		display: block;
		flex: 1 1 auto;
		max-height: none;
		overflow: visible;
		padding: 0;
		position: static;
	}

	.site-branding {
		flex: 0 0 15.5rem;
	}

	.site-header__inner {
		align-items: center;
		display: grid;
		gap: 1rem;
		grid-template-columns: auto minmax(0, 1fr);
		min-height: 6.4rem;
	}

	.site-header__brand-area {
		grid-column: 1;
		min-width: 0;
	}

	.site-header__mark {
		height: 4.85rem;
		width: 5.9rem;
	}

	.primary-menu {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		gap: 0.04rem 0.25rem;
		justify-content: flex-end;
	}

	.primary-menu:has(.menu-item--second-line)::before {
		content: "";
		flex: 0 0 100%;
		height: 0;
		order: 2;
	}

	.primary-menu .menu-item--second-line {
		order: 3;
	}

	.primary-menu a {
		font-size: 0.86rem;
		padding: 0.34rem 0.36rem;
		white-space: nowrap;
	}

	.primary-navigation {
		grid-column: 2;
		min-width: 0;
	}

	.card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.picture-topic-content {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.picture-topic-content .wp-block-gallery {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.picture-topic-content .gallery,
	.picture-topic-content .blocks-gallery-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.values-grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.empty-state {
		grid-column: 1 / -1;
	}

	.split-layout {
		align-items: center;
		grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
	}

	.profile-layout {
		align-items: start;
		grid-template-columns: minmax(240px, 0.35fr) minmax(0, 0.65fr);
	}

	.page-cta__inner {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
	}

	.page-cta__content {
		max-width: 580px;
	}

	.site-footer__inner {
		align-items: start;
		grid-template-columns: 1.5fr 1fr auto;
	}

	.site-footer__actions {
		flex-direction: column;
	}
}

@media (min-width: 1160px) {
	.primary-menu a {
		font-size: 0.92rem;
		padding: 0.34rem 0.48rem;
	}
}

@media (max-width: 420px) {
	.party-platform-section__viewer,
	.party-platform-section__viewer object,
	.party-platform-section__viewer iframe {
		height: 70vh;
		min-height: 28rem;
	}

	.event-card {
		grid-template-columns: 1fr;
	}

	.event-card__date,
	.event-card .card__body {
		grid-column: 1;
	}

	.event-card .card__body {
		padding-top: 1rem;
	}

	.tribe-events-calendar-list__event {
		column-gap: 0.9rem;
	}

	.tribe-events-calendar-list__event-wrapper,
	.tribe-events-calendar-list__event-details {
		min-width: 0;
		padding-left: 0.75rem;
	}

	.tribe-common .tribe-events-calendar-list__event-date-tag,
	.tribe-events .tribe-events-calendar-list__event-date-tag,
	.tribe-events-calendar-list__event-date-tag {
		min-width: 4.6rem;
		padding-left: 0.45rem;
		padding-right: 0.45rem;
	}

	.tribe-events-calendar-list__event-date-tag .event-volunteer-badge--tribe-date {
		font-size: 0.52rem;
		letter-spacing: 0.02em;
		line-height: 1.15;
		max-width: 100%;
	}

	.representative-group__header {
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 0.2rem 0.75rem;
		padding: 0.85rem 1rem;
	}

	.representative-group__header .eyebrow {
		flex: 1 0 100%;
		font-size: 0.72rem;
		line-height: 1.2;
	}

	.representative-group__header h2 {
		flex: 1 1 auto;
		font-size: 1.55rem;
		line-height: 1.1;
		min-width: 0;
		overflow-wrap: anywhere;
	}

	.representative-group__header::after {
		margin-left: auto;
		margin-top: 0.2rem;
	}
}

/* ── Elections ── */

.elections-sections-wrap {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 1rem;
}

.elections-section {
	border-top: 2px solid var(--gop-red-deep);
	margin-bottom: 3rem;
	padding-top: 2rem;
}

.elections-section__heading {
	color: var(--gop-red-deep);
	font-size: clamp(1.85rem, 4vw, 2.45rem);
	margin-bottom: 0.65rem;
}

.elections-section__intro {
	color: rgba(43, 33, 24, 0.82);
	margin-bottom: 1.5rem;
}

.elections-section__empty {
	color: var(--gop-steel);
	font-style: italic;
}

.elections-register {
	align-items: center;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: minmax(0, 1fr) minmax(12rem, 18rem);
}

.elections-register__copy {
	min-width: 0;
}

.elections-register__logo-link {
	align-items: center;
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 6px;
	display: flex;
	justify-content: center;
	min-height: 11rem;
	padding: 1.25rem;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.elections-register__logo-link:hover,
.elections-register__logo-link:focus-visible {
	border-color: var(--gop-red-deep);
	box-shadow: 0 0.75rem 1.8rem rgba(43, 33, 24, 0.1);
	transform: translateY(-1px);
}

.elections-register__logo {
	display: block;
	height: auto;
	max-height: 9rem;
	max-width: 100%;
	object-fit: contain;
}

.elections-register__placeholder {
	display: block;
	width: 100%;
}

/* Race card (details/summary) */

.election-race-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.election-race-card {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 6px;
}

.election-race-card__summary {
	align-items: center;
	cursor: pointer;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	list-style: none;
	padding: 1.1rem 1.25rem;
}

.election-race-card__summary::-webkit-details-marker {
	display: none;
}

.election-race-card__summary:hover {
	background: rgba(176, 0, 32, 0.04);
	border-radius: 6px;
}

.election-race-card--completed > .election-race-card__summary {
	border-left: 3px solid var(--gop-steel);
}

.election-race-card__summary-inner {
	flex: 1 1 auto;
	min-width: 0;
}

.election-race-card__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.3rem;
}

.election-race-card__election-name {
	color: var(--gop-steel);
	font-size: 0.8rem;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.election-race-card__date {
	color: var(--gop-steel);
	font-size: 0.82rem;
}

.election-race-card__title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.2rem;
}

.election-race-card__position {
	color: var(--gop-steel);
	font-size: 0.88rem;
	margin: 0 0 0.3rem;
}

.election-race-card__excerpt,
.election-race-card__pos-desc {
	color: rgba(43, 33, 24, 0.82);
	font-size: 0.9rem;
	margin: 0.25rem 0;
}

.election-race-card__cand-count {
	color: var(--gop-steel);
	font-size: 0.82rem;
	margin: 0.2rem 0 0;
}

.election-race-card__winner-summary {
	font-size: 0.9rem;
	margin: 0.25rem 0 0;
}

.election-winner-label {
	color: var(--gop-steel);
	font-weight: 600;
	margin-right: 0.25rem;
}

.election-race-card__toggle-icon {
	color: var(--gop-red-deep);
	flex-shrink: 0;
	font-size: 1.25rem;
	line-height: 1;
	transition: transform 0.18s ease;
}

.election-race-card__toggle-icon::before {
	content: '+';
}

details[open] > .election-race-card__summary .election-race-card__toggle-icon::before {
	content: '−';
}

.election-race-card__body {
	border-top: 1px solid var(--gop-border);
	padding: 1.25rem;
}

/* Race map */

.election-race-card__map {
	margin: 0 0 1rem;
}

.election-race-card__map img {
	border-radius: 4px;
	display: block;
	max-height: 220px;
	max-width: 100%;
	object-fit: contain;
}

.election-race-card__map-link,
.election-race-card__source {
	font-size: 0.88rem;
	margin-bottom: 0.75rem;
}

/* Status / result badges */

.election-status-badge,
.election-result-badge {
	border-radius: 999px;
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.18em 0.65em;
	text-transform: uppercase;
	white-space: nowrap;
}

.election-status-badge--active {
	background: var(--gop-gold);
	color: #2b1a00;
}

.election-status-badge--won {
	background: #e8f5e9;
	color: #1b5e20;
}

.election-status-badge--withdrawn {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	color: var(--gop-steel);
}

.election-status-badge--lost {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	color: var(--gop-steel);
}

.election-result-badge--unofficial {
	background: #fff8e1;
	color: #5d4037;
}

.election-result-badge--official {
	background: #e8f5e9;
	color: #1b5e20;
}

.election-result-badge--certified {
	background: #e3f2fd;
	color: #0d47a1;
}

/* Race type badges */

.election-race__type {
	border-radius: 999px;
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.15em 0.6em;
	text-transform: uppercase;
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	color: var(--gop-text);
}

.election-race__type--primary {
	background: #fff3e0;
	border-color: #ffb74d;
	color: #6d3b00;
}

.election-race__type--runoff {
	background: #fce4ec;
	border-color: #f48fb1;
	color: #880e4f;
}

.election-race__type--general {
	background: #e8f5e9;
	border-color: #81c784;
	color: #1b5e20;
}

.election-race__type--special {
	background: #e3f2fd;
	border-color: #64b5f6;
	color: #0d47a1;
}

.election-race__type--nonpartisan {
	background: #f3e5f5;
	border-color: #ce93d8;
	color: #4a148c;
}

.election-race__type--other {
	background: #eeeeee;
	border-color: #bdbdbd;
	color: #333;
}

/* Advancement note inside race cards */

.election-race__advancement {
	font-size: 0.875rem;
	margin: 0.5rem 0 0;
	color: var(--gop-text-muted);
}

.election-race__advancement strong {
	color: var(--gop-text);
}

/* Candidates section inside a race card */

.election-candidates-section {
	margin-top: 1.25rem;
}

.election-candidates-section__heading {
	border-bottom: 1px solid var(--gop-border);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0 0 1rem;
	padding-bottom: 0.4rem;
	text-transform: uppercase;
}

/* Candidate grid — responsive 1-2-3-4 columns */

.election-candidate-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

/* Candidate card */

.election-candidate-card {
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.election-candidate-card__media {
	aspect-ratio: 1 / 1;
	background: var(--gop-border);
	overflow: hidden;
	width: 100%;
}

.election-candidate-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	width: 100%;
}

.election-candidate-card__portrait-placeholder {
	background: rgba(176, 0, 32, 0.07);
	height: 100%;
	width: 100%;
}

.election-candidate-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 0.85rem 1rem;
}

.election-candidate-card__name {
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
}

.election-candidate-card__excerpt {
	color: rgba(43, 33, 24, 0.82);
	font-size: 0.88rem;
	margin: 0;
}

.election-candidate-card__bio {
	color: rgba(43, 33, 24, 0.78);
	font-size: 0.88rem;
	line-height: 1.55;
}

.election-candidate-card__bio p {
	margin: 0 0 0.4rem;
}

.election-candidate-card__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	list-style: none;
	margin: 0.3rem 0 0;
	padding: 0;
}

.election-candidate-card__links a {
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 4px;
	color: var(--gop-red-deep);
	font-size: 0.8rem;
	padding: 0.2rem 0.6rem;
	text-decoration: none;
}

.election-candidate-card__links a:hover {
	border-color: var(--gop-red-deep);
	text-decoration: underline;
}

/* Results table */

.election-results-table-wrap {
	margin-bottom: 1rem;
	overflow-x: auto;
}

.election-results-table {
	border-collapse: collapse;
	font-size: 0.9rem;
	min-width: 420px;
	width: 100%;
}

.election-results-table th,
.election-results-table td {
	border-bottom: 1px solid var(--gop-border);
	padding: 0.55rem 0.75rem;
	text-align: left;
	vertical-align: middle;
}

.election-results-table th {
	color: var(--gop-steel);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.election-results-table__num {
	text-align: right;
}

.election-results-table__row--winner {
	background: rgba(27, 94, 32, 0.05);
	font-weight: 600;
}

.election-winner-checkmark {
	color: #1b5e20;
	margin-right: 0.3rem;
}

/* Result notes and official links */

.election-race-card__result-notes {
	color: var(--gop-steel);
	font-size: 0.86rem;
	font-style: italic;
	margin: 0.75rem 0;
}

.election-race-card__official-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.election-official-link,
.election-pdf-link {
	align-items: center;
	border: 1px solid var(--gop-border);
	border-radius: 4px;
	color: var(--gop-red-deep);
	display: inline-flex;
	font-size: 0.88rem;
	font-weight: 600;
	gap: 0.35rem;
	padding: 0.35rem 0.85rem;
	text-decoration: none;
}

.election-official-link:hover,
.election-pdf-link:hover {
	border-color: var(--gop-red-deep);
	text-decoration: underline;
}

@media (min-width: 640px) {
	.election-race-card__summary {
		padding: 1.25rem 1.5rem;
	}

	.election-race-card__body {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.elections-register {
		grid-template-columns: 1fr;
	}

	.election-candidate-grid {
		grid-template-columns: 1fr;
	}

	.election-candidate-card__media {
		aspect-ratio: 3 / 2;
	}
}

/* ---------------------------------------------------------------------------
   Position Cards (blank slot cards driven by the position-key registry)
   --------------------------------------------------------------------------- */

.position-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	overflow: hidden;
}

.position-card__heading {
	align-items: flex-start;
	background: var(--gop-red-deep);
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	min-height: 3.6rem;
	min-width: 0;
	padding: 0.65rem 1rem;
}

.position-card--democratic-active .position-card__heading {
	background: #1e5f9e;
}

.position-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.35rem;
	min-height: 7rem;
	min-width: 0;
	order: 4;
	padding-top: 1rem;
}

.position-card__title {
	color: inherit;
	display: -webkit-box;
	font-size: 0.98rem;
	min-height: 2.45em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-height: 1.25;
	margin: 0;
	max-width: 100%;
	overflow: hidden;
	overflow-wrap: anywhere;
	word-break: normal;
}

.position-card__representative-placeholder {
	align-items: center;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 0.4rem;
	justify-content: flex-start;
	min-width: 0;
	width: 100%;
}

.position-card__representative-name {
	font-family: var(--font-heading);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.2;
	min-width: 0;
	overflow-wrap: anywhere;
}

.party-badge--placeholder {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.45);
	box-shadow: none;
	color: #fff;
}

.position-card__meta {
	color: var(--gop-steel);
	font-size: 0.95rem;
	margin: 0;
	overflow-wrap: anywhere;
	word-break: normal;
}

.position-card__meta--government {
	color: var(--gop-red-deep);
	font-weight: 700;
	text-transform: uppercase;
}

.position-card__meta--election {
	font-weight: 600;
}

.position-card__election-row {
	align-items: center;
	display: flex;
	gap: 0.6rem;
	justify-content: space-between;
}

.position-card__map-link,
.position-card__map-placeholder {
	background: transparent;
	border: 1px solid rgba(116, 39, 41, 0.28);
	border-radius: 999px;
	flex: 0 0 auto;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1;
	padding: 0.35rem 0.55rem;
	text-transform: uppercase;
}

.position-card__map-link {
	color: var(--gop-red-deep);
	cursor: pointer;
	font-family: inherit;
	text-decoration: none;
}

.position-card__map-link:hover {
	background: rgba(116, 39, 41, 0.08);
}

.position-card__map-placeholder {
	color: rgba(43, 33, 24, 0.48);
}

.position-map-modal {
	align-items: center;
	display: none;
	inset: 0;
	justify-content: center;
	padding: 1.5rem;
	position: fixed;
	z-index: 9999;
}

.position-map-modal.is-open {
	display: flex;
}

.position-map-modal__backdrop {
	background: rgba(18, 36, 61, 0.74);
	border: 0;
	cursor: pointer;
	inset: 0;
	padding: 0;
	position: absolute;
	width: 100%;
}

.position-map-modal__panel {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
	max-height: min(86vh, 52rem);
	max-width: min(92vw, 68rem);
	overflow: auto;
	padding: 1rem;
	position: relative;
	width: max-content;
}

.position-map-modal--geojson .position-map-modal__panel {
	max-width: min(94vw, 72rem);
	width: min(94vw, 72rem);
}

.position-map-modal__panel img {
	display: block;
	height: auto;
	max-height: 76vh;
	max-width: 100%;
	object-fit: contain;
}

.position-map-modal__leaflet {
	background: #edf1f5;
	border: 1px solid rgba(18, 36, 61, 0.16);
	height: min(72vh, 44rem);
	min-height: 24rem;
	width: 100%;
}

.position-map-modal__loading,
.position-map-modal__error {
	color: var(--gop-navy);
	font-weight: 700;
	margin: 0 0 0.75rem;
}

.position-map-modal__error {
	background: rgba(116, 39, 41, 0.08);
	border: 1px solid rgba(116, 39, 41, 0.2);
	border-radius: 4px;
	color: var(--gop-red-deep);
	padding: 0.75rem;
}

.position-map-modal__close {
	background: var(--gop-red-deep);
	border: 0;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	padding: 0.45rem 0.7rem;
	text-decoration: none;
}

.position-map-modal__close:hover {
	background: var(--gop-navy);
	color: #fff;
}

.position-map-modal__map-toggle {
	display: flex;
	gap: 0.375rem;
	margin-bottom: 0.75rem;
}

.position-map-modal__map-tab {
	background: transparent;
	border: 1px solid rgba(116, 39, 41, 0.5);
	border-radius: 999px;
	color: var(--gop-red-deep);
	cursor: pointer;
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	padding: 0.25rem 0.85rem;
	text-transform: uppercase;
	transition: background 0.12s, color 0.12s;
}

.position-map-modal__map-tab[aria-pressed="true"] {
	background: var(--gop-red-deep);
	border-color: var(--gop-red-deep);
	color: #fff;
}

.position-map-modal__map-tab:hover:not([aria-pressed="true"]) {
	background: rgba(116, 39, 41, 0.08);
}

.position-map-modal__map-tab:focus-visible {
	outline: 2px solid var(--gop-gold, #c49a45);
	outline-offset: 2px;
}

.position-map-modal__map-tab:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.position-map-modal__map-type-label {
	color: var(--gop-steel);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.position-card__placeholder-dates {
	border-top: 1px solid rgba(116, 39, 41, 0.16);
	color: var(--gop-steel);
	font-size: 0.82rem;
	margin-top: auto;
	padding-top: 0.8rem;
}

.position-card__placeholder-dates p {
	margin: 0;
}

.position-card__placeholder-dates p + p {
	margin-top: 0.25rem;
}

.position-card__media {
	align-items: center;
	aspect-ratio: 4 / 5;
	background: linear-gradient(135deg, rgba(250, 246, 236, 0.96), rgba(255, 255, 255, 0.98));
	border-radius: 0;
	display: flex;
	justify-content: center;
	order: 3;
	min-height: 0;
	overflow: hidden;
}

.position-card__media img.position-card__portrait {
	display: block;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	width: 100%;
}

.position-card__media--democratic-placeholder {
	background: linear-gradient(135deg, #2f72ad 0%, #1c4f86 52%, #102b52 100%);
}

.representative-placeholder--democratic {
	background:
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 0.45rem, transparent 0.45rem 0.9rem),
		linear-gradient(135deg, #2f72ad 0%, #1c4f86 52%, #102b52 100%);
	color: #fff;
}

.representative-placeholder--democratic .representative-placeholder__seal {
	border-color: rgba(255, 255, 255, 0.75);
	color: #fff;
}

.representative-placeholder--democratic .representative-placeholder__text {
	color: #fff;
}

.position-card__media-link {
	color: inherit;
	display: block;
	height: 100%;
	text-decoration: none;
	width: 100%;
}

.position-card--historical .position-card__heading {
	background: var(--gop-navy);
}

.position-history-toggle {
	margin-top: 1.25rem;
}

.position-history-toggle > summary {
	background: var(--gop-navy);
	border: 2px solid var(--gop-navy);
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-family: var(--font-heading);
	font-weight: 700;
	list-style: none;
	padding: 0.65rem 1rem;
}

.position-history-toggle > summary::-webkit-details-marker {
	display: none;
}

.position-history-toggle > summary::after {
	content: "+";
	margin-left: 0.65rem;
}

.position-history-toggle[open] > summary::after {
	content: "-";
}

.position-history-toggle__grid {
	margin-top: 1rem;
}

.position-history-toggle__grid .position-card {
	align-self: stretch;
}

.representative-group__historical-count {
	display: inline-block;
	margin-left: 0.5rem;
}

/* Context modifier: representative position cards sit inside the rollup grid. */
.position-card--representatives .position-card__title {
	font-size: 0.98rem;
}

/* Position-card directory: keep the same rollup layout as the representatives page. */
.position-card-directory .representative-rollup-nav {
	margin-bottom: 2rem;
}

/* =========================================================================
   Representative overlay cards
   ========================================================================= */

/* Cards with overlays need relative positioning for absolute arrows. */
.position-card--overlay {
	position: relative;
}

/* Each overlay slide fills the card's media + name areas.
   The slide is hidden/shown by JS using the `hidden` attribute. */
.position-card__slide[hidden] {
	display: none;
}

.position-card__slide,
.position-card__filtered-placeholder {
	display: contents; /* participates in parent flex/grid without adding a box */
}

.position-card__filtered-placeholder[hidden] {
	display: none;
}

/* Name + party badge row inside a slide. */
.position-card__representative-info {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	justify-content: flex-start;
	min-height: 5rem;
	order: 2;
	padding: 0.65rem 1.25rem 0.55rem;
}

.position-card:not(.position-card--representatives) .position-card__representative-info {
	gap: 0.15rem;
	min-height: 2.9rem;
	padding-bottom: 0.35rem;
}

.position-card:not(.position-card--representatives) .position-card__representative-placeholder {
	margin-top: 0.2rem;
}

.position-card__name-link {
	text-decoration: none;
}

.position-card__name-link:hover .position-card__name,
.position-card__name-link:focus .position-card__name {
	text-decoration: underline;
}

.position-card__name {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-family: var(--font-heading);
	font-size: 1.18rem;
	font-weight: 700;
	line-height: 1.2;
	overflow: hidden;
}

/* Term / year lines inside a slide. */
.position-card__terms {
	font-size: 0.78rem;
	color: var(--gop-steel);
	order: 5;
	padding: 0 0.5rem;
}

.position-card__term-dates,
.position-card__term-years {
	margin: 0.15rem 0;
}

/* Carousel arrow nav container — sits at the bottom of the card body.
   For cards with the --carousel modifier the arrows are positioned
   absolutely at portrait-center height via --representative-arrow-top. */
.position-card__carousel-nav {
	display: flex;
	justify-content: space-between;
	order: 6;
	padding: 0.25rem 0.1rem;
}

.position-card--carousel .position-card__carousel-nav {
	position: absolute;
	left: 0;
	right: 0;
	top: var(--representative-arrow-top, 42%);
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none; /* allow card clicks through */
	padding: 0 0.65rem;
	z-index: 20;
}

.position-card__arrow {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--gop-border);
	border-radius: 50%;
	color: var(--gop-navy);
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 700;
	height: 2rem;
	line-height: 1;
	pointer-events: all;
	transition: background 0.15s;
	width: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	visibility: visible;
	z-index: 21;
}

.position-card__arrow:hover:not(:disabled),
.position-card__arrow:focus:not(:disabled) {
	background: var(--gop-navy);
	color: #fff;
}

.position-card__arrow:disabled {
	opacity: 0.45;
	pointer-events: none;
}

.position-card__carousel-status {
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	flex: 1;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: static;
	white-space: nowrap;
	width: 1px;
}

/* Reset to current button */
.representative-directory-controls {
	margin-bottom: 1rem;
}

.representative-filter-toggle {
	align-items: center;
	background: var(--gop-white);
	border: 1px solid var(--gop-border);
	border-radius: 4px;
	color: var(--gop-steel);
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 0.45rem;
	padding: 0.5rem 0.75rem;
}

.representative-filter-toggle input {
	accent-color: var(--gop-red-deep);
}

.representative-reset-btn {
	font-size: 0.85rem;
}

/* =========================================================================
   Party badges
   ========================================================================= */

.party-badge {
	border-radius: 3px;
	display: inline-block;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	padding: 0.22em 0.55em;
	text-transform: uppercase;
	white-space: nowrap;
}

.party-badge--placeholder {
	background: #e8e8e8;
	color: #888;
}

.party-badge--republican {
	background: #9c2f2f;
	border-color: #7a2527;
	box-shadow: none;
	color: #fff;
}

.party-badge--democratic {
	background: #2471a3;
	color: #fff;
}

.party-badge--independent {
	background: var(--gop-steel);
	color: #fff;
}

.party-badge--libertarian {
	background: #c8a000;
	color: #1a1a00;
}

.party-badge--green {
	background: #27ae60;
	color: #fff;
}

.party-badge--other {
	background: #888;
	color: #fff;
}

/* =========================================================================
   Representative bio page
   ========================================================================= */

.representative-bio-wrap {
	padding-top: 2rem;
	padding-bottom: 3rem;
}

.representative-bio {
	max-width: 980px;
	margin: 0 auto;
}

.representative-bio__inner {
	display: grid;
	gap: 2rem;
	grid-template-columns: minmax(260px, 300px) 1fr;
	align-items: start;
}

@media (max-width: 640px) {
	.representative-bio__inner {
		grid-template-columns: 1fr;
	}
}

.representative-bio__portrait-col img,
.representative-bio__portrait-col .person-card__media {
	border-radius: 4px;
	width: 100%;
}

.representative-bio__name {
	font-size: 1.6rem;
	margin: 0 0 0.25rem;
}

.representative-bio__position {
	color: var(--gop-steel);
	font-size: 1rem;
	margin: 0 0 0.5rem;
}

.representative-bio__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.service-badge {
	border-radius: 3px;
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 0.15em 0.5em;
	text-transform: uppercase;
}

.service-badge--past {
	background: #e8e8e8;
	color: #555;
}

.representative-bio__dates {
	color: var(--gop-steel);
	font-size: 0.85rem;
	margin-bottom: 1rem;
}

.representative-bio__dates p {
	margin: 0.15rem 0;
}

/* Contact button list */
.representative-bio__contacts {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.bio-contact-btn {
	align-items: center;
	background: var(--gop-cream);
	border: 1px solid var(--gop-border);
	border-radius: 4px;
	color: var(--gop-ink);
	display: inline-flex;
	font-size: 0.9rem;
	gap: 0.5rem;
	padding: 0.45rem 0.75rem;
	text-decoration: none;
	transition: background 0.15s;
	width: 100%;
}

.bio-contact-btn:hover,
.bio-contact-btn:focus {
	background: var(--gop-navy);
	color: #fff;
}

.bio-contact-btn__icon {
	flex-shrink: 0;
	font-size: 1rem;
}

.bio-contact-btn .facebook-link__icon {
	flex-shrink: 0;
	height: 1.15rem;
	width: 1.15rem;
}

/* Bio text */
.representative-bio__body {
	margin-bottom: 1.5rem;
}

/* Inline official page embed */
.representative-bio__inline-site {
	margin-top: 2rem;
}

.representative-bio__inline-heading {
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
}

.representative-bio__iframe-wrap {
	border: 1px solid var(--gop-border);
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	padding-bottom: 62.5%; /* 8:5 aspect ratio */
}

.representative-bio__iframe-wrap iframe {
	border: 0;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/* Back link */
.representative-bio__back {
	margin-top: 2rem;
	font-size: 0.9rem;
}
.cgop-public-placeholder {
	background: #f7f4ef;
	color: #1f2933;
}

.cgop-public-placeholder__main {
	align-items: center;
	display: flex;
	min-height: 100vh;
	padding: 2rem;
}

.cgop-public-placeholder__panel {
	background: #ffffff;
	border: 1px solid rgba(127, 37, 39, 0.18);
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(31, 41, 51, 0.08);
	margin: 0 auto;
	max-width: 680px;
	padding: clamp(2rem, 5vw, 4rem);
	text-align: center;
}

.cgop-public-placeholder__eyebrow {
	color: #9f7b2f;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 0.75rem;
	text-transform: uppercase;
}

.cgop-public-placeholder__panel h1 {
	color: #7f2527;
	font-size: clamp(2.25rem, 6vw, 4rem);
	line-height: 1.05;
	margin: 0 0 1rem;
}

.cgop-public-placeholder__panel p {
	font-size: 1.05rem;
	line-height: 1.65;
	margin-left: auto;
	margin-right: auto;
	max-width: 42rem;
}

.cgop-public-placeholder__admin-note {
	border-top: 1px solid rgba(31, 41, 51, 0.12);
	color: #4a5568;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
}

.cgop-public-placeholder__panel .button {
	background: #7f2527;
	border-radius: 4px;
	color: #ffffff;
	display: inline-flex;
	font-weight: 700;
	padding: 0.75rem 1rem;
	text-decoration: none;
}
