/* =========================================================================
 * Arkansas House — Gov theme — site.css
 * Government-tone facelift. Source palette + fonts. Restrained, link-dense.
 * Per implementation.md §3 explicitly NOT to do:
 *   - no oversized expressive serif heroes (h1 ≤ 32px desktop / 26px mobile)
 *   - no hero gradient overlays, no glass-morphism, no spring/bounce
 *   - no emoji in headings, no marketing aesthetic
 * Loads after Bootstrap 4 + FA 6 + Bunny Fonts.
 * ========================================================================= */

/* -------------------------------------------------------------------------
 * Tokens
 * ----------------------------------------------------------------------- */
:root {
	--brand-red:        #9b1c2e;
	--brand-red-dark:   #7a1623;
	--brand-gold:       #c9a747;
	--brand-navy:       #1a2b4a;
	--brand-paper:      #f9f7f2;
	--brand-fog:        #e7e5df;
	--brand-ink:        #212121;
	--brand-mute:       #666666;
	--brand-rule:       #d8d4cc;
	--brand-link:       #9b1c2e;
	--brand-link-hover: #7a1623;

	--serif:   "PT Serif", Georgia, "Times New Roman", serif;
	--sans:    "Nunito", -apple-system, "Segoe UI", Roboto, sans-serif;
	--display: "Montserrat", -apple-system, "Segoe UI", Roboto, sans-serif;

	--radius: 4px;
	--shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04);
	--container-max: 1200px;

	--fs-h1: 30px;
	--fs-h2: 22px;
	--fs-h3: 18px;
	--fs-body: 16px;
	--fs-small: 14px;
	--fs-kicker: 11px;
}

@media (max-width: 767px) {
	:root {
		--fs-h1: 24px;
		--fs-h2: 20px;
		--fs-h3: 17px;
	}
}

/* -------------------------------------------------------------------------
 * Reset / base
 * ----------------------------------------------------------------------- */
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
	background: #ffffff;
	color: var(--brand-ink);
	font-family: var(--sans);
	font-size: var(--fs-body);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
* { box-sizing: border-box; }

a {
	color: var(--brand-link);
	text-decoration: none;
	transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}
a:hover { color: var(--brand-link-hover); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--serif);
	color: var(--brand-navy);
	font-weight: 700;
	letter-spacing: -0.005em;
	margin: 0 0 0.5rem;
	line-height: 1.25;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 1rem; }
img { max-width: 100%; height: auto; }
hr { border: 0; border-top: 1px solid var(--brand-rule); margin: 1.5rem 0; }

.container { max-width: var(--container-max); }

/* Skip link */
.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--brand-navy); color: #fff; padding: 8px 12px; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

/* -------------------------------------------------------------------------
 * Site alert (interior pages)
 * ----------------------------------------------------------------------- */
.site-alert {
	background: var(--brand-navy);
	color: #fff;
	font-family: var(--sans);
	font-size: var(--fs-small);
}
.site-alert--warning { background: #6b4f00; }
.site-alert--urgent { background: var(--brand-red-dark); }
.site-alert__inner {
	display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
	padding: 10px 0;
}
.site-alert__inner i { color: var(--brand-gold); }
.site-alert strong { color: #fff; font-weight: 700; }
.site-alert a {
	color: var(--brand-gold);
	text-decoration: underline;
	text-underline-offset: 3px;
	margin-left: 8px;
}
.site-alert a:hover { color: #fff; }

/* -------------------------------------------------------------------------
 * Header — 2-band layout in our theme colors
 *   Band 1 (cream paper): logo left, socials + Find Rep / Get Involved buttons right
 *   Band 2 (white): centered primary nav with thin dot separators
 * ----------------------------------------------------------------------- */
.site-header { background: var(--brand-paper); }

/* Band 1 — Brand band */
.site-header__brand-band {
	background: var(--brand-paper);
	border-bottom: 1px solid var(--brand-rule);
}
.site-header__brand-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 18px 28px;
	display: flex;
	align-items: center;
	gap: 24px;
}
.site-header__brand {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}
.site-header__brand img {
	max-height: 92px;
	width: auto;
	display: block;
}

.site-header__brand-actions {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}

.site-header__social {
	display: inline-flex;
	gap: 16px;
	align-items: center;
}
.site-header__social a {
	color: var(--brand-navy);
	font-size: 14px;
	text-decoration: none;
	line-height: 1;
	transition: color 150ms ease;
}
.site-header__social a:hover { color: var(--brand-red); }

.site-header__divider {
	display: inline-block;
	width: 1px;
	height: 26px;
	background: var(--brand-rule);
}

.site-header__aux {
	display: inline-flex;
	gap: 10px;
	align-items: center;
}
.site-header__aux .aux-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	color: var(--brand-navy);
	font-family: var(--display);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-transform: none;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}
.site-header__aux .aux-btn i {
	font-size: 13px;
	color: var(--brand-navy);
	transition: color 150ms ease;
}
.site-header__aux .aux-btn:hover {
	background: var(--brand-paper);
	border-color: var(--brand-red);
	color: var(--brand-red);
}
.site-header__aux .aux-btn:hover i { color: var(--brand-red); }

/* Band 2 — Nav bar (white, centered, dot separators) */
.site-header__nav-band {
	background: #ffffff;
	border-bottom: 1px solid var(--brand-rule);
}
.site-header__nav-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 28px;
	display: flex;
	align-items: stretch;
	justify-content: center;
}
.site-header__nav {
	display: flex;
	align-items: stretch;
}
.primary-nav {
	display: flex;
	align-items: stretch;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}
.primary-nav .nav-item {
	position: relative;
	display: flex;
	align-items: stretch;
}
.primary-nav .sep {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	width: 8px;
	color: transparent;
	align-self: center;
}
.primary-nav .sep::before,
.primary-nav .sep::after {
	content: '';
	display: block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--brand-rule);
}
.primary-nav .nav-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 18px 32px;
	color: var(--brand-navy);
	font-family: var(--serif);
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.005em;
	text-transform: none;
	text-decoration: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
	transition: color 150ms ease, border-color 150ms ease;
	white-space: nowrap;
}
.primary-nav .nav-link i {
	font-size: 11px;
	color: var(--brand-mute);
	transition: color 150ms ease;
}
.primary-nav .nav-link:hover,
.primary-nav .nav-item:hover > .nav-link,
.primary-nav .nav-item.active > .nav-link {
	color: var(--brand-red);
	border-bottom-color: var(--brand-red);
}
.primary-nav .nav-link:hover i,
.primary-nav .nav-item:hover > .nav-link i { color: var(--brand-red); }

