:root {
	--navy-950: #07111f;
	--navy-900: #0b1729;
	--navy-800: #12233c;
	--slate-900: #182230;
	--slate-800: #273548;
	--slate-700: #344054;
	--slate-600: #475467;
	--slate-500: #667085;
	--slate-400: #98a2b3;
	--slate-300: #d0d5dd;
	--slate-200: #e4e7ec;
	--slate-100: #f2f4f7;
	--slate-50: #f8fafc;
	--white: #fff;
	--amber-700: #a85a0a;
	--amber-600: #c66a0a;
	--amber-500: #e58b21;
	--amber-100: #fef0c7;
	--amber-50: #fffaeb;
	--blue-700: #175cd3;
	--blue-100: #d1e9ff;
	--blue-50: #eff8ff;
	--green-700: #067647;
	--green-100: #d1fadf;
	--green-50: #ecfdf3;
	--bg: #f3f5f8;
	--ink: var(--slate-900);
	--muted: var(--slate-600);
	--line: var(--slate-200);
	--link: #175cd3;
	--radius-sm: 8px;
	--radius: 12px;
	--radius-lg: 16px;
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
	--shadow: 0 1px 3px rgba(16, 24, 40, 0.08), 0 12px 28px rgba(16, 24, 40, 0.06);
	--sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--page: min(1600px, calc(100% - clamp(2rem, 5vw, 6rem)));
}

* { box-sizing: border-box; }
html { min-height: 100%; color-scheme: light; }
body {
	margin: 0;
	min-height: 100%;
	background: var(--bg);
	color: var(--ink);
	font: 14px/1.5 var(--sans);
	-webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
svg { display: block; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
button, input { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(229, 139, 33, 0.35); outline-offset: 2px; }
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 100;
	padding: 9px 12px;
	border-radius: 7px;
	background: var(--white);
	color: var(--navy-950);
	font-weight: 700;
	box-shadow: var(--shadow);
	transform: translateY(-160%);
	transition: transform 120ms;
}
.skip-link:focus { transform: translateY(0); }

/* App shell */
.top {
	position: relative;
	z-index: 10;
	background: var(--navy-950);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--white);
}

