/*<meta />*/

/* =========================================================
   Release Notes Portal — Prototype stylesheet
   Used by Content/LP/Prototype/LP_*_Prototype*.htm topics.
   Pairs with Resources/Branding/release-notes-prototype/colors_and_type.css
   (which provides the brand variables and font faces).
   ========================================================= */

*,
*::before,
*::after
{
	box-sizing: border-box;
}

/* Restore content-box for Flare's CSS-triangle collapse arrows — they rely on
   width:0/height:0 + visible borders, which border-box crushes to nothing. */

.submenu-toggle,
span.submenu-toggle
{
	box-sizing: content-box !important;
}

/* Force Montserrat across the prototype. The Flare project's MainStyles.css
   defines the font face as 'Montserrat Regular' (single weight) which would
   otherwise win in some places. We pin html/body and every heading and text
   element to the brand's variable Montserrat with !important so the
   prototype always renders on-brand inside the Flare build. */

html,
body
{
	margin: 0;
	background: var(--bg-1);
	font-size: 16px;
	line-height: 1.55;
	font-family: var(--font-sans) !important;
	color: var(--fg-1);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
button,
input,
li,
label
{
	font-family: var(--font-sans) !important;
}

.hero-eyebrow,
.ph-eyebrow,
.about-eyebrow
{
	font-family: var(--font-italic-accent) !important;
}

/* ---------- Side nav overrides ---------- */

/* Keep the sidenav at a compact, readable size — the global 16px base and
   Montserrat variable font make it read much larger than intended otherwise. */

.sidenav-wrapper,
.sidenav-wrapper a,
.sidenav-wrapper li,
ul.sidenav li a
{
	font-family: Arial, sans-serif !important;
	font-size: 13px !important;
	line-height: 1.5 !important;
}

/* ---------- Sidebar collapse/expand toggle button (CollapsibleSideNav) ---------- */

/* FlareUI.js creates a div#expand-collapse.collapse button and inserts it between the
   sidenav-wrapper and the body-container inside the flex row. MainStyles.css normally
   styles it, but that stylesheet is not loaded in this output (MasterStylesheetOverride).
   These rules replicate the essential styles using CSS-only arrows (no image dependency). */

div.collapse,
div.expand
{
	position: sticky;
	top: 0;
	flex-shrink: 0;
	align-self: flex-start;
	width: 30px;
	height: 30px;
	background-color: #202945;
	border-radius: 0 10px 10px 0;
	cursor: pointer;
	transition: width .25s;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* CSS triangle arrows — must use content-box or the border-box reset crushes them to nothing */

div.collapse::after,
div.expand::after
{
	content: '';
	display: block;
	width: 0;
	height: 0;
	box-sizing: content-box;
}

div.collapse::after
{
	/* Left-pointing arrow = collapse/hide the sidebar */
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-right: 8px solid #ffffff;
}

div.expand::after
{
	/* Right-pointing arrow = expand/show the sidebar */
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid #ffffff;
}

/* ---------- Header ---------- */

.hdr
{
	border-bottom: 1px solid var(--rule);
	background: var(--bh-white);
}

.hdr-inner
{
	max-width: 1280px;
	margin: 0 auto;
	padding: 18px 40px;
	display: flex;
	align-items: center;
	gap: 36px;
}

.hdr-logo
{
	height: 28px;
	display: block;
}

.hdr-pipe
{
	width: 1px;
	height: 24px;
	background: var(--rule);
}

.hdr-title
{
	font-family: var(--font-sans);
	font-size: 15px;
	font-weight: var(--w-semibold);
	color: var(--fg-1);
	letter-spacing: -0.005em;
}

/* Make "Release Notes Portal" header text a clickable back-link
   without changing its appearance. */

a.hdr-title
{
	text-decoration: none;
	border-bottom: none;
	cursor: pointer;
}

a.hdr-title:hover
{
	text-decoration: none;
	border-bottom: none;
	opacity: 0.75;
}

/* Top nav: equal-width tabs so the four links read as a tab strip rather
   than four loose words floating at different widths. */

.hdr-nav
{
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 0;
}

.hdr-nav a
{
	font-size: 14px;
	font-weight: var(--w-medium);
	color: var(--fg-2);
	border-bottom: none;
	min-width: 130px;
	padding: 8px 16px;
	text-align: center;
	letter-spacing: 0.01em;
}

.hdr-nav a:hover
{
	color: var(--bh-navy);
}

.hdr-nav a.active
{
	color: var(--bh-navy);
	font-weight: var(--w-semibold);
}

/* ---------- Hero (home page) ---------- */

.hero
{
	border-bottom: 1px solid var(--rule);
	background: var(--bh-white);
	position: relative;
	overflow: hidden;
}

.hero-inner
{
	max-width: 1280px;
	margin: 0 auto;
	padding: 72px 40px 64px;
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 80px;
	align-items: center;
}

.hero-eyebrow
{
	font-family: var(--font-italic-accent);
	font-style: italic;
	font-size: 18px;
	color: var(--bh-sky);
	margin-bottom: 18px;
	letter-spacing: 0.01em;
}

.hero h1
{
	font-size: 64px;
	font-weight: var(--w-extrabold);
	letter-spacing: -0.02em;
	line-height: 1.04;
	color: var(--bh-navy);
	margin: 0 0 24px;
	max-width: 14ch;
}

.hero h1 em
{
	font-style: italic;
	color: var(--bh-sky);
	font-weight: var(--w-extrabold);
}

.hero-lede
{
	font-size: 19px;
	line-height: 1.55;
	color: var(--fg-2);
	margin: 0 0 32px;
	max-width: 52ch;
}

/* ---------- Master-page search bar ---------- */

/* The master page injects a visible search form at the top of every
   topic. The form submits to ../Search.htm (the existing SearchUnify
   results page). The #auto slot below the form is the autocomplete
   dropdown SU populates as the user types. */

.rnp-search-bar
{
	background: var(--bh-white);
	border-bottom: 1px solid var(--rule);
	padding: 14px 40px;
	position: relative;
}

.rnp-search-form
{
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 0;
	border: 1px solid var(--rule);
	border-radius: var(--radius-pill);
	background: var(--bh-white);
	padding: 4px 4px 4px 22px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.rnp-search-form:focus-within
{
	border-color: var(--bh-navy);
	box-shadow: 0 0 0 3px rgba(32,41,69,0.08);
}

.rnp-search-form svg
{
	flex: 0 0 auto;
	color: var(--fg-3);
}

.rnp-search-form input
{
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font: inherit;
	font-size: 15px;
	color: var(--fg-1);
	padding: 10px 14px;
	min-width: 0;
}

.rnp-search-form input::placeholder
{
	color: var(--fg-3);
}

.rnp-search-form button
{
	border: none;
	background: var(--bh-navy);
	color: var(--bh-white);
	font: inherit;
	font-size: 14px;
	font-weight: var(--w-semibold);
	padding: 10px 22px;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: background 120ms ease;
}

.rnp-search-form button:hover
{
	background: #161e36;
}

/* SearchUnify autocomplete dropdown anchor. Hidden until SU paints. */

.rnp-search-bar #auto
{
	max-width: 720px;
	margin: 8px auto 0;
	position: relative;
}

.rnp-search-bar #auto:empty
{
	display: none;
}

.search-hints
{
	margin-top: 14px;
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--fg-3);
}

.search-hints span b
{
	color: var(--fg-2);
	font-weight: var(--w-semibold);
}

/* ---------- Hero right: latest release card ---------- */

.latest-card
{
	border: 1px solid var(--rule);
	border-radius: var(--radius-md);
	padding: 28px 28px 24px;
	background: var(--bg-2);
	position: relative;
}

.latest-card .pill
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bh-navy);
	color: var(--bh-white);
	font-size: 11px;
	font-weight: var(--w-bold);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: var(--radius-pill);
}