/* Dropdown menu */
.primary-nav .dropdown-nav {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-top: 3px solid var(--brand-red);
	border-radius: 0 0 var(--radius) var(--radius);
	min-width: 220px;
	padding: 8px 0;
	margin: 0;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
	list-style: none;
	z-index: 50;
}
.primary-nav .nav-item:hover > .dropdown-nav,
.primary-nav .nav-item:focus-within > .dropdown-nav { display: block; }
.primary-nav .dropdown-nav .nav-item { display: block; }
.primary-nav .dropdown-nav .nav-link {
	display: block;
	padding: 9px 22px;
	color: var(--brand-ink);
	font-family: var(--sans);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	border-bottom: 0;
	margin-bottom: 0;
}
.primary-nav .dropdown-nav .nav-link:hover {
	color: var(--brand-red);
	background: var(--brand-paper);
	border-bottom: 0;
}

/* Hamburger toggle (mobile only) */
.site-header__toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	padding: 6px 10px;
	cursor: pointer;
}
.site-header__toggle .navbar-toggler-icon {
	display: inline-block;
	width: 22px;
	height: 22px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' stroke='%231a2b4a' stroke-width='2'%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cline x1='3' y1='12' x2='21' y2='12'/%3E%3Cline x1='3' y1='18' x2='21' y2='18'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* -------------------------------------------------------------------------
 * Mobile drawer
 * ----------------------------------------------------------------------- */
.mobile-drawer-overlay {
	position: fixed; inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0; pointer-events: none;
	transition: opacity 200ms ease;
	z-index: 998;
}
.mobile-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
	position: fixed; top: 0; right: 0; bottom: 0;
	width: min(360px, 92vw);
	background: #fff;
	border-left: 3px solid var(--brand-red);
	transform: translateX(100%);
	transition: transform 250ms ease;
	z-index: 999;
	overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 18px; border-bottom: 1px solid var(--brand-rule);
	background: var(--brand-paper);
}
.mobile-drawer__head a img { max-height: 36px; width: auto; }
.mobile-drawer__close {
	background: transparent; border: 0; color: var(--brand-navy);
	cursor: pointer; padding: 6px;
}
.mobile-drawer__nav { padding: 8px 0 24px; }
.mobile-drawer__top {
	display: block;
	padding: 12px 18px;
	color: var(--brand-navy) !important;
	font-family: var(--display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid var(--brand-rule);
}
.mobile-drawer__top.is-current { color: var(--brand-red) !important; }
.mobile-drawer__sub { background: var(--brand-paper); padding: 4px 0; }
.mobile-drawer__sub a {
	display: block;
	padding: 8px 32px;
	color: var(--brand-ink) !important;
	font-family: var(--sans);
	font-size: 14px;
	text-decoration: none;
	border-bottom: 1px solid rgba(216, 212, 204, 0.5);
}
.mobile-drawer__sub a.is-current { color: var(--brand-red) !important; }
.mobile-drawer__cta {
	display: block;
	margin: 16px 18px 0;
	padding: 12px 16px;
	background: var(--brand-red) !important;
	color: #fff !important;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	border-radius: var(--radius);
}
.mobile-drawer__cta:hover { background: var(--brand-red-dark) !important; color: #fff !important; }
.mobile-drawer__social {
	display: flex; justify-content: center; gap: 18px;
	padding: 16px 0; margin-top: 20px;
	border-top: 1px solid var(--brand-rule);
}
.mobile-drawer__social a {
	color: var(--brand-navy) !important;
	font-size: 16px;
	text-decoration: none;
}
.mobile-drawer__social a:hover { color: var(--brand-red) !important; }

/* -------------------------------------------------------------------------
 * Page header (interior)
 * ----------------------------------------------------------------------- */
.page-header {
	background: var(--brand-paper);
	border-bottom: 1px solid var(--brand-rule);
	padding: 28px 0;
}
.page-header .breadcrumbs {
	font-family: var(--sans);
	font-size: var(--fs-small);
	color: var(--brand-mute);
	margin-bottom: 6px;
}
.page-header .breadcrumbs a { color: var(--brand-mute); }
.page-header .breadcrumbs a:hover { color: var(--brand-red); }
.page-header__title {
	font-family: var(--serif);
	font-size: var(--fs-h1);
	color: var(--brand-navy);
	margin: 0;
}

/* -------------------------------------------------------------------------
 * Main content + sidebar layout
 * ----------------------------------------------------------------------- */
.site-main { padding-top: 32px; padding-bottom: 56px; }
.layout-with-sidebar {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
}
@media (max-width: 991px) {
	.layout-with-sidebar { grid-template-columns: 1fr; gap: 32px; }
}

/* -------------------------------------------------------------------------
 * Sidebar
 * ----------------------------------------------------------------------- */
.site-sidebar { font-family: var(--sans); }
.site-sidebar .sidebar-section {
	background: var(--brand-paper);
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	padding: 20px;
	margin-bottom: 24px;
}
.site-sidebar .sidebar-heading {
	display: block;
	font-family: var(--serif);
	font-size: var(--fs-h3);
	color: var(--brand-navy);
	font-weight: 700;
	margin-bottom: 14px;
}
.site-sidebar #findYourRep form { display: flex; flex-direction: column; gap: 10px; }
.site-sidebar #findYourRep .form-control {
	background: #fff;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	padding: 10px 12px;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--brand-ink);
}
.site-sidebar #findYourRep .form-control:focus {
	outline: 0;
	border-color: var(--brand-red);
	box-shadow: 0 0 0 2px rgba(155, 28, 46, 0.15);
}
.site-sidebar #findYourRep .btn-primary {
	background: var(--brand-red) !important;
	border: 0 !important;
	border-radius: var(--radius) !important;
	color: #fff !important;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 10px 16px !important;
}
.site-sidebar #findYourRep .btn-primary:hover { background: var(--brand-red-dark) !important; }
.site-sidebar .rep-subheading {
	display: block;
	font-size: 13px;
	color: var(--brand-mute);
	margin: 12px 0 6px;
}
.site-sidebar #findYourRep > a {
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-red);
}
.site-sidebar #findYourRep > a i { margin-right: 4px; }
.site-sidebar #bills-resolutions .faq-question {
	display: block;
	font-family: var(--serif);
	font-size: 15px;
	font-weight: 700;
	color: var(--brand-ink);
	margin-top: 10px;
	line-height: 1.35;
}
.site-sidebar #bills-resolutions .faq-short-answer {
	display: block;
	font-size: 13px;
	color: var(--brand-mute);
	line-height: 1.5;
	margin: 4px 0;
}
.site-sidebar #bills-resolutions .tag {
	display: inline-block;
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-red);
	margin: 2px 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--brand-rule);
	width: 100%;
}

/* -------------------------------------------------------------------------
 * News archive (index.php / home.php) — horizontal post cards
 * ----------------------------------------------------------------------- */
