/* ============================================================
   First Legal acquisition announcement banner
   - Sticks to the top of the viewport on scroll (position: fixed)
   - Pushes the page down via body padding-top — no header overrides
   - Color & typography matched to firstlegal.com banner screenshot
   ============================================================ */

/* ---------- Banner ---------- */
.fl-acq-banner {
	background: #ffffff;
	color: #0a2540;
	padding: 14px 32px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 100002;                /* above WP admin bar (99999) */
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.fl-acq-banner__inner {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;         /* keeps text + button visually together */
	gap: 28px;                       /* spacing between text and button */
}

.fl-acq-banner__text {
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	font-weight: 400;                /* regular weight, not bold */
	letter-spacing: 0;
	line-height: 1.25;
	color: #0a2540;
}

.fl-acq-banner__btn {
	display: inline-block;
	flex: 0 0 auto;
	background: #0a2540;             /* same navy as text */
	color: #ffffff !important;
	text-decoration: none;
	padding: 12px 32px;
	border-radius: 999px;            /* full pill shape */
	font-family: inherit;            /* sans-serif from theme */
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.fl-acq-banner__btn:hover,
.fl-acq-banner__btn:focus {
	background: #163a5f;             /* slightly lighter navy on hover */
	color: #ffffff !important;
}

/* ---------- Make room at the top so banner doesn't cover content ---------- */
body {
	padding-top: 70px !important;
}

/* Logged-in users: push WP admin bar below banner */
html #wpadminbar {
	top: 70px !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.fl-acq-banner {
		padding: 12px 16px;
	}
	.fl-acq-banner__inner {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
	.fl-acq-banner__text {
		font-size: 18px;
	}
	body {
		padding-top: 110px !important;
	}
	html #wpadminbar {
		top: 110px !important;
	}
}