.latest-card .pill::before
{
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--bh-orange);
	box-shadow: 0 0 0 3px rgba(255,107,0,0.25);
}

.latest-card .ver
{
	font-family: var(--font-sans);
	font-size: 56px;
	font-weight: var(--w-black);
	letter-spacing: -0.03em;
	color: var(--bh-navy);
	line-height: 1;
	margin: 16px 0 6px;
}

.latest-card .ver-sub
{
	font-size: 14px;
	color: var(--fg-2);
	margin-bottom: 20px;
}

.latest-card .ver-sub b
{
	color: var(--bh-navy);
	font-weight: var(--w-semibold);
}

.latest-card ul
{
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	border-top: 1px solid var(--rule);
}

.latest-card li
{
	padding: 12px 0;
	border-bottom: 1px solid var(--rule);
	font-size: 14px;
	color: var(--fg-1);
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.latest-card li::before
{
	content: "";
	flex: 0 0 auto;
	margin-top: 7px;
	width: 6px;
	height: 6px;
	background: var(--bh-sky);
	border-radius: 2px;
	transform: rotate(45deg);
}

.latest-card li b
{
	font-weight: var(--w-semibold);
}

.latest-card li span
{
	color: var(--fg-2);
	margin-left: auto;
	font-size: 12px;
	padding-left: 12px;
}

.latest-card .cta
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--bh-navy);
	font-weight: var(--w-semibold);
	font-size: 14px;
	border-bottom: 1px solid var(--bh-navy);
	padding-bottom: 2px;
}