article.post {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid var(--brand-rule);
}
article.post:first-child { padding-top: 0; }
@media (max-width: 575px) {
	article.post { grid-template-columns: 1fr; }
}
article.post .post-image {
	display: block;
	width: 100%;
	height: 140px;
	overflow: hidden;
	background: var(--brand-paper);
	border-radius: var(--radius);
}
article.post .post-image img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
article.post .post-title {
	font-family: var(--serif);
	font-size: var(--fs-h3);
	font-weight: 700;
	margin: 0 0 4px;
	line-height: 1.3;
}
article.post .post-title i { color: var(--brand-red); margin-right: 4px; font-size: 14px; }
article.post .post-title a { color: var(--brand-navy); }
article.post .post-title a:hover { color: var(--brand-red); }
article.post .post-date {
	font-family: var(--display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-gold);
	margin-bottom: 8px;
}
article.post .post-summary {
	font-size: 14px;
	color: var(--brand-ink);
	line-height: 1.55;
}
article.post .post-tags {
	list-style: none;
	padding: 0; margin: 12px 0 0;
	display: flex; flex-wrap: wrap; gap: 6px;
}
article.post .post-tags a {
	display: inline-block;
	padding: 4px 10px;
	background: var(--brand-paper);
	border: 1px solid var(--brand-rule);
	border-radius: 999px;
	font-size: 12px;
	color: var(--brand-mute);
}
article.post .post-tags a:hover {
	background: var(--brand-red);
	border-color: var(--brand-red);
	color: #fff;
}

/* Pagination */
.pagination, .nav-links {
	margin-top: 32px;
	font-family: var(--display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.pagination .page-numbers {
	display: inline-block;
	padding: 8px 12px;
	margin: 0 2px;
	color: var(--brand-navy);
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	background: #fff;
	text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--brand-red);
	border-color: var(--brand-red);
	color: #fff !important;
}

/* -------------------------------------------------------------------------
 * Footer
 * ----------------------------------------------------------------------- */
#footer {
	background: var(--brand-navy);
	color: #fff;
	margin-top: 0;
	border-top: 4px solid var(--brand-red);
}
#footer > .row.no-gutters,
#footer .row.no-gutters { display: block !important; margin: 0 !important; }
#footer-container {
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: var(--container-max) !important;
	flex: none !important;
	margin: 0 auto !important;
	padding: 56px 28px 28px !important;
	float: none !important;
}
#footer .row.align-items-center {
	margin: 0 !important;
	row-gap: 32px;
}
#footer .row.align-items-center > [class*="col-"] {
	min-width: 0;
	padding: 0 !important;
}
@media (min-width: 992px) {
	#footer .row.align-items-center {
		display: grid !important;
		grid-template-columns: 1.4fr 1fr 1fr 1.7fr;
		gap: 36px !important;
		align-items: start !important;
	}
	#footer .row.align-items-center > [class*="col-"] {
		flex: none !important;
		max-width: none !important;
		width: 100% !important;
		min-width: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
	}
}
#footer .brand { text-align: left !important; }
#footer .footer-brand img { max-height: 56px; width: auto; filter: brightness(1.05); }
#footer .footer-brand-link {
	display: block;
	color: #fff !important;
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	margin: 8px 0 12px;
	text-decoration: none;
}
#footer .brand p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.55;
	margin: 0;
}
#footer .renav { padding-left: 0 !important; }
#footer .renav ul { list-style: none; padding: 0; margin: 0; }
#footer .renav li { margin-bottom: 6px; }
#footer .renav a {
	color: rgba(255, 255, 255, 0.85) !important;
	font-family: var(--sans);
	font-size: 13px;
	text-decoration: none;
}
#footer .renav a:hover { color: var(--brand-gold) !important; }

#footer .rep .rep-heading {
	display: block;
	color: #fff !important;
	font-family: var(--display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
#footer .rep .form-inline { display: flex; flex-wrap: wrap; gap: 8px; }
#footer .rep .form-control {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	border-radius: var(--radius) !important;
	color: #fff !important;
	font-family: var(--sans);
	font-size: 13px;
	padding: 8px 12px !important;
	flex: 1 1 130px;
	min-width: 0;
	margin-bottom: 0 !important;
	margin-right: 0 !important;
}
#footer .rep .form-control::placeholder { color: rgba(255, 255, 255, 0.6); }
#footer .rep .form-control:focus {
	outline: 0;
	border-color: var(--brand-gold) !important;
	background: rgba(255, 255, 255, 0.12) !important;
}
#footer .rep .btn-primary {
	background: var(--brand-red) !important;
	border: 0 !important;
	border-radius: var(--radius) !important;
	color: #fff !important;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 8px 14px !important;
	margin-bottom: 0 !important;
}
#footer .rep .btn-primary:hover { background: #fff !important; color: var(--brand-navy) !important; }
#footer .rep > a {
	display: inline-block;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.85) !important;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
}
#footer .rep > a:hover { color: var(--brand-gold) !important; }
#footer hr {
	border-color: rgba(255, 255, 255, 0.15) !important;
	margin: 18px 0;
}
#footer #footer-social {
	display: inline-flex;
	gap: 16px;
	margin-bottom: 12px;
}
#footer #footer-social a {
	color: rgba(255, 255, 255, 0.85) !important;
	font-size: 17px;
	text-decoration: none;
}
#footer #footer-social a:hover { color: var(--brand-gold) !important; }
#footer .rep p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 12px;
	margin: 8px 0 0;
}

/* -------------------------------------------------------------------------
 * Buttons / utility
 * ----------------------------------------------------------------------- */
.btn-primary {
	background: var(--brand-red) !important;
	border: 0 !important;
	border-radius: var(--radius) !important;
	color: #fff !important;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 10px 16px !important;
}
.btn-primary:hover { background: var(--brand-red-dark) !important; }

.btn-default, .btn-outline {
	background: transparent !important;
	border: 1px solid var(--brand-navy) !important;
	border-radius: var(--radius) !important;
	color: var(--brand-navy) !important;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 8px 14px !important;
}
.btn-default:hover, .btn-outline:hover {
	background: var(--brand-red) !important;
	border-color: var(--brand-red) !important;
	color: #fff !important;
}

/* =========================================================================
 * HOMEPAGE
 * ========================================================================= */

/* -------------------------------------------------------------------------
 * Hero — preserved video + alert + Find Rep + Today's Meetings
 * ----------------------------------------------------------------------- */
#slider {
	position: relative;
	background: var(--brand-paper);
	overflow: hidden;
}
#slider #unslider,
#slider #unslider ul,
#slider #unslider .slide {
	position: absolute;
	inset: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	background-size: cover !important;
	background-position: center !important;
}
#slider #hero {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
#slider #bgvideo {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 0;
	object-fit: cover;
}
#slider .slide-screen,
#slider .slide-layer1,
#slider .slide-layer2 {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 43, 74, 0.55) 0%, rgba(26, 43, 74, 0.35) 60%, rgba(122, 22, 35, 0.45) 100%);
	z-index: 1;
}
#slider .slide-layer1, #slider .slide-layer2 { background: transparent; }

#slider-overlay {
	position: relative;
	z-index: 2;
	max-width: 1320px;
	margin: 0 auto;
	padding: 64px 28px 80px;
}
#slider-overlay > .container-fluid { padding: 0 !important; max-width: none; }
#slider-overlay > .container-fluid > .row { margin: 0 !important; gap: 28px 0; }