.top-inner {
	width: var(--page);
	height: 68px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: inherit;
}
.brand:hover { color: inherit; text-decoration: none; }
.brand-mark {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 9px;
	background: linear-gradient(145deg, var(--amber-500), #f4ad45);
	color: var(--navy-950);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.brand-mark svg { width: 21px; height: 21px; stroke-width: 1.9; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 17px; letter-spacing: -0.03em; }
.brand-copy small { margin-top: 4px; color: #aab4c4; font-size: 11px; font-weight: 500; }
.top-nav { display: flex; align-items: center; gap: 24px; }
.top-nav a { color: #f5f7fa; font-weight: 600; font-size: 13px; }
.top-nav a:hover { text-decoration: none; color: var(--amber-500); }
.data-source {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	color: #aab4c4;
	font-size: 11px;
	font-weight: 600;
}
.data-source::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #32d583;
	box-shadow: 0 0 0 3px rgba(50, 213, 131, 0.12);
}

.panel {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.eyebrow {
	margin: 0 0 4px;
	color: var(--amber-700);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.09em;
	line-height: 1.4;
	text-transform: uppercase;
}

/* Search page */
.search-page {
	width: var(--page);
	margin: 0 auto;
	padding: 34px 0 56px;
}

.page-intro {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 26px;
}
.page-intro h1 {
	margin: 0;
	font-size: clamp(26px, 2.3vw, 36px);
	line-height: 1.18;
	letter-spacing: -0.035em;
}
.page-intro > div:first-child > p:last-child {
	max-width: 720px;
	margin: 8px 0 0;
	color: var(--muted);
	font-size: 15px;
}
.source-note {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 230px;
	padding: 11px 14px;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
.status-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #12b76a;
	box-shadow: 0 0 0 4px var(--green-100);
}
.source-note > span:last-child { display: flex; flex-direction: column; }
.source-note strong { font-size: 12px; }
.source-note small { color: var(--slate-500); font-size: 11px; }

.search-workspace {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
}

.filters {
	position: sticky;
	top: 18px;
	overflow: hidden;
}
.filter-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 18px 14px;
	border-bottom: 1px solid var(--line);
}
.filter-heading h2 { margin: 0; font-size: 18px; letter-spacing: -0.02em; }
.clear-filters { color: var(--slate-600); font-size: 12px; font-weight: 650; }
.filter-section { padding: 15px 18px; border-bottom: 1px solid var(--line); }
.keyword-filter label,
.pair label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: var(--slate-700);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.input-with-icon { position: relative; }
.input-with-icon svg {
	position: absolute;
	top: 50%;
	left: 11px;
	width: 17px;
	height: 17px;
	color: var(--slate-500);
	transform: translateY(-50%);
	pointer-events: none;
}
.input-with-icon input { padding-left: 35px !important; }

input:not([type="checkbox"]) {
	appearance: none;
	width: 100%;
	min-width: 0;
	padding: 9px 11px;
	background: var(--white);
	border: 1px solid var(--slate-300);
	border-radius: var(--radius-sm);
	color: var(--ink);
	font-size: 13px;
	box-shadow: var(--shadow-sm);
	transition: border-color 120ms, box-shadow 120ms;
}
input:not([type="checkbox"])::placeholder { color: var(--slate-400); }
input:not([type="checkbox"]):focus {
	outline: 0;
	border-color: var(--amber-500);
	box-shadow: 0 0 0 3px rgba(229, 139, 33, 0.13);
}

.filter-disclosure { padding-block: 0; }
.filter-disclosure summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 18px 15px 0;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}
.filter-disclosure summary::-webkit-details-marker { display: none; }
.filter-disclosure summary::after {
	content: "";
	position: absolute;
	right: 1px;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid var(--slate-500);
	border-bottom: 1.5px solid var(--slate-500);
	transform: rotate(45deg) translateY(-2px);
	transition: transform 120ms;
}
.filter-disclosure:not([open]) summary::after { transform: rotate(-45deg); }
.filter-disclosure summary span {
	margin-right: 13px;
	color: var(--slate-500);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}
.picker {
	min-width: 0;
	margin: 0;
	padding: 0 0 15px;
	border: 0;
}
.pick-filter { margin-bottom: 8px; background: var(--slate-50) !important; }
.pick-list {
	max-height: 158px;
	overflow: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--slate-300) transparent;
}
.pick-list label {
	display: grid;
	grid-template-columns: 17px 1fr;
	align-items: start;
	gap: 9px;
	padding: 6px 5px;
	border-radius: 6px;
	color: var(--slate-700);
	font-size: 11px;
	font-weight: 550;
	line-height: 1.4;
	cursor: pointer;
}
.pick-list label:hover { background: var(--slate-50); color: var(--ink); }
.pick-list label[hidden] { display: none; }
.pick-list input[type="checkbox"] {
	appearance: none;
	width: 16px;
	height: 16px;
	margin: 0;
	border: 1.5px solid var(--slate-300);
	border-radius: 4px;
	background: var(--white);
	cursor: pointer;
}
.pick-list input[type="checkbox"]:checked {
	border-color: var(--amber-600);
	background: var(--amber-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6.5l2.5 2.5L10 3'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.open-deadline label {
	display: grid;
	grid-template-columns: 17px 1fr;
	align-items: start;
	gap: 10px;
	color: var(--slate-700);
	font-size: 13px;
	font-weight: 650;
	line-height: 1.35;
	cursor: pointer;
}
.open-deadline input[type="checkbox"] {
	appearance: none;
	width: 16px;
	height: 16px;
	margin-top: 2px;
	border: 1.5px solid var(--slate-300);
	border-radius: 4px;
	background: var(--white);
	cursor: pointer;
}
.open-deadline input[type="checkbox"]:checked {
	border-color: var(--amber-600);
	background: var(--amber-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6.5l2.5 2.5L10 3'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.open-deadline span { display: flex; flex-direction: column; gap: 2px; }
.open-deadline small { color: var(--slate-500); font-size: 11px; font-weight: 500; }
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-bottom: 15px; }
.filter-actions { padding: 16px 18px 18px; background: var(--slate-50); }
button, .sam, .secondary-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid var(--amber-600);
	border-radius: var(--radius-sm);
	background: var(--amber-600);
	color: var(--white);
	font-weight: 700;
	box-shadow: var(--shadow-sm);
	cursor: pointer;
	transition: background 120ms, border-color 120ms, transform 120ms;
}
button { width: 100%; padding: 10px 14px; font-size: 13px; }
button svg { width: 16px; height: 16px; }
button:hover, .sam:hover, .secondary-action:hover {
	background: var(--amber-700);
	border-color: var(--amber-700);
	color: var(--white);
	text-decoration: none;
}
button:active, .sam:active { transform: translateY(1px); }

/* Results */
.results { min-width: 0; overflow: hidden; }
.results-toolbar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--line);
}
.results-toolbar > div:first-child { min-width: 0; flex: 1; }
.results-toolbar h2 { margin: 0; font-size: 18px; letter-spacing: -0.02em; }
.results-toolbar h2 strong { font-size: 22px; }
.results-toolbar > div:first-child > p:last-child { margin: 4px 0 0; color: var(--slate-500); font-size: 13px; line-height: 1.45; max-width: 46em; }
.results-note {
	display: flex;
	align-items: center;
	gap: 9px;
	max-width: 310px;
	padding: 8px 11px;
	border: 1px solid var(--blue-100);
	border-radius: var(--radius-sm);
	background: var(--blue-50);
	color: var(--slate-600);
}
.results-note svg { flex: 0 0 auto; width: 17px; height: 17px; color: var(--blue-700); }
.results-note span { display: flex; flex-direction: column; font-size: 10px; line-height: 1.35; }
.results-note strong { color: var(--slate-700); font-size: 11px; }
.results-loading {
	position: absolute;
	right: 20px;
	bottom: -29px;
	z-index: 2;
	padding: 5px 9px;
	border-radius: 0 0 6px 6px;
	background: var(--navy-800);
	color: white;
	font-size: 10px;
}
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator { display: block; }
.table-wrap { overflow-x: auto; }
.pager {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 20px;
	border-top: 1px solid var(--line);
	color: var(--slate-600);
	font-size: 13px;
	font-weight: 600;
}
.pager a { color: var(--navy-800); }
.pager a:hover { color: var(--link); }
.pager-disabled { color: var(--slate-300); }
table {
	width: 100%;
	min-width: 990px;
	border-collapse: collapse;
	table-layout: fixed;
}
.col-date { width: 67px; }
.col-award { width: 100px; }
.col-title { width: auto; }
.col-dept { width: 15%; }
.col-set-aside { width: 14%; }
.col-poc { width: 16%; }
th {
	padding: 0;
	background: var(--slate-50);
	border-bottom: 1px solid var(--line);
	color: var(--slate-500);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-align: left;
	text-transform: uppercase;
	white-space: nowrap;
}
th a { display: block; padding: 10px 12px; color: inherit; }
th a:hover { color: var(--ink); text-decoration: none; }
th[aria-sort="ascending"] a::after,
th[aria-sort="descending"] a::after { margin-left: 4px; color: var(--amber-600); font-size: 12px; }
th[aria-sort="ascending"] a::after { content: "↑"; }
th[aria-sort="descending"] a::after { content: "↓"; }
td {
	padding: 15px 12px;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
	transition: background 100ms;
}
tbody tr:last-child td { border-bottom: 0; }
tbody .result-row:not(:last-child) td { border-bottom-color: var(--slate-300); }
.result-row:hover td { background: #fcfcfd; }
.dates {
	color: var(--slate-500);
	font-size: 11px;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
.dates strong { display: block; color: var(--ink); font-size: 12px; font-weight: 750; }
.dates span { display: block; }
.award { font-size: 11px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.award strong { font-weight: 700; }
.opportunity-link {
	display: inline-block;
	color: var(--ink);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.35;
}
.opportunity-link:hover { color: var(--blue-700); }
.opportunity-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin-top: 4px;
	color: var(--slate-500);
	font-size: 10px;
}
.opportunity-meta span + span::before { content: "•"; margin: 0 6px; color: var(--slate-300); }
.notices { margin: 8px 0 0; padding: 0; list-style: none; }
.notices li {
	margin: 0 0 0 2px;
	padding: 2px 0 2px 9px;
	border-left: 2px solid var(--slate-200);
	color: var(--slate-500);
	font-size: 10px;
}
.snippet {
	display: -webkit-box;
	margin-top: 7px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--slate-600);
	font-size: 11px;
	line-height: 1.5;
}
.flag {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	width: fit-content;
	margin-top: 9px;
	padding: 5px 8px;
	border: 1px solid #fedf89;
	border-radius: 6px;
	background: var(--amber-50);
	color: #854a0e;
	font-size: 10px;
	font-weight: 700;
}
.flag svg { flex: 0 0 auto; width: 14px; height: 14px; }
.dept, .set-aside, .poc { color: var(--slate-700); font-size: 11px; overflow-wrap: anywhere; }
.poc strong { display: block; color: var(--ink); font-size: 11px; }
.contact-line { margin-top: 3px; color: var(--slate-500); font-size: 10px; }
.chip, .neutral-chip, .status-chip, .type-chip {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.35;
}
.chip { padding: 4px 7px; background: var(--green-50); color: var(--green-700); }
.neutral-chip { padding: 4px 7px; background: var(--slate-100); color: var(--slate-600); }
.muted-value { color: var(--slate-400); }
.empty { max-width: 430px; margin: 64px auto; padding: 0 20px; text-align: center; color: var(--slate-500); }
.empty-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: var(--slate-100);
	color: var(--slate-600);
}
.empty-icon svg { width: 21px; height: 21px; }
.empty h2 { margin: 0 0 5px; color: var(--ink); font-size: 17px; }
.empty p { margin: 0; font-size: 12px; }
.empty code { padding: 2px 5px; border-radius: 4px; background: var(--slate-100); color: var(--ink); }
.secondary-action { margin-top: 16px; padding: 8px 12px; font-size: 11px; }