.latest-card .cta:hover
{
	color: var(--bh-sky);
	border-bottom-color: var(--bh-sky);
}

/* ---------- Section: products grid ---------- */

.section
{
	padding: 72px 40px;
	max-width: 1280px;
	margin: 0 auto;
}

.section-head
{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid var(--rule);
	padding-bottom: 20px;
}

.section-head h2
{
	font-size: 36px;
	font-weight: var(--w-extrabold);
	letter-spacing: -0.02em;
	color: var(--bh-navy);
	margin: 0;
	line-height: 1.1;
}

.section-head h2 em
{
	font-style: italic;
	color: var(--bh-sky);
	font-weight: var(--w-extrabold);
}

.section-head .meta
{
	font-size: 13px;
	color: var(--fg-2);
	text-align: right;
	letter-spacing: 0.02em;
}

/* Filter chips */

.chips
{
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

.chip
{
	border: 1px solid var(--rule);
	background: var(--bh-white);
	color: var(--fg-2);
	font-size: 13px;
	font-weight: var(--w-medium);
	padding: 7px 14px;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: all 120ms ease;
}

.chip:hover
{
	border-color: var(--bh-navy);
	color: var(--bh-navy);
}

.chip.is-on
{
	background: var(--bh-navy);
	color: var(--bh-white);
	border-color: var(--bh-navy);
}

/* Product grid */

.grid
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--rule);
	border: 1px solid var(--rule);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.pcard
{
	background: var(--bh-white);
	padding: 28px 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-decoration: none;
	color: inherit;
	border-bottom: none;
	transition: background 140ms ease;
	position: relative;
	min-height: 220px;
}

.pcard:hover
{
	background: var(--bg-2);
	border-bottom: none;
}

.pcard-row
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

/* Product logo container. Bigger now — the previous 48px was too small
   and made the logos read as cramped icons rather than wordmarks. Each
   logo keeps its own aspect ratio via object-fit: contain. The !important
   rules override Flare's MainStyles.css default `img` rule (8px right /
   15pt bottom margins) which would otherwise push the logo off the card. */

.pcard-row
{
	min-height: 80px;
	align-items: flex-start;
}

.pcard-logo
{
	height: 80px;
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.pcard-logo img
{
	/* Explicit dimensions required for object-fit: contain to work.
       Flare sometimes outputs inline width/height from image metadata;
       these !important rules win the cascade and ensure every logo
       is letterboxed into the same 100% × 64px box. */
	width: 100% !important;
	height: 64px !important;
	object-fit: contain !important;
	object-position: left center !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

.pcard-ver
{
	font-size: 11px;
	font-weight: var(--w-semibold);
	color: var(--fg-3);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
}

.pcard-ver b
{
	color: var(--bh-navy);
	font-weight: var(--w-bold);
}

.pcard-name
{
	font-size: 18px;
	font-weight: var(--w-bold);
	color: var(--bh-navy);
	line-height: 1.25;
	letter-spacing: -0.01em;
	margin: 0;
}

.pcard-desc
{
	font-size: 13.5px;
	color: var(--fg-2);
	line-height: 1.5;
	margin: 0;
	flex: 1;
}

.pcard-foot
{
	margin-top: 8px;
	padding-top: 14px;
	border-top: 1px solid var(--rule);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 12px;
	color: var(--fg-2);
}

.pcard-foot .arrow
{
	font-weight: var(--w-bold);
	color: var(--bh-navy);
	transition: transform 140ms ease;
}

.pcard:hover .arrow
{
	transform: translateX(4px);
}

/* ---------- Calendar / archive band (home page) ---------- */

.band
{
	background: var(--bg-2);
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
}

.band-inner
{
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 40px;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 64px;
	align-items: start;
}

.band-col h3
{
	font-size: 24px;
	font-weight: var(--w-extrabold);
	color: var(--bh-navy);
	letter-spacing: -0.01em;
	margin: 0 0 12px;
	line-height: 1.2;
}

.band-col p
{
	font-size: 15px;
	color: var(--fg-2);
	line-height: 1.55;
	margin: 0 0 20px;
	max-width: 56ch;
}

.btn
{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--bh-navy);
	color: var(--bh-white);
	font-size: 14px;
	font-weight: var(--w-semibold);
	padding: 12px 22px;
	border-radius: var(--radius-pill);
	border: none;
	border-bottom: none;
	cursor: pointer;
	transition: background 120ms ease;
}

.btn:hover
{
	background: #161e36;
	border-bottom: none;
}

.btn.ghost
{
	background: transparent;
	color: var(--bh-navy);
	border: 1px solid var(--bh-navy);
}

.btn.ghost:hover
{
	background: var(--bh-navy);
	color: var(--bh-white);
}

.cal
{
	background: var(--bh-white);
	border: 1px solid var(--rule);
	border-radius: var(--radius-md);
	padding: 24px;
}

.cal-head
{
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--rule);
}