#twoCards,
#todaysEvents {
	background: transparent !important;
	padding: 0 !important;
}
@media (min-width: 992px) {
	#slider-overlay > .container-fluid > .row { display: flex; gap: 28px; }
	#twoCards, #todaysEvents { padding: 0 !important; flex: 1 1 0; max-width: calc(50% - 14px); }
}

/* Alert overlay card on hero */
#alertBox {
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-left: 4px solid var(--brand-red);
	border-radius: var(--radius);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	margin-bottom: 16px;
	padding: 0 !important;
}
#alertBox .alert-body { background: transparent !important; margin: 0 !important; }
#alertBox .alert-body-container {
	padding: 16px 22px !important;
	background: #ffffff !important;
}
#alertBox .alert-heading {
	display: block;
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-red);
	margin-bottom: 6px;
}
#alertBox .alert-heading i { margin-right: 6px; }
#alertBox .alert-content {
	font-family: var(--serif);
	font-size: 16px;
	color: var(--brand-ink);
	line-height: 1.45;
}
#alertBox .alert-footer {
	background: var(--brand-paper);
	border-top: 1px solid var(--brand-rule);
	margin: 0 !important;
}
#alertBox .alert-footer-more a {
	display: block;
	padding: 10px 22px;
	color: var(--brand-red);
	font-family: var(--display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
}
#alertBox .alert-footer-more a:hover { color: var(--brand-red-dark); }

/* Find Your Rep card on hero */
#findMyRep {
	background: #ffffff !important;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	padding: 0 !important;
	overflow: hidden;
}
#findMyRep .rep-body { background: transparent !important; margin: 0 !important; }
#findMyRep .rep-body-container {
	padding: 24px 24px 20px !important;
	background: #ffffff !important;
}
#findMyRep .rep-heading {
	display: block;
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.005em;
	color: var(--brand-navy);
	margin-bottom: 14px;
}
#findMyRep .form-inline {
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
}
#findMyRep .form-control,
#findMyRep input[type="text"] {
	background: #ffffff !important;
	border: 1px solid var(--brand-rule) !important;
	border-radius: var(--radius) !important;
	padding: 10px 12px !important;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--brand-ink);
	box-shadow: none !important;
	flex: 1 1 180px;
	min-width: 160px;
	margin: 0 !important;
}
#findMyRep .form-control:focus {
	border-color: var(--brand-red) !important;
	outline: 0;
	box-shadow: 0 0 0 2px rgba(155, 28, 46, 0.15) !important;
}
#findMyRep .btn-primary,
#findMyRep button[type="submit"] {
	background: var(--brand-red) !important;
	border: 0 !important;
	border-radius: var(--radius) !important;
	color: #ffffff !important;
	padding: 10px 18px !important;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
#findMyRep .btn-primary:hover { background: var(--brand-red-dark) !important; }
#findMyRep .rep-footer {
	background: var(--brand-paper);
	border-top: 1px solid var(--brand-rule);
	margin: 0 !important;
	display: flex !important;
	flex-wrap: wrap;
	align-items: center !important;
}
#findMyRep .rep-footer-callout {
	padding: 12px 22px !important;
	font-family: var(--sans);
	font-size: 13px;
	color: var(--brand-mute);
	flex: 1 1 60%;
}
#findMyRep .rep-footer-districts {
	padding: 12px 22px !important;
	flex: 1 1 auto;
	text-align: right !important;
}
#findMyRep .rep-footer-districts a {
	color: var(--brand-red);
	font-family: var(--display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}
#findMyRep .rep-footer-districts a:hover { color: var(--brand-red-dark); }
#findMyRep .rep-footer-districts a i { margin-right: 5px; }

/* Today's Meetings card on hero */
#todaysEvents {
	display: flex;
	flex-direction: column;
}
#todaysEvents #scroll-container {
	background: var(--brand-navy) !important;
	border-radius: var(--radius) var(--radius) 0 0 !important;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	padding: 26px 24px 18px !important;
	flex: 1 1 auto;
}
#todaysEvents .scrollbar { background: transparent !important; height: auto !important; max-height: 320px; overflow-y: auto; }
#todaysEvents #scrolling-content { padding: 0 !important; color: rgba(255, 255, 255, 0.92); }
#todaysEvents .events-heading {
	display: block;
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.005em;
	color: #ffffff;
	margin: 0 0 4px;
}
#todaysEvents .events-subheading {
	display: block;
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--brand-gold);
	margin: 0 0 16px;
}
#todaysEvents .event {
	display: flex !important;
	gap: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	padding: 12px 0 !important;
	margin: 0 !important;
}
#todaysEvents .event:last-child { border-bottom: 0; }
#todaysEvents .event .details { padding-right: 0 !important; flex: 1 1 auto; }
#todaysEvents .event-title {
	display: block;
	font-family: var(--serif);
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.35;
	margin-bottom: 4px;
}
#todaysEvents .event-room,
#todaysEvents .event-location {
	display: block;
	font-family: var(--sans);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.45;
}
#todaysEvents .event-location i { margin-right: 5px; color: var(--brand-gold); }
#todaysEvents .event-time {
	display: block;
	font-family: var(--display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand-gold);
	margin-top: 4px;
}
#todaysEvents .event .video {
	flex: 0 0 auto;
	text-align: center;
	display: flex;
	align-items: center;
	padding: 0 !important;
}
#todaysEvents .event .video .btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.4) !important;
	border-radius: var(--radius) !important;
	color: #ffffff !important;
	font-family: var(--display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 6px 10px !important;
	white-space: nowrap;
}
#todaysEvents .event .video .btn:hover {
	background: var(--brand-gold) !important;
	border-color: var(--brand-gold) !important;
	color: var(--brand-navy) !important;
}
#todaysEvents #scrolling-content h6,
#todaysEvents #scrolling-content p,
#todaysEvents #scrolling-content ul li a {
	color: #ffffff !important;
	font-family: var(--sans) !important;
}
#todaysEvents #scrolling-content h6 { font-family: var(--serif) !important; font-size: 16px !important; }
#todaysEvents #scrolling-content ul li { padding: 4px 0; }
#todaysEvents #scrolling-content ul li a:hover { color: var(--brand-gold) !important; }
#todaysEvents .event-footer {
	background: var(--brand-red-dark);
	border-radius: 0 0 var(--radius) var(--radius);
	margin: 0 !important;
	display: flex !important;
	flex-wrap: wrap;
	align-items: center !important;
}
#todaysEvents .event-footer-callout {
	padding: 12px 22px !important;
	color: rgba(255, 255, 255, 0.9);
	font-family: var(--sans);
	font-size: 13px;
	flex: 1 1 60%;
	text-align: left !important;
}
#todaysEvents .event-footer-districts {
	padding: 12px 22px !important;
	flex: 1 1 auto;
	text-align: right !important;
}
#todaysEvents .event-footer-districts a {
	color: var(--brand-gold);
	font-family: var(--display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}
#todaysEvents .event-footer-districts a:hover { color: #ffffff; }
#todaysEvents .event-footer-districts a i { margin-right: 5px; }

/* -------------------------------------------------------------------------
 * Intro / Featured — "I want to get involved"
 * ----------------------------------------------------------------------- */