/* Opportunity detail */
.detail-page { padding: 30px 0 60px; }
.detail-shell { width: min(1240px, calc(100% - clamp(2rem, 7vw, 8rem))); margin: 0 auto; }
.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 17px;
	color: var(--slate-500);
	font-size: 12px;
	font-weight: 600;
}
.breadcrumbs a { display: inline-flex; align-items: center; gap: 4px; color: var(--slate-600); }
.breadcrumbs a:hover { color: var(--link); text-decoration: none; }
.breadcrumbs svg { width: 15px; height: 15px; }
.detail-hero {
	position: relative;
	overflow: hidden;
	padding: 30px 34px 0;
	background: linear-gradient(130deg, var(--white) 60%, #f8fafc);
}
.detail-hero::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, var(--amber-500), #f5bd66 30%, transparent 75%);
}
.detail-kicker { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.status-chip { gap: 6px; padding: 4px 8px; background: var(--green-50); color: var(--green-700); }
.status-chip > span { width: 6px; height: 6px; border-radius: 50%; background: #12b76a; }
.type-chip { padding: 4px 8px; background: var(--blue-50); color: var(--blue-700); }
.detail-hero h1 {
	max-width: 940px;
	margin: 0;
	font-size: clamp(25px, 3vw, 38px);
	line-height: 1.2;
	letter-spacing: -0.035em;
}
.detail-identifiers { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 10px; color: var(--slate-500); font-size: 11px; }
.detail-identifiers strong { margin-left: 3px; color: var(--slate-700); font-weight: 650; }
.summary-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr 1.5fr 1.3fr;
	margin: 27px -34px 0;
	border-top: 1px solid var(--line);
	background: rgba(248, 250, 252, 0.7);
}
.summary-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 16px 20px;
	border-right: 1px solid var(--line);
}
.summary-item:last-child { border-right: 0; }
.summary-icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: var(--white);
	color: var(--slate-600);
}
.summary-icon svg { width: 17px; height: 17px; }
.summary-item > span:last-child { min-width: 0; display: flex; flex-direction: column; }
.summary-item small { color: var(--slate-500); font-size: 10px; }
.summary-item strong { overflow: hidden; color: var(--slate-800); font-size: 11px; line-height: 1.35; text-overflow: ellipsis; }
.hero-flag { margin: 16px 0 22px; }
.detail-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 350px;
	gap: 20px;
	align-items: start;
	margin-top: 20px;
}
.detail-main, .detail-side { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.detail-side { position: sticky; top: 18px; }
.content-card { padding: 25px 28px 30px; }
.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--line);
}
.section-heading h2, .side-heading h2, .action-card h2 { margin: 0; color: var(--ink); font-size: 17px; letter-spacing: -0.02em; }
.section-heading > span { color: var(--slate-500); font-size: 11px; }
.desc { color: var(--slate-700); font-size: 14px; line-height: 1.72; white-space: pre-wrap; overflow-wrap: anywhere; }
.empty-desc {
	padding: 24px;
	border: 1px dashed var(--slate-300);
	border-radius: var(--radius);
	background: var(--slate-50);
	color: var(--slate-600);
	text-align: center;
}
.empty-desc strong { color: var(--ink); }
.empty-desc p { margin: 4px 0 0; font-size: 12px; }
.notice-history ul { margin: 0; padding: 0; list-style: none; }
.notice-history li {
	display: grid;
	grid-template-columns: 12px minmax(0, 1fr) 17px;
	align-items: center;
	gap: 10px;
	padding: 12px 8px;
	border-bottom: 1px solid var(--line);
}
.notice-history li:last-child { border-bottom: 0; }
.notice-history li:hover { background: var(--slate-50); }
.timeline-dot { width: 8px; height: 8px; border: 2px solid var(--amber-500); border-radius: 50%; background: var(--white); }
.notice-history li div { display: flex; flex-direction: column; }
.notice-history li a { color: var(--ink); font-size: 12px; font-weight: 700; }
.notice-history li span:not(.timeline-dot) { color: var(--slate-500); font-size: 10px; }
.notice-history li > svg { width: 16px; height: 16px; color: var(--slate-400); }
.action-card { padding: 22px; }
.action-card h2 { font-size: 18px; }
.action-card > p:not(.eyebrow) { margin: 7px 0 16px; color: var(--slate-600); font-size: 12px; }
.sam { width: 100%; padding: 10px 14px; font-size: 12px; }
.sam svg { width: 15px; height: 15px; }
.text-action { display: block; margin-top: 12px; color: var(--slate-600); font-size: 11px; font-weight: 650; text-align: center; }
.side-heading {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--line);
}
.side-heading svg { width: 18px; height: 18px; color: var(--amber-700); }
.side-heading h2 { font-size: 14px; }
.facts-card, .contacts-card { overflow: hidden; }
.facts-card dl { margin: 0; }
.facts-card dl > div {
	display: grid;
	grid-template-columns: 105px minmax(0, 1fr);
	gap: 12px;
	padding: 10px 18px;
	border-bottom: 1px solid var(--line);
}
.facts-card dl > div:last-child { border-bottom: 0; }
.facts-card dt { color: var(--slate-500); font-size: 10px; font-weight: 600; }
.facts-card dd { margin: 0; color: var(--slate-700); font-size: 11px; font-weight: 600; white-space: pre-line; overflow-wrap: anywhere; }
.facts-card dd small { display: block; margin-top: 2px; color: var(--slate-500); font-weight: 400; }
.contact-card { display: flex; flex-direction: column; gap: 2px; padding: 14px 18px; border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
.contact-card:last-child { border-bottom: 0; }
.contact-card > span { color: var(--slate-500); font-size: 10px; }
.contact-card strong { font-size: 12px; }
.contact-card a, .contact-card small { font-size: 11px; }
.contact-card small { color: var(--slate-600); }

@media (max-width: 1120px) {
	:root { --page: calc(100% - 2rem); }
	.page-intro { align-items: start; }
	.source-note { display: none; }
	.search-workspace { grid-template-columns: 260px minmax(0, 1fr); }
	.detail-layout { grid-template-columns: minmax(0, 1fr) 310px; }
	.summary-grid { grid-template-columns: 1fr 1fr; }
	.summary-item:nth-child(2) { border-right: 0; }
	.summary-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 840px) {
	.search-page { padding-top: 25px; }
	.search-workspace { grid-template-columns: 1fr; }
	.filters { position: static; }
	.pick-list { max-height: 130px; }
	.pick-list label { min-height: 40px; align-items: center; padding-block: 9px; }
	.detail-shell { width: calc(100% - 2rem); }
	.detail-layout { grid-template-columns: 1fr; }
	.detail-side { position: static; }
}

@media (max-width: 680px) {
	.top-inner { height: 62px; }
	.top-nav a { display: none; }
	.data-source { padding: 5px 8px; }
	.brand-copy small { display: none; }
	.page-intro h1 { font-size: 27px; }
	.page-intro > div:first-child > p:last-child { font-size: 13px; }
	.results-toolbar { align-items: flex-start; flex-direction: column; }
	.results-note { width: 100%; max-width: none; }
	.table-wrap { overflow: visible; padding: 12px; background: var(--slate-50); }
	table, tbody { display: block; min-width: 0; }
	thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
	.result-row {
		display: grid;
		grid-template-columns: 1fr 1fr;
		margin-bottom: 12px;
		overflow: hidden;
		border: 1px solid var(--line);
		border-radius: var(--radius);
		background: var(--white);
		box-shadow: var(--shadow-sm);
	}
	.result-row:last-child { margin-bottom: 0; }
	.result-row td {
		display: block;
		min-width: 0;
		padding: 11px 13px;
		border-bottom: 1px solid var(--line);
	}
	.result-row td::before {
		content: attr(data-label);
		display: block;
		margin-bottom: 3px;
		color: var(--slate-500);
		font-size: 9px;
		font-weight: 750;
		letter-spacing: 0.06em;
		text-transform: uppercase;
	}
	.result-row .title { grid-column: 1 / -1; grid-row: 1; padding: 15px 13px; }
	.result-row .dates { grid-row: 2; }
	.result-row .award,
	.result-row .dept,
	.result-row .set-aside,
	.result-row .poc { grid-column: 1 / -1; }
	.result-row .poc { border-bottom: 0; }
	.opportunity-link { font-size: 14px; }
	.snippet { font-size: 12px; }
	.detail-page { padding-top: 20px; }
	.detail-hero { padding: 24px 20px 0; }
	.detail-hero h1 { font-size: 25px; }
	.summary-grid { margin-inline: -20px; grid-template-columns: 1fr; }
	.summary-item { border-right: 0; border-bottom: 1px solid var(--line); }
	.summary-item:last-child { border-bottom: 0; }
	.content-card { padding: 20px; }
}

@media (max-width: 430px) {
	:root { --page: calc(100% - 1.25rem); }
	.data-source { display: none; }
	.page-intro { margin-bottom: 19px; }
	.page-intro .eyebrow { display: none; }
	.page-intro h1 { font-size: 24px; }
	.pair { grid-template-columns: 1fr; }
	.detail-shell { width: calc(100% - 1.25rem); }
	.breadcrumbs > span { display: none; }
}