.cal-head .lbl
{
	font-size: 11px;
	color: var(--fg-3);
	letter-spacing: 0.14em;
	font-weight: var(--w-semibold);
	text-transform: uppercase;
}

.cal-head h4
{
	font-size: 20px;
	font-weight: var(--w-bold);
	color: var(--bh-navy);
	margin: 0;
	letter-spacing: -0.01em;
}

.cal-list
{
	list-style: none;
	margin: 0;
	padding: 0;
}

.cal-list li
{
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid var(--rule);
	font-size: 14px;
}

.cal-list li:last-child
{
	border-bottom: none;
}

.cal-name
{
	font-weight: var(--w-semibold);
	color: var(--bh-navy);
	font-size: 14px;
}

.cal-name .sub
{
	display: block;
	color: var(--fg-2);
	font-weight: var(--w-regular);
	font-size: 12.5px;
	margin-top: 2px;
}

.cal-tag
{
	font-size: 11px;
	font-weight: var(--w-semibold);
	color: var(--fg-2);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 10px;
	background: var(--bg-2);
	border-radius: var(--radius-pill);
}

.cal-tag.preview
{
	color: var(--bh-orange);
	background: rgba(255,107,0,0.08);
}

/* ---------- About (home page) ---------- */

.about
{
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 40px;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 80px;
	align-items: start;
}

.about-eyebrow
{
	font-family: var(--font-italic-accent);
	font-style: italic;
	font-size: 16px;
	color: var(--bh-sky);
	margin-bottom: 12px;
}

.about h2
{
	font-size: 40px;
	font-weight: var(--w-extrabold);
	letter-spacing: -0.02em;
	color: var(--bh-navy);
	line-height: 1.05;
	margin: 0;
	max-width: 14ch;
}

.about-body p
{
	font-size: 16px;
	line-height: 1.6;
	color: var(--fg-1);
	max-width: 56ch;
}

.about-points
{
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 32px;
}

.about-points li
{
	font-size: 14px;
	color: var(--fg-2);
	line-height: 1.5;
	padding-left: 20px;
	position: relative;
}

.about-points li::before
{
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	background: var(--bh-sky);
	border-radius: 2px;
	transform: rotate(45deg);
}

.about-points li b
{
	color: var(--bh-navy);
	font-weight: var(--w-semibold);
}

/* ---------- Page hero (landing pages) ---------- */

.ph
{
	background: var(--bh-navy);
	color: var(--bh-white);
	position: relative;
	overflow: hidden;
}

.ph::before
{
	content: "";
	position: absolute;
	inset: 0;
	background: url("../Branding/release-notes-prototype/assets/bg-pattern-navy-tears.png") right center / cover no-repeat;
	opacity: 0.45;
	pointer-events: none;
}

.ph-inner
{
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 40px 56px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: end;
}

.ph-eyebrow
{
	font-family: var(--font-italic-accent);
	font-style: italic;
	font-size: 17px;
	color: var(--bh-sky-light);
	margin-bottom: 16px;
}

.ph h1
{
	font-size: 56px;
	font-weight: var(--w-extrabold);
	letter-spacing: -0.025em;
	line-height: 1.04;
	color: var(--bh-white);
	margin: 0 0 20px;
	max-width: 24ch;
}