#intro {
	background: #ffffff;
	padding: 72px 0;
	border-bottom: 1px solid var(--brand-rule);
}
#intro .intro-heading {
	display: block;
	font-family: var(--serif);
	font-size: clamp(24px, 3vw, 30px);
	font-weight: 700;
	color: var(--brand-navy);
	text-align: center;
	margin: 0 0 6px;
}
#intro .intro-sub {
	font-family: var(--sans);
	font-size: 16px;
	color: var(--brand-mute);
	text-align: center;
	margin-bottom: 36px;
}
#intro .intro-sub em { color: var(--brand-red); font-style: italic; }

/* Force a grid layout on the BS rows so cards have explicit gutters */
#intro .row.align-items-stretch {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 0;
}
#intro .row.align-items-stretch > [class*="col-"] {
	max-width: none;
	flex: none;
	padding: 0;
	margin: 0;
}
#intro .row.align-items-stretch > .col-12.col-md-6.col-lg-6 {
	grid-column: span 1;
}
@media (min-width: 992px) {
	/* Last 2 cards (col-md-6 col-lg-6) span half each but here we want them to share two columns of the 3-col grid */
	#intro .row.align-items-stretch > .col-12.col-md-6.col-lg-6 {
		grid-column: auto / span 1;
	}
	/* Promote rows: first 3 fill row, last 2 align under */
	#intro .row.align-items-stretch { grid-template-columns: repeat(6, minmax(0, 1fr)); }
	#intro .row.align-items-stretch > .col-12.col-md-6.col-lg-4 { grid-column: span 2; }
	#intro .row.align-items-stretch > .col-12.col-md-6.col-lg-6 { grid-column: span 3; }
}
@media (max-width: 991px) {
	#intro .row.align-items-stretch { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
	#intro .row.align-items-stretch { grid-template-columns: 1fr; }
}

#intro .feature {
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	padding: 22px;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: border-color 150ms ease, box-shadow 150ms ease;
}
#intro .feature:hover { border-color: var(--brand-red); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06); }
#intro .feature-photo {
	display: block;
	margin: -22px -22px 12px;
	overflow: hidden;
	border-radius: var(--radius) var(--radius) 0 0;
	aspect-ratio: 16 / 10;
	background: var(--brand-paper);
}
#intro .feature-photo a,
#intro .feature-photo img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0 !important;
}
#intro .feature-photo img { object-fit: cover; }
#intro .feature-link {
	color: var(--brand-navy);
	font-family: var(--serif);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
}
#intro .feature-link:hover { color: var(--brand-red); }
#intro .feature-date {
	font-family: var(--display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand-gold);
}
#intro .feature-desc,
#intro .feature-answer {
	font-family: var(--sans);
	font-size: 14px;
	color: var(--brand-ink);
	line-height: 1.55;
}
#intro .feature-desc p { margin: 0; }
#intro .feature-heading,
#intro .feature-question {
	font-family: var(--serif);
	font-size: 17px;
	font-weight: 700;
	color: var(--brand-navy);
	line-height: 1.3;
}
#intro .feature-continued {
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-red);
}

#intro #intro-buttons {
	margin: 36px 0 0;
	gap: 12px 0;
}
#intro #intro-buttons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: #ffffff;
	color: var(--brand-navy);
	border: 1px solid var(--brand-navy);
	border-radius: var(--radius);
	padding: 12px 18px;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
#intro #intro-buttons a:hover {
	background: var(--brand-red);
	border-color: var(--brand-red);
	color: #ffffff;
}

/* -------------------------------------------------------------------------
 * Members + Committees overlay cards
 * ----------------------------------------------------------------------- */
.members-committees {
	background: var(--brand-paper);
	padding: 72px 0;
}
.members-committees .content-photo {
	position: relative;
	overflow: hidden;
	background: var(--brand-navy);
	border-radius: var(--radius);
}
.members-committees .content-photo img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 400ms ease;
}
.members-committees .content-photo:hover img { transform: scale(1.03); }
.members-committees .content-overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	background: linear-gradient(180deg, rgba(20, 17, 13, 0) 0%, rgba(26, 43, 74, 0.92) 100%);
	padding-top: 80px;
}
.members-committees .content-overlay a {
	color: #ffffff;
	display: block;
	text-decoration: none;
}
.members-committees .image-heading {
	display: block;
	font-family: var(--serif);
	font-size: 26px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.005em;
	margin-bottom: 4px;
}
.members-committees .content-overlay p {
	color: rgba(255, 255, 255, 0.9);
	font-family: var(--sans);
	font-size: 14px;
	margin: 0 0 8px;
}
.members-committees .image-subheading {
	display: inline-block;
	color: var(--brand-gold);
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* -------------------------------------------------------------------------
 * Programs grid + Video Library
 * ----------------------------------------------------------------------- */
.programs-section {
	background: #ffffff;
	padding: 72px 0;
	border-top: 1px solid var(--brand-rule);
	border-bottom: 1px solid var(--brand-rule);
}
.programs-section .programs-heading,
.programs-section .videos-heading {
	display: block;
	font-family: var(--serif);
	font-size: clamp(22px, 2.5vw, 26px);
	font-weight: 700;
	color: var(--brand-navy);
	letter-spacing: -0.005em;
	margin-bottom: 24px;
}
.programs-section .row.align-items-center > [class*="col-"] {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.programs-section .row.align-items-center > [class*="col-"] > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 180px;
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	padding: 18px;
	overflow: hidden;
}
.programs-section .row.align-items-center > [class*="col-"] > a img,
.programs-section img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 0 !important;
	display: block;
}
.programs-section .videos > a:not(.videos-link) {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--brand-paper);
}
.programs-section .videos > a:not(.videos-link) img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0 !important;
}
.programs-section p {
	font-family: var(--sans);
	font-size: 14px;
	color: var(--brand-ink);
	line-height: 1.55;
	margin-top: 12px;
}
.programs-section p strong {
	display: inline-block;
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 700;
	color: var(--brand-navy);
	margin-bottom: 4px;
}
.programs-section .videos { padding-left: 0; }
@media (min-width: 992px) {
	.programs-section .videos { padding-left: 32px !important; border-left: 1px solid var(--brand-rule); }
}
.programs-section .videos-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	padding: 10px 18px;
	background: var(--brand-red);
	color: #ffffff !important;
	border: 0;
	border-radius: var(--radius);
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: background 150ms ease;
}
.programs-section .videos-link:hover {
	background: var(--brand-red-dark);
	color: #ffffff !important;
}

/* -------------------------------------------------------------------------
 * Interact section (twitter + facebook)
 * ----------------------------------------------------------------------- */
.interact-section {
	background: var(--brand-paper);
	padding: 64px 0;
}
.interact-section .twitter-widget-block {
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-top: 3px solid var(--brand-red);
	border-radius: var(--radius);
	padding: 24px;
	box-shadow: var(--shadow-card);
}
.interact-section .sidebar-heading {
	display: block;
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--brand-navy);
	margin-bottom: 14px;
}
.interact-section p {
	color: var(--brand-ink);
	font-family: var(--sans);
	font-size: 14px;
	line-height: 1.55;
}

/* =========================================================================
 * Single post / page body content (prose)
 * ----------------------------------------------------------------------- */
.page-header__sub {
	font-family: var(--sans);
	font-size: 14px;
	color: var(--brand-mute);
	margin: 8px 0 0;
}
.page-header__sub strong { color: var(--brand-ink); font-weight: 600; }
.page-header__sub a { color: var(--brand-red); }

article .prose,
.prose-arhouse {
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.7;
	color: var(--brand-ink);
}
.prose-arhouse h1, .prose-arhouse h2, .prose-arhouse h3, .prose-arhouse h4 {
	font-family: var(--serif);
	color: var(--brand-navy);
	font-weight: 700;
	line-height: 1.25;
	margin: 1.75rem 0 0.5rem;
}
.prose-arhouse h2 { font-size: 22px; }
.prose-arhouse h3 { font-size: 18px; }
.prose-arhouse h4 { font-size: 16px; }
.prose-arhouse p { margin: 0 0 1rem; }
.prose-arhouse a { color: var(--brand-red); text-decoration: underline; text-underline-offset: 2px; }
.prose-arhouse a:hover { color: var(--brand-red-dark); }
.prose-arhouse ul, .prose-arhouse ol { padding-left: 1.5rem; margin: 0 0 1rem; }
.prose-arhouse li { margin-bottom: 0.4rem; }
.prose-arhouse img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 0.5rem 0; }
.prose-arhouse blockquote {
	border-left: 3px solid var(--brand-red);
	padding: 4px 0 4px 18px;
	color: var(--brand-mute);
	font-style: italic;
	margin: 1.25rem 0;
}
.prose-arhouse hr { border: 0; border-top: 1px solid var(--brand-rule); margin: 2rem 0; }
.prose-arhouse table {
	width: 100%;
	border-collapse: collapse;
	margin: 1rem 0;
	font-size: 14px;
}
.prose-arhouse th, .prose-arhouse td {
	padding: 8px 12px;
	border: 1px solid var(--brand-rule);
	text-align: left;
}
.prose-arhouse th {
	background: var(--brand-paper);
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--brand-navy);
}

/* Tag chips on single post */
article .btn-secondary {
	display: inline-block;
	padding: 5px 12px !important;
	background: var(--brand-paper);
	border: 1px solid var(--brand-rule);
	border-radius: 999px;
	color: var(--brand-mute) !important;
	font-family: var(--sans);
	font-size: 12px !important;
	font-weight: 500;
	text-decoration: none !important;
	transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
article .btn-secondary:hover {
	background: var(--brand-red);
	border-color: var(--brand-red);
	color: #ffffff !important;
}

/* General fallback prose for any .site-main paragraph */
.site-main p,
.site-main li,
.site-main blockquote {
	font-family: var(--sans);
	font-size: var(--fs-body);
	line-height: 1.65;
}

/* =========================================================================
 * EVENT LIST (archive-event.php, page-events.php)
 * ========================================================================= */
.event-list { margin: 0; padding: 0; list-style: none; }
.event-item {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 22px;
	padding: 18px 0;
	border-bottom: 1px solid var(--brand-rule);
	align-items: start;
}
.event-item:first-child { padding-top: 0; }
.event-item__date {
	background: var(--brand-paper);
	border: 1px solid var(--brand-rule);
	border-top: 3px solid var(--brand-red);
	border-radius: var(--radius);
	padding: 10px 8px 12px;
	text-align: center;
	font-family: var(--serif);
	color: var(--brand-navy);
}
.event-item__date-month {
	display: block;
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-red);
}
.event-item__date-day {
	display: block;
	font-family: var(--serif);
	font-size: 28px;
	font-weight: 700;
	color: var(--brand-navy);
	line-height: 1;
	margin: 2px 0;
}
.event-item__date-year {
	display: block;
	font-family: var(--display);
	font-size: 11px;
	font-weight: 600;
	color: var(--brand-mute);
}
.event-item__title {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 700;
	margin: 2px 0 6px;
	line-height: 1.3;
}
.event-item__title a { color: var(--brand-navy); text-decoration: none; }
.event-item__title a:hover { color: var(--brand-red); }
.event-item__meta {
	font-family: var(--sans);
	font-size: 13px;
	color: var(--brand-mute);
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
}
.event-item__meta i { color: var(--brand-red); margin-right: 5px; }

/* =========================================================================
 * LEGISLATOR + COMMITTEE CARDS (archive-legislator.php, single-committee.php)
 * ========================================================================= */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}