.ph h1 em
{
	font-style: italic;
	color: var(--bh-orange);
	font-weight: var(--w-extrabold);
}

.ph-meta
{
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	font-size: 14px;
	color: rgba(255,255,255,0.78);
}

.ph-meta b
{
	color: var(--bh-white);
	font-weight: var(--w-semibold);
}

.ph-meta .pill
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bh-orange);
	color: var(--bh-white);
	font-size: 11px;
	font-weight: var(--w-bold);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: var(--radius-pill);
}

.ph-meta .pill::before
{
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--bh-white);
}

.ph-side
{
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.ph-btn
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--bh-white);
	color: var(--bh-navy);
	font-size: 13px;
	font-weight: var(--w-bold);
	padding: 11px 18px;
	border-radius: var(--radius-pill);
	border-bottom: none;
}

.ph-btn:hover
{
	background: var(--bh-sky-light);
	border-bottom: none;
}

.ph-btn.ghost
{
	background: transparent;
	color: var(--bh-white);
	border: 1px solid rgba(255,255,255,0.5);
}

.ph-btn.ghost:hover
{
	background: rgba(255,255,255,0.1);
	border-color: var(--bh-white);
}

/* ---------- Body layout (landing pages) ---------- */

.body
{
	max-width: 1280px;
	margin: 0 auto;
	padding: 56px 40px 96px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 64px;
	align-items: start;
}

/* On this page rail */

.toc
{
	position: sticky;
	top: 24px;
	border-left: 2px solid var(--rule);
	padding: 4px 0 4px 20px;
}

.toc .lbl
{
	font-size: 11px;
	letter-spacing: 0.14em;
	color: var(--fg-3);
	font-weight: var(--w-bold);
	text-transform: uppercase;
	margin-bottom: 14px;
}

.toc ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

.toc li
{
	margin-bottom: 12px;
}

.toc a
{
	font-size: 13px;
	color: var(--fg-2);
	border-bottom: none;
	display: block;
	line-height: 1.4;
}

.toc a:hover
{
	color: var(--bh-navy);
}

.toc a.here
{
	color: var(--bh-navy);
	font-weight: var(--w-semibold);
}

/* Content */

.content h2
{
	font-size: 32px;
	font-weight: var(--w-extrabold);
	color: var(--bh-navy);
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 48px 0 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--rule);
}

.content h2:first-child
{
	margin-top: 0;
}

.content h3
{
	font-size: 22px;
	font-weight: var(--w-bold);
	color: var(--bh-navy);
	letter-spacing: -0.01em;
	margin: 32px 0 8px;
}

.content p
{
	font-size: 16px;
	color: var(--fg-1);
	line-height: 1.65;
	margin: 0 0 16px;
	max-width: 70ch;
}

.content p.note,
.content p.stop
{
	border-left: 3px solid var(--bh-sky);
	background: rgba(0,155,223,0.05);
	padding: 12px 16px;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 14px;
}

.content p.stop
{
	border-left-color: var(--bh-orange);
	background: rgba(255,107,0,0.05);
}

/* Highlights row */

.highlights
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 8px 0 32px;
}

.hl
{
	border: 1px solid var(--rule);
	border-radius: var(--radius-md);
	padding: 20px;
	background: var(--bh-white);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hl .tag
{
	font-size: 11px;
	letter-spacing: 0.14em;
	font-weight: var(--w-bold);
	text-transform: uppercase;
	align-self: flex-start;
	padding: 4px 10px;
	border-radius: var(--radius-pill);
}

.tag-new
{
	background: rgba(0,155,223,0.1);
	color: var(--bh-blue-deep);
}

.tag-updated
{
	background: rgba(100,116,239,0.12);
	color: #4338ca;
}

.hl h4
{
	font-size: 16px;
	font-weight: var(--w-bold);
	color: var(--bh-navy);
	margin: 0;
	line-height: 1.3;
}

.hl p
{
	font-size: 13px;
	color: var(--fg-2);
	line-height: 1.5;
	margin: 0;
}

/* Detail blocks */

.detail
{
	border-left: 3px solid var(--bh-sky);
	padding: 4px 0 4px 20px;
	margin: 0 0 28px;
}

.detail .pretitle
{
	font-size: 11px;
	font-weight: var(--w-bold);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bh-sky);
	margin-bottom: 6px;
}

.detail h3
{
	margin: 0 0 8px;
}

.detail ul
{
	margin: 12px 0 0;
	padding-left: 20px;
	color: var(--fg-1);
}