.rep-card {
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
	text-decoration: none;
	color: inherit;
}
.rep-card:hover {
	border-color: var(--brand-red);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.rep-card.party-republican { border-top: 3px solid var(--brand-red); }
.rep-card.party-democrat { border-top: 3px solid #1f4ea0; }
.rep-card.party-independent { border-top: 3px solid var(--brand-gold); }
.rep-card__photo {
	display: block;
	width: 100%;
	/* Match the source head-and-shoulders framing. The imported headshots are
	   ~2:3 portraits; a 2/3 box keeps the full crop (no tight face zoom), and
	   object-position:top protects the head on any minor variance. */
	aspect-ratio: 2 / 3;
	object-fit: cover;
	object-position: top center;
	background: var(--brand-paper);
}
/* Non-link archive cards (Speaker Archive) — no hover affordance. */
.rep-card--static { cursor: default; }
.rep-card--static:hover { border-color: var(--brand-rule); box-shadow: none; transform: none; }
.rep-card--static:hover .rep-card__name { color: var(--brand-navy); }
/* Political affiliation / role line — restored prominently under the name. */
.rep-card__party {
	display: block;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	color: var(--brand-red);
	letter-spacing: 0.02em;
	margin-bottom: 3px;
}
.rep-card.party-democrat .rep-card__party { color: #1f4ea0; }
.rep-card.party-independent .rep-card__party { color: var(--brand-gold); }
.rep-card__body {
	padding: 12px 14px 14px !important;
	background: #ffffff !important;
	border: 0 !important;
	text-align: left !important;
}
.rep-card__name {
	display: block;
	font-family: var(--serif);
	font-size: 16px;
	font-weight: 700;
	color: var(--brand-navy);
	line-height: 1.25;
	margin-bottom: 4px;
	text-decoration: none;
}
.rep-card:hover .rep-card__name { color: var(--brand-red); }
.rep-card__meta {
	font-family: var(--display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand-mute);
}
.rep-card__meta strong { color: var(--brand-ink); }

/* Legislator filter form */
.legislator-filters {
	background: var(--brand-paper);
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	padding: 16px;
	margin-bottom: 24px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.legislator-filters .form-control {
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	padding: 8px 12px;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--brand-ink);
	min-width: 160px;
}

/* =========================================================================
 * REPRESENTATIVE DETAIL (single-legislator.php — district landing page)
 * ========================================================================= */
.rep-detail {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
	margin-bottom: 24px;
	align-items: start;
}
.rep-detail--lg { gap: 36px; }
@media (max-width: 767px) {
	.rep-detail { grid-template-columns: 1fr; gap: 22px; }
}
.rep-detail__col-photo { width: 100%; min-width: 0; }
.rep-detail__col-body { min-width: 0; }
.rep-detail__photo {
	width: 100%;
	max-width: 280px;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--brand-paper);
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
}
@media (max-width: 767px) {
	.rep-detail__photo { max-width: 220px; margin: 0 auto; }
}
.rep-detail__photo .rep-photo-img,
.rep-detail__photo img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	border-radius: 0 !important;
}
.rep-detail__photo-dl {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	color: var(--brand-red);
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
}
.rep-detail__photo-dl:hover { color: var(--brand-red-dark); }
.rep-detail__photo-dl i { font-size: 12px; }

.rep-detail__contact {
	font-family: var(--sans);
	font-size: 14px;
	color: var(--brand-ink);
	background: var(--brand-paper);
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	padding: 14px 18px;
	margin: 18px 0 16px;
}
.rep-detail__contact dt {
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand-mute);
	margin-top: 10px;
}
.rep-detail__contact dt:first-child { margin-top: 0; }
.rep-detail__contact dd {
	margin: 2px 0 0;
	color: var(--brand-ink);
	line-height: 1.45;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.rep-detail__contact a {
	color: var(--brand-red);
	text-decoration: none;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.rep-detail__contact a:hover { color: var(--brand-red-dark); text-decoration: underline; }

.rep-detail__social {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}
.rep-detail__social a {
	color: var(--brand-navy);
	font-size: 16px;
	text-decoration: none;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	background: #fff;
	transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}
.rep-detail__social a:hover {
	background: var(--brand-red);
	border-color: var(--brand-red);
	color: #fff;
}
.rep-detail__arleg {
	width: auto !important;
	padding: 0 12px;
	gap: 5px;
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.rep-detail__section { margin-bottom: 28px; }
.rep-detail__heading {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 700;
	color: var(--brand-red);
	margin: 0 0 10px;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--brand-red);
}
.rep-detail__facts {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 6px 16px;
	margin: 0;
}
@media (max-width: 575px) {
	.rep-detail__facts { grid-template-columns: 1fr; gap: 2px 0; }
	.rep-detail__facts dt { margin-top: 8px; }
}
.rep-detail__facts dt {
	font-family: var(--display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand-mute);
	margin: 0;
	padding-top: 2px;
}
.rep-detail__facts dd {
	margin: 0;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--brand-ink);
	line-height: 1.5;
}
.rep-detail__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.rep-detail__list li {
	padding: 6px 0;
	border-bottom: 1px solid var(--brand-rule);
	font-family: var(--sans);
	font-size: 14px;
}
.rep-detail__list a { color: var(--brand-navy); text-decoration: none; }
.rep-detail__list a:hover { color: var(--brand-red); }

.rep-detail__news {
	margin: 0;
	padding: 0;
	list-style: none;
}
.rep-detail__news li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	padding: 10px 0;
	border-bottom: 1px solid var(--brand-rule);
}
.rep-detail__news-title {
	flex: 1 1 auto;
	font-family: var(--serif);
	font-size: 15px;
	font-weight: 700;
	color: var(--brand-navy);
	text-decoration: none;
	line-height: 1.35;
}
.rep-detail__news-title:hover { color: var(--brand-red); }
.rep-detail__news-date {
	font-family: var(--display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-gold);
	flex: 0 0 auto;
}

/* =========================================================================
 * GENERIC CARD (archive-program.php, single-program.php)
 * ========================================================================= */
.card {
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: border-color 150ms ease, box-shadow 150ms ease;
}
.card:hover {
	border-color: var(--brand-red);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.card__media { display: block; overflow: hidden; }
.card__media img { width: 100%; height: auto; display: block; transition: transform 400ms ease; }
.card:hover .card__media img { transform: scale(1.03); }
.card__body { padding: 18px 18px 14px; flex: 1 1 auto; }
.card__title {
	font-family: var(--serif);
	font-size: 18px;
	font-weight: 700;
	color: var(--brand-navy);
	margin: 0 0 6px;
	line-height: 1.3;
}
.card__title a { color: var(--brand-navy); text-decoration: none; }
.card__title a:hover { color: var(--brand-red); }
.card__excerpt {
	font-family: var(--sans);
	font-size: 14px;
	color: var(--brand-ink);
	line-height: 1.55;
}
.card__footer {
	padding: 12px 18px;
	border-top: 1px solid var(--brand-rule);
	background: var(--brand-paper);
	font-family: var(--display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.card__footer a { color: var(--brand-red); text-decoration: none; }
.card__footer a:hover { color: var(--brand-red-dark); }

/* =========================================================================
 * ACCORDION (page-faqs.php, single-program.php)
 * ========================================================================= */
.accordion-section {
	margin-bottom: 32px;
}
.accordion-section > h2,
.accordion-section > h3 {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 700;
	color: var(--brand-red);
	margin: 0 0 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--brand-red);
}
.accordion-item {
	border-bottom: 1px solid var(--brand-rule);
}
.accordion-item summary,
.accordion-item .question {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	cursor: pointer;
	color: var(--brand-ink);
	font-family: var(--sans);
	font-size: 15px;
	font-weight: 500;
	list-style: none;
	user-select: none;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::before {
	content: '\f0da';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: var(--brand-red);
	font-size: 12px;
	transition: transform 150ms ease;
	display: inline-block;
}
.accordion-item[open] summary::before { transform: rotate(90deg); }
.accordion-item summary:hover { color: var(--brand-red); }
.accordion-item .answer {
	padding: 0 0 16px 18px;
}

/* =========================================================================
 * STAFF LIST (page → about/house-staff via page.php render_cpt)
 * ========================================================================= */
.staff-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
}
.staff-item {
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-left: 3px solid var(--brand-red);
	border-radius: var(--radius);
	padding: 14px 18px;
}
.staff-item__name {
	font-family: var(--serif);
	font-size: 17px;
	font-weight: 700;
	color: var(--brand-navy);
	line-height: 1.25;
}
.staff-item__title {
	font-family: var(--display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-mute);
	margin-top: 4px;
	margin-bottom: 10px;
}
.staff-item__contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-family: var(--sans);
	font-size: 13px;
	color: var(--brand-ink);
}
.staff-item__contact span { display: inline-flex; align-items: center; gap: 6px; }
.staff-item__contact i { color: var(--brand-red); width: 14px; text-align: center; font-size: 12px; }
.staff-item__contact a {
	color: var(--brand-ink);
	text-decoration: none;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.staff-item__contact a:hover { color: var(--brand-red); }
.staff-item__contact span { min-width: 0; }
.staff-item__contact small { color: var(--brand-mute); font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; }

/* =========================================================================
 * RESOURCES PAGE (page-resources.php / archive-resource.php)
 * ========================================================================= */
.resource-section { margin-bottom: 32px; }
.resource-section > h2 {
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 700;
	color: var(--brand-red);
	margin: 0 0 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--brand-red);
}
.resource-list { margin: 0; padding: 0; list-style: none; }
.resource-list li {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--brand-rule);
	font-family: var(--sans);
	font-size: 14px;
}
.resource-list li i {
	color: var(--brand-red);
	font-size: 18px;
	margin-top: 2px;
}
.resource-list li a {
	color: var(--brand-navy);
	font-family: var(--serif);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}