.detail ul li
{
	padding: 3px 0;
	font-size: 15px;
}

.detail ul li a
{
	color: var(--bh-navy);
	border-bottom: 1px solid var(--bh-sky);
}

.detail ul li a:hover
{
	border-bottom-color: var(--bh-navy);
	color: var(--bh-sky);
}

/* Empty-state callout */

.empty
{
	border: 1px dashed var(--rule);
	border-radius: var(--radius-md);
	padding: 32px 28px;
	background: var(--bg-2);
	text-align: center;
}

.empty h3
{
	font-size: 18px;
	font-weight: var(--w-bold);
	color: var(--bh-navy);
	margin: 0 0 6px;
}

.empty p
{
	font-size: 14px;
	color: var(--fg-2);
	margin: 0;
}

/* Feedback */

.feedback
{
	margin: 56px 0 0;
	border: 1px solid var(--rule);
	border-radius: var(--radius-md);
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 24px;
	background: var(--bg-2);
}

.feedback .q
{
	font-size: 15px;
	font-weight: var(--w-semibold);
	color: var(--bh-navy);
}

.fb-btns
{
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.fb-btn
{
	border: 1px solid var(--rule);
	background: var(--bh-white);
	padding: 10px 18px;
	border-radius: var(--radius-pill);
	font: inherit;
	font-size: 13px;
	font-weight: var(--w-semibold);
	color: var(--fg-1);
	cursor: pointer;
	transition: all 120ms ease;
}

.fb-btn:hover
{
	border-color: var(--bh-navy);
	color: var(--bh-navy);
}

/* Inline icon helper */

.iarrow
{
	display: inline-block;
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
}

/* ---------------------------------------------------------
   Feedback widget — applied by ReleaseNotesPrototype.flmsp.
   Targets the existing .modal / .thumbs_up / .thumbs_down
   markup that the master page injects, plus the prototype
   correction row, so the widget reads on-brand.
   --------------------------------------------------------- */

.rnp-feedback-frame
{
	max-width: 1280px;
	margin: 0 auto;
	padding: 56px 40px 80px;
}

.rnp-feedback-frame .modal
{
	border: 1px solid var(--rule);
	border-radius: var(--radius-md);
	padding: 22px 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	background: var(--bg-2);
	flex-wrap: wrap;
}

.rnp-feedback-frame .modal .question
{
	font-size: 15px;
	font-weight: var(--w-semibold);
	color: var(--bh-navy);
	flex: 1;
	min-width: 200px;
}

.rnp-feedback-frame .modal .thumbs_up,
.rnp-feedback-frame .modal .thumbs_down
{
	display: inline-block;
	border: 1px solid var(--rule);
	background: var(--bh-white);
	color: var(--fg-1);
	font-size: 13px;
	font-weight: var(--w-semibold);
	padding: 10px 18px;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: all 120ms ease;
}

.rnp-feedback-frame .modal .thumbs_up:hover,
.rnp-feedback-frame .modal .thumbs_down:hover
{
	border-color: var(--bh-navy);
	color: var(--bh-navy);
}

.rnp-feedback-frame .modal label[for="modal__trigger"]
{
	cursor: pointer;
}

.rnp-feedback-frame #modal__trigger
{
	display: none;
}

.rnp-feedback-frame .modal__overlay
{
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(32,41,69,0.45);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.rnp-feedback-frame #modal__trigger:checked ~ .modal__overlay
{
	display: flex;
}

.rnp-feedback-frame .modal__wrap
{
	background: var(--bh-white);
	padding: 32px 40px;
	border-radius: var(--radius-md);
	text-align: center;
	max-width: 380px;
	box-shadow: var(--shadow-2);
	position: relative;
}

.rnp-feedback-frame .modal__wrap label[for="modal__trigger"]
{
	position: absolute;
	top: 12px;
	right: 16px;
	font-size: 18px;
	color: var(--fg-3);
	cursor: pointer;
}

.rnp-feedback-frame #modal__desc
{
	font-size: 16px;
	font-weight: var(--w-semibold);
	color: var(--bh-navy);
	margin: 0;
}

.rnp-correction
{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	font-size: 13px;
	color: var(--fg-2);
}

.rnp-correction img.correction-button
{
	height: 18px;
	width: auto;
	opacity: 0.7;
	transition: opacity 120ms ease;
}

.rnp-correction img.correction-button:hover
{
	opacity: 1;
}