.resource-list li a:hover { color: var(--brand-red); }
.resource-list li small { display: block; color: var(--brand-mute); font-size: 13px; margin-top: 2px; }

/* =========================================================================
 * Watch Live + District Map page wrappers
 * ========================================================================= */
.iframe-shell {
	background: #000;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 540px;
}
.iframe-shell iframe { display: block; width: 100%; min-height: 540px; border: 0; }

.watch-live { max-width: 100%; }
.watch-live__search {
	background: var(--brand-paper);
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	padding: 22px 24px;
	margin-bottom: 16px;
}
.watch-live__search fieldset { border: 0; padding: 0; margin: 0; }
.watch-live__search .form-group { margin-bottom: 12px; }
.watch-live__search label {
	font-family: var(--display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--brand-navy);
}
.watch-live__search .form-control,
.watch-live__search input,
.watch-live__search select {
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	padding: 9px 12px;
	font-family: var(--sans);
	font-size: 14px;
	color: var(--brand-ink);
	width: 100%;
	box-shadow: none;
}
.watch-live__search .form-control:focus { outline: 0; border-color: var(--brand-red); box-shadow: 0 0 0 2px rgba(155,28,46,0.15); }
.watch-live__search #btnSearch {
	background: var(--brand-red);
	border: 0;
	border-radius: var(--radius);
	color: #fff;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 10px 22px;
	cursor: pointer;
}
.watch-live__search #btnSearch:hover { background: var(--brand-red-dark); }

.watch-live__results {
	background: #ffffff;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	margin-bottom: 16px;
	overflow: hidden;
}
.watch-live__results #listHeader {
	display: block;
	background: var(--brand-paper);
	padding: 10px 18px;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-navy);
	border-bottom: 1px solid var(--brand-rule);
}
.watch-live__results #divResult { padding: 16px 18px; min-height: 40px; font-family: var(--sans); font-size: 14px; color: var(--brand-mute); }
.watch-live__results #divResult:empty::after { content: "No search yet."; color: var(--brand-mute); }

.watch-live-iframe {
	display: block;
	width: 100%;
	min-height: 760px;
	height: 80vh;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	background: #fff;
	margin-top: 8px;
}
@media (max-width: 991px) {
	.watch-live-iframe { min-height: 600px; height: 70vh; }
	.watch-live__search { padding: 16px; }
}

/* District map container — preserve source rendering */
#map-canvas, #map, .district-map {
	width: 100%;
	height: 600px;
	border: 1px solid var(--brand-rule);
	border-radius: var(--radius);
	background: var(--brand-paper);
}
.site-main blockquote {
	border-left: 3px solid var(--brand-red);
	padding: 4px 0 4px 16px;
	color: var(--brand-mute);
	font-style: italic;
	margin: 1.5rem 0;
}
.site-main img { border-radius: var(--radius); }

/* -------------------------------------------------------------------------
 * Mobile adjustments (narrow viewport tweaks only)
 * ----------------------------------------------------------------------- */
@media (max-width: 1199px) {
	.primary-nav .nav-link { padding: 18px 22px; font-size: 14px; }
	.site-header__brand img { max-height: 78px; }
	.site-header__brand-inner { gap: 16px; padding: 16px 22px; }
	.site-header__aux .aux-btn { padding: 8px 12px; font-size: 12px; }
	.site-header__aux .aux-btn i { font-size: 12px; }
}
@media (max-width: 991px) {
	/* Hide the desktop social/aux block but keep the hamburger toggle visible */
	.site-header__brand-actions { gap: 0 !important; }
	.site-header__social,
	.site-header__divider,
	.site-header__aux { display: none !important; }
	.site-header__brand-actions { margin-left: auto; }
	.site-header__toggle { display: inline-flex !important; align-items: center; }
	.site-header__nav-band { display: none; }
	.site-header__brand-inner { padding: 14px 20px; gap: 12px; }
	.site-header__brand img { max-height: 56px; }

	/* Sidebar full width on mobile, cards no longer overflow */
	.layout-with-sidebar { gap: 24px; }
	.site-sidebar { margin-top: 8px; }

	/* Generic content safety: prevent any element from overflowing the viewport */
	.container, .container-fluid {
		max-width: 100% !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
		box-sizing: border-box !important;
	}
	.site-main, .page-header { box-sizing: border-box; }
	/* Force all media + embeds to respect parent width on mobile */
	article img, article iframe, article video, article embed,
	.prose-arhouse img, .prose-arhouse iframe, .prose-arhouse video, .prose-arhouse embed,
	.post-image img, .feature-photo img,
	#findMyRep img, #todaysEvents img,
	.members-committees img, .programs-section img, .interact-section img,
	.rep-detail img, .card img {
		max-width: 100% !important;
		height: auto !important;
		box-sizing: border-box;
	}
	img { max-width: 100%; height: auto; }
	/* Twitter timeline + iframes inside cards */
	.twitter-widget-block, .twitter-widget-block iframe { max-width: 100% !important; }

	/* Rep detail: stack photo above bio */
	.rep-detail { grid-template-columns: 1fr !important; gap: 18px !important; }
	.rep-detail__photo img,
	.rep-detail img { max-width: 220px; margin: 0 auto; }

	/* Single legislator photo (uses inline grid in template) */
	article > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }

	/* Hero on mobile — stack the cards */
	#slider-overlay { padding: 32px 16px 40px !important; }
	#slider-overlay > .container-fluid > .row { gap: 16px !important; }

	/* Card grids: tighter min for mobile */
	.card-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important; }

	/* Members + committees overlays — stack */
	.members-committees .row.no-gutters > [class*="col-"] { padding: 0 !important; }
}
@media (max-width: 767px) {
	#footer-container { padding: 40px 20px 20px !important; }
	/* IMPORTANT: only adjust top/bottom — .site-main is also a .container so we
	   must not reset its horizontal padding to 0 (would defeat the 16px from .container). */
	.site-main { padding-top: 24px; padding-bottom: 40px; }
	.page-header { padding-top: 22px; padding-bottom: 22px; }
	.site-header__brand img { max-height: 50px; }

	/* Article tighter */
	article .post,
	.event-item { grid-template-columns: 1fr !important; gap: 8px; }
	article .post .post-image { height: auto; max-height: 180px; }
	.event-item__date { width: 92px; }
}
@media (max-width: 480px) {
	.site-header__brand img { max-height: 44px; }
	.site-header__brand-inner { padding: 10px 14px; }
	.page-header__title { font-size: 22px; }
}
