/* ==========================================================================
   FPA News — main stylesheet
   Blocks size themselves with container queries (container "fpa"), so the same
   block works full width, in a two-thirds column or in a narrow rail.
   ========================================================================== */

:root {
	--fpa-primary: #0a2342;
	--fpa-accent: #f7941d;
	--fpa-on-accent: #0a2342;
	/* Readable shade of the accent for small text on white. */
	--fpa-accent-ink: color-mix(in srgb, var(--fpa-accent) 70%, #000);
	--fpa-primary-deep: color-mix(in srgb, var(--fpa-primary) 78%, #000);
	--fpa-ink: #14171f;
	--fpa-text: #2b2f38;
	--fpa-muted: #6b7280;
	--fpa-line: #e5e7eb;
	--fpa-soft: #f4f5f7;
	--fpa-bg: #fff;
	--fpa-head: "Poppins", "Segoe UI", Arial, sans-serif;
	--fpa-body: "Roboto", "Segoe UI", Arial, sans-serif;
	--fpa-width: 1240px;
	--fpa-gutter: 20px;
	--fpa-gap: 30px;
	--fpa-radius: 6px;
	--fpa-shadow: 0 10px 30px rgba(10, 20, 40, .08);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--fpa-bg);
	color: var(--fpa-text);
	font-family: var(--fpa-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s; }
a:hover { color: var(--fpa-accent-ink); }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--fpa-accent); outline-offset: 2px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link:focus {
	clip: auto; width: auto; height: auto;
	top: 8px; left: 8px; z-index: 1000;
	background: #fff; padding: 8px 12px;
}

.fpa-container {
	width: 100%;
	max-width: var(--fpa-width);
	margin: 0 auto;
	padding: 0 var(--fpa-gutter);
}

.fpa-icon { flex: none; }

/* Container-query hosts: every place a block can live. */
.fpa-row__col,
.fpa-layout__main,
.fpa-layout__sidebar,
[data-widget_type^="fpa-"],
.fpa-cq { container: fpa / inline-size; }
/* Size containment removes content-based width, so the Elementor wrapper must be told to fill its column. */
.elementor-widget[data-widget_type^="fpa-"] { width: 100%; max-width: 100%; }

/* ---------- Buttons ---------- */

.fpa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	border: 2px solid transparent;
	border-radius: 4px;
	font-family: var(--fpa-head);
	font-weight: 600;
	font-size: 13px;
	line-height: 1.2;
	white-space: nowrap;
	transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.fpa-btn:hover { transform: translateY(-1px); }
.fpa-btn .fpa-icon { width: 16px; height: 16px; }
.fpa-btn--accent { background: var(--fpa-accent); color: var(--fpa-on-accent); }
.fpa-btn--accent:hover { color: var(--fpa-on-accent); background: color-mix(in srgb, var(--fpa-accent) 88%, #000); }
.fpa-btn--light { background: #fff; color: var(--fpa-primary); }
.fpa-btn--light:hover { color: var(--fpa-primary); background: #eef1f6; }
.fpa-btn--outline { border-color: currentColor; color: var(--fpa-primary); }
.fpa-btn--lg { padding: 13px 24px; font-size: 14px; }

/* ==========================================================================
   Header
   ========================================================================== */

.fpa-utility {
	background: var(--fpa-primary-deep);
	color: rgba(255, 255, 255, .8);
	font-size: 12px;
}
.fpa-utility__inner { display: flex; align-items: center; gap: 24px; min-height: 36px; }
.fpa-utility__menu ul { display: flex; gap: 18px; margin: 0; padding: 0; list-style: none; }
.fpa-utility__menu a:hover,
.fpa-utility a:hover { color: #fff; }
.fpa-utility__end { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.fpa-utility__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; color: #fff; }
.fpa-utility__link .fpa-icon { width: 15px; height: 15px; }

.fpa-social { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; }
.fpa-social a { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; transition: background .15s, color .15s; }
.fpa-social .fpa-icon { width: 15px; height: 15px; }
.fpa-social--utility a { width: 26px; height: 26px; color: rgba(255, 255, 255, .8); }
.fpa-social--utility a:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.fpa-masthead { background: #fff; }
.fpa-masthead__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 18px; padding-bottom: 18px; }
.fpa-masthead__brand { display: flex; align-items: center; gap: 18px; }
.fpa-masthead__tagline {
	padding-left: 18px;
	border-left: 1px solid var(--fpa-line);
	max-width: 170px;
	font-family: var(--fpa-head);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--fpa-muted);
}

/* Logo image */
.fpa-logo { display: inline-flex; align-items: center; line-height: 0; }
.fpa-logo__img { width: auto; height: 80px; }
.fpa-masthead__inner { padding-top: 12px; padding-bottom: 12px; }
.fpa-logo--drawer .fpa-logo__img { height: 44px; }
/* Logo in brand orange everywhere: the SVG filter in header.php recolours the grey lettering
   to orange and keeps the white map stripes, so it reads on white and on navy alike. */
.fpa-logo__img { filter: url(#fpa-logo-orange); }
.fpa-logo--compact .fpa-logo__img { height: 32px; }
.fpa-logo--light .fpa-logo__img { height: 72px; }
.fpa-masthead__actions { display: flex; align-items: center; gap: 14px; }

.fpa-masthead__search {
	display: flex;
	align-items: center;
	width: 280px;
	border: 1px solid var(--fpa-line);
	border-radius: 999px;
	background: var(--fpa-soft);
	transition: border-color .15s, background .15s;
}
.fpa-masthead__search:focus-within { border-color: var(--fpa-primary); background: #fff; }
.fpa-masthead__search input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 9px 4px 9px 16px;
	font: inherit;
	font-size: 14px;
	outline: none;
}
.fpa-masthead__search button { border: 0; background: none; padding: 8px 14px; color: var(--fpa-primary); display: inline-flex; }

.fpa-wordmark { display: inline-flex; flex-direction: column; line-height: 1; color: var(--fpa-primary); }
.fpa-wordmark:hover { color: var(--fpa-primary); }
.fpa-wordmark__name {
	font-family: var(--fpa-head);
	font-weight: 800;
	font-size: clamp(26px, 3.4vw, 38px);
	letter-spacing: -1px;
}
.fpa-wordmark__accent { color: var(--fpa-accent); }
.fpa-wordmark__tagline {
	font-family: var(--fpa-head);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--fpa-muted);
	margin-top: 6px;
}
.fpa-wordmark--light,
.fpa-wordmark--light:hover { color: #fff; }
.fpa-wordmark--light .fpa-wordmark__tagline { color: rgba(255, 255, 255, .55); }
.fpa-wordmark--compact .fpa-wordmark__name { font-size: 20px; letter-spacing: -.5px; }

/* Main navigation */
.fpa-nav {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--fpa-primary);
	color: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}
.admin-bar .fpa-nav { top: 32px; }
.fpa-nav__inner { display: flex; align-items: stretch; min-height: 50px; }
.fpa-nav__home { display: inline-flex; align-items: center; padding: 0 14px 0 0; color: #fff; }
.fpa-nav__home:hover { color: #fff; opacity: .8; }
.fpa-nav__compact-logo { display: none; align-items: center; padding-right: 18px; margin-right: 6px; border-right: 1px solid rgba(255, 255, 255, .15); }
.fpa-nav__compact-logo .fpa-wordmark { color: #fff; }
.fpa-nav.is-stuck .fpa-nav__compact-logo { display: flex; }
.fpa-nav.is-stuck .fpa-nav__home { display: none; }
.fpa-nav__menu { flex: 1; min-width: 0; }

.fpa-menu { display: flex; flex-wrap: wrap; height: 100%; margin: 0; padding: 0; list-style: none; }
.fpa-menu > li { position: relative; display: flex; }
.fpa-menu > li > a {
	display: flex;
	align-items: center;
	padding: 0 14px;
	font-family: var(--fpa-head);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: #fff;
	box-shadow: inset 0 -3px 0 transparent;
	transition: background .15s, box-shadow .15s;
}
.fpa-menu > li > a:hover,
.fpa-menu > li:focus-within > a { background: rgba(255, 255, 255, .08); color: #fff; }
.fpa-menu > .current-menu-item > a,
.fpa-menu > .current-menu-ancestor > a,
.fpa-menu > .current-post-ancestor > a { box-shadow: inset 0 -3px 0 var(--fpa-accent); }
.fpa-menu .menu-item-has-children > a::after {
	content: "";
	width: 6px; height: 6px;
	margin-left: 8px;
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	transform: translateY(-2px) rotate(45deg);
}
.fpa-menu .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	min-width: 230px;
	max-height: 70vh;
	overflow-y: auto;
	margin: 0; padding: 8px 0;
	list-style: none;
	background: #fff;
	border-top: 3px solid var(--fpa-accent);
	box-shadow: var(--fpa-shadow);
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: .15s;
}
.fpa-menu li:hover > .sub-menu,
.fpa-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.fpa-menu .sub-menu a { display: block; padding: 8px 18px; font-size: 14px; color: var(--fpa-ink); }
.fpa-menu .sub-menu a:hover { background: var(--fpa-soft); color: var(--fpa-accent-ink); }

/* Support button in the mobile bar (hidden on desktop, where the masthead has Donate). */
.fpa-nav__support { display: none; padding: 7px 12px; font-size: 12px; border-radius: 3px; margin-right: 4px; }
.fpa-nav__support .fpa-icon { width: 14px; height: 14px; }
.fpa-nav__support:hover { transform: none; }
.fpa-nav__toggle,
.fpa-nav__search-toggle { background: none; border: 0; padding: 0 12px; color: #fff; display: inline-flex; align-items: center; }
.fpa-nav__toggle { display: none; padding-left: 0; }
.fpa-nav__search-toggle { margin-right: -12px; }
.fpa-search { background: #fff; border-bottom: 1px solid var(--fpa-line); padding: 14px 0; color: var(--fpa-ink); }

.search-form { display: flex; gap: 8px; }
.search-form label { flex: 1; }
.search-field {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid #cfd4dc;
	border-radius: 4px;
	font: inherit;
}
.search-field:focus { border-color: var(--fpa-primary); outline: none; }
.search-submit {
	padding: 11px 20px;
	background: var(--fpa-primary);
	color: #fff;
	border: 0;
	border-radius: 4px;
	font-family: var(--fpa-head);
	font-weight: 600;
}

/* Quick story search dropdown */
.fpa-qs-host { position: relative; }
.fpa-qs {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 120;
	min-width: 320px;
	max-height: min(70vh, 480px);
	overflow-y: auto;
	background: #fff;
	border: 1px solid var(--fpa-line);
	border-top: 3px solid var(--fpa-accent);
	border-radius: 4px;
	box-shadow: 0 16px 40px rgba(10, 20, 40, .18);
	text-align: left;
	color: var(--fpa-ink);
}
.fpa-masthead__search .fpa-qs { left: auto; width: 420px; }
.fpa-qs__item { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 12px; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--fpa-line); color: var(--fpa-ink); }
.fpa-qs__item:hover,
.fpa-qs__item.is-active { background: var(--fpa-soft); color: var(--fpa-ink); }
.fpa-qs__thumb { display: block; width: 56px; height: 56px; border-radius: 3px; object-fit: cover; background: var(--fpa-soft); }
.fpa-qs__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fpa-qs__cat { font-family: var(--fpa-head); font-size: 10px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--fpa-accent-ink); }
.fpa-qs__title { font-family: var(--fpa-head); font-size: 14px; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fpa-qs__date { font-size: 12px; color: var(--fpa-muted); }
.fpa-qs__status { padding: 14px; font-size: 14px; color: var(--fpa-muted); }
.fpa-qs__all { display: block; padding: 11px 14px; font-family: var(--fpa-head); font-size: 13px; font-weight: 600; color: var(--fpa-primary); background: #fafbfc; }
.fpa-qs__all:hover { color: var(--fpa-accent-ink); }
@media (max-width: 560px) {
	.fpa-qs { min-width: 0; }
}

/* Breaking news ticker */
.fpa-ticker { background: #fff; border-bottom: 1px solid var(--fpa-line); }
.fpa-ticker__inner { display: flex; align-items: center; gap: 16px; height: 44px; }
.fpa-ticker__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: none;
	height: 28px;
	padding: 0 12px;
	border-radius: 3px;
	background: var(--fpa-accent);
	color: var(--fpa-on-accent);
	font-family: var(--fpa-head);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
}
.fpa-ticker__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--fpa-on-accent); animation: fpa-pulse 1.4s ease-in-out infinite; }
@keyframes fpa-pulse { 50% { opacity: .25; transform: scale(.7); } }
.fpa-ticker__viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 40px), transparent);
}
.fpa-ticker__track {
	display: flex;
	width: max-content;
	margin: 0; padding: 0;
	list-style: none;
	animation: fpa-ticker var(--fpa-ticker-duration, 70s) linear infinite;
}
.fpa-ticker:hover .fpa-ticker__track,
.fpa-ticker:focus-within .fpa-ticker__track { animation-play-state: paused; }
@keyframes fpa-ticker { to { transform: translateX(-50%); } }
.fpa-ticker__track li { display: flex; align-items: center; gap: 10px; padding-right: 36px; white-space: nowrap; font-size: 14px; }
.fpa-ticker__track li::after { content: ""; width: 5px; height: 5px; margin-left: 26px; border-radius: 50%; background: var(--fpa-line); }
.fpa-ticker__track time { font-size: 12px; font-weight: 700; color: var(--fpa-accent-ink); }
.fpa-ticker__track a { font-weight: 500; color: var(--fpa-ink); }
.fpa-ticker__track a:hover { color: var(--fpa-accent-ink); }

/* Advertisements (header, in-feed billboards, rail rectangles) */
.fpa-ad--header { background: #fff; }
.fpa-ad__inner { display: flex; flex-direction: column; align-items: stretch; }
.fpa-ad--header .fpa-ad__inner { padding-top: 16px; }
.fpa-ad--rectangle .fpa-ad__slot { min-height: 250px; }
.fpa-ad--inarticle { margin: 28px 0 30px; padding: 12px 0 14px; border-top: 1px solid var(--fpa-line); border-bottom: 1px solid var(--fpa-line); }
.fpa-ad--inarticle .fpa-ad__slot { min-height: 250px; }
.fpa-ad--inarticle .fpa-ad__placeholder { height: 250px; }
.fpa-ad--articleend { margin: 32px 0 8px; padding-top: 12px; border-top: 1px solid var(--fpa-line); }
.fpa-ad--articleend .fpa-ad__slot { min-height: 250px; }
.fpa-ad--articleend .fpa-ad__placeholder { height: 250px; }
/* End-of-article house ad: wide layout (text left, buttons right). */
.fpa-ad--articleend .fpa-house-ad {
	display: none;
	min-height: 0;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 24px;
}
.fpa-ad--articleend .fpa-house-ad > p { flex: 1 1 100%; }
.fpa-ad--articleend .fpa-house-ad .fpa-btn { width: auto; flex: 1 1 200px; }
.entry-content .fpa-house-ad a { color: inherit; text-decoration: none; }
.fpa-ad__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
	padding: 12px;
	border: 2px dashed #cfd5de;
	border-radius: 4px;
	background: repeating-linear-gradient(45deg, var(--fpa-soft), var(--fpa-soft) 10px, #fff 10px, #fff 20px);
	font-family: var(--fpa-head);
	font-size: 12px;
	font-weight: 600;
	color: var(--fpa-muted);
}
.fpa-ad--rectangle .fpa-ad__placeholder { height: 250px; }
.fpa-ad__label {
	align-self: center;
	margin-bottom: 4px;
	line-height: 1;
	font-family: var(--fpa-head);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--fpa-muted);
}
/* Reserve the unit's height so the page doesn't jump when the ad loads. */
/* Full content width (same edges as the page), reserving a banner's height to avoid layout shift. */
.fpa-ad__slot { width: 100%; max-width: 100%; min-height: 90px; overflow: hidden; text-align: center; }
.fpa-ad__slot ins.adsbygoogle { display: block; width: 100%; }
.fpa-ad__slot ins.adsbygoogle[data-ad-status="unfilled"] { display: none !important; }
.fpa-ad__slot:has(ins[data-ad-status="unfilled"]) { min-height: 0; }
/* No ad available: hide the whole slot, label included, instead of leaving an empty box... */
.fpa-ad:has(ins.adsbygoogle[data-ad-status="unfilled"]) { display: none; }
/* ...except rail rectangles, which switch to the house ad so the rail keeps its height. */
.fpa-house-ad { display: none; }
.fpa-ad--rectangle:has(ins.adsbygoogle[data-ad-status="unfilled"]) { display: block; }
.fpa-ad--rectangle:has(ins.adsbygoogle[data-ad-status="unfilled"]) .fpa-ad__label,
.fpa-ad--rectangle:has(ins.adsbygoogle[data-ad-status="unfilled"]) .fpa-ad__slot { display: none; }
.fpa-ad--rectangle:has(ins.adsbygoogle[data-ad-status="unfilled"]) .fpa-house-ad { display: flex; }
.fpa-house-ad {
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	min-height: 264px;
	padding: 24px 22px;
	border-radius: var(--fpa-radius);
	color: #fff;
	background:
		radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--fpa-accent) 45%, transparent) 0, transparent 45%),
		linear-gradient(150deg, var(--fpa-primary-deep), var(--fpa-primary));
}
.fpa-house-ad p { margin: 0; }
.fpa-house-ad__eyebrow { font-family: var(--fpa-head); font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--fpa-accent); }
.fpa-house-ad__title { font-family: var(--fpa-head); font-size: 19px; font-weight: 700; line-height: 1.25; }
.fpa-house-ad__text { font-size: 14px; color: rgba(255, 255, 255, .8); margin-bottom: 4px !important; }
.fpa-house-ad .fpa-btn { width: 100%; }
.fpa-house-ad .fpa-btn--light:hover { color: var(--fpa-primary); }
/* Rail rectangles stay in view while the reader scrolls past the section beside them, so
   any height difference between the section and the rail is travel room, not dead space. */
.elementor-widget-fpa-ad:has(.fpa-ad--rectangle),
.fpa-row__col > .fpa-ad--rectangle { position: sticky; top: 78px; }
.admin-bar .elementor-widget-fpa-ad:has(.fpa-ad--rectangle),
.admin-bar .fpa-row__col > .fpa-ad--rectangle { top: 110px; }
@media (max-width: 1024px) {
	.elementor-widget-fpa-ad:has(.fpa-ad--rectangle),
	.fpa-row__col > .fpa-ad--rectangle { position: static; }
}
@media (max-width: 782px) {
	.fpa-ad--hide-phone { display: none; }
	.fpa-ad--header .fpa-ad__inner { padding-top: 12px; }
}

/* Mobile drawer */
.fpa-drawer { position: fixed; inset: 0; z-index: 200; }
.fpa-drawer[hidden] { display: none; }
.fpa-drawer__backdrop { position: absolute; inset: 0; background: rgba(5, 12, 25, .55); }
.fpa-drawer__panel {
	position: relative;
	z-index: 1;
	width: min(340px, 88vw);
	height: 100%;
	overflow-y: auto;
	background: #fff;
	padding: 18px 20px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	animation: fpa-drawer-in .22s ease;
}
@keyframes fpa-drawer-in { from { transform: translateX(-100%); } }
.fpa-drawer__head { display: flex; align-items: center; justify-content: space-between; }
.fpa-drawer__close { border: 0; background: var(--fpa-soft); border-radius: 50%; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; color: var(--fpa-ink); }
.fpa-drawer__menu { margin: 0; padding: 0; list-style: none; }
.fpa-drawer__menu a { display: block; padding: 11px 0; border-bottom: 1px solid var(--fpa-line); font-family: var(--fpa-head); font-weight: 600; font-size: 15px; color: var(--fpa-ink); }
.fpa-drawer__menu .sub-menu { list-style: none; margin: 0; padding: 0 0 0 14px; }
.fpa-drawer__menu .sub-menu a { font-weight: 500; font-size: 14px; color: var(--fpa-text); }
.fpa-drawer__actions { display: grid; gap: 10px; }
.fpa-drawer .fpa-social a { background: var(--fpa-soft); color: var(--fpa-primary); }
body.fpa-drawer-open { overflow: hidden; }

/* ==========================================================================
   Layout
   ========================================================================== */

.fpa-main { padding: 24px 0 36px; }

.fpa-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: var(--fpa-gap);
	align-items: start;
}
.fpa-layout__sidebar { position: sticky; top: 70px; display: grid; gap: 28px; }
.admin-bar .fpa-layout__sidebar { top: 102px; }
/* Article sidebars with ads: the sidebar scrolls normally and spans the article's height,
   and only the bottom ad stays pinned while the reader continues down the article. */
.fpa-layout__sidebar:has(.fpa-sidebar-sticky) { position: static; align-self: stretch; align-content: start; }
.fpa-sidebar-sticky { position: sticky; top: 78px; }
.admin-bar .fpa-sidebar-sticky { top: 110px; }
.fpa-ad--sidebar .fpa-ad__slot { min-height: 250px; }
@media (max-width: 1024px) {
	/* Single-column layout: the sidebar sits below the article, which already has its own ads. */
	.fpa-ad--sidebar,
	.fpa-sidebar-sticky { display: none; }
}

.fpa-row { display: flex; gap: var(--fpa-gap); margin-bottom: 28px; }
.fpa-row__col { flex: 1 1 0; min-width: 0; }
.fpa-row__col[style*="--fpa-col:66"] { flex-grow: 2; }


/* Elementor pages: let Elementor own the spacing between sections. */
.fpa-elementor-content .fpa-block + .fpa-block { margin-top: 28px; }
.fpa-elementor-content > .elementor { margin-top: -4px; }

/* ==========================================================================
   Section heading — one style for every block, widget and sidebar.
   ========================================================================== */

.fpa-section-head {
	--fpa-head-accent: var(--fpa-accent);
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 18px;
}
.fpa-section-head::after {
	content: "";
	order: 1;
	flex: 1;
	height: 2px;
	background: var(--fpa-line);
}
.fpa-section-head__title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-family: var(--fpa-head);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.2px;
	color: var(--fpa-ink);
	white-space: nowrap;
}
.fpa-section-head__title::before {
	content: "";
	width: 5px;
	height: 20px;
	border-radius: 1px;
	background: var(--fpa-head-accent);
}
.fpa-section-head__title a { color: inherit; }
.fpa-section-head__title a:hover { color: var(--fpa-accent-ink); }
.fpa-section-head__more {
	order: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--fpa-head);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .4px;
	color: var(--fpa-muted);
	white-space: nowrap;
}
.fpa-section-head__more .fpa-icon { width: 14px; height: 14px; transition: transform .15s; }
.fpa-section-head__more:hover { color: var(--fpa-accent-ink); }
.fpa-section-head__more:hover .fpa-icon { transform: translateX(3px); }

/* ==========================================================================
   Cards
   ========================================================================== */

.fpa-card { position: relative; min-width: 0; }
.fpa-thumb { display: block; position: relative; overflow: hidden; background: #dde1e7; border-radius: 4px; }
/* Images are absolutely positioned so they always fill the frame the aspect ratio defines. */
.fpa-thumb__img,
.fpa-thumb__placeholder { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; }
.fpa-thumb__img { transition: transform .5s ease; }
.fpa-card:hover .fpa-thumb__img { transform: scale(1.04); }
.fpa-thumb__placeholder { display: block; background: linear-gradient(135deg, #e6e9ee, #cfd5de); }
.fpa-thumb--fpa-large,
.fpa-thumb--fpa-medium { aspect-ratio: 16 / 10; }
.fpa-thumb--fpa-small { aspect-ratio: 4 / 3; }

.fpa-cat {
	display: inline-block;
	font-family: var(--fpa-head);
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .6px;
	color: var(--fpa-accent-ink);
	margin-bottom: 6px;
}
.fpa-cat:hover { color: var(--fpa-primary); }
.fpa-cat--chip {
	background: var(--fpa-accent);
	color: var(--fpa-on-accent);
	padding: 4px 9px 3px;
	border-radius: 2px;
	margin-bottom: 10px;
}
.fpa-cat--chip:hover { color: #fff; background: var(--fpa-primary); }

.fpa-card__title {
	margin: 0 0 6px;
	font-family: var(--fpa-head);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -.2px;
	color: var(--fpa-ink);
}
.fpa-card__title a:hover { color: var(--fpa-accent-ink); }

.fpa-meta { display: flex; align-items: center; gap: 10px; min-width: 0; font-size: 12px; color: var(--fpa-muted); }
.fpa-meta__author { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; color: var(--fpa-ink); }
.fpa-meta__date { flex: none; white-space: nowrap; }
.fpa-meta__author + .fpa-meta__date::before { content: ""; display: inline-block; width: 3px; height: 3px; margin: 0 10px 2px 0; border-radius: 50%; background: currentColor; vertical-align: middle; }
.fpa-meta__date { font-size: 12px; color: var(--fpa-muted); }
.fpa-card__excerpt { margin: 8px 0; font-size: 15px; line-height: 1.55; color: var(--fpa-text); }

/* Grid card */
.fpa-card--grid .fpa-card__body { padding-top: 12px; }
.fpa-card--grid .fpa-card__title { font-size: 17px; }

/* Row card */
.fpa-card--row {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}
.fpa-card--row .fpa-card__title { font-size: 14.5px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
/* Compact items show the time only, as most news sites do in lists. */
.fpa-card--row .fpa-meta__author,
.fpa-card--row .fpa-meta__date::before { display: none; }

/* Text card */
.fpa-card--text .fpa-card__title { font-size: 15.5px; }

/* Lists of rows/texts */
.fpa-list { display: grid; }
.fpa-list > .fpa-card { padding: 14px 0; border-top: 1px solid var(--fpa-line); }
.fpa-list > .fpa-card:first-child { padding-top: 0; border-top: 0; }
.fpa-list > .fpa-card:last-child { padding-bottom: 0; }
.fpa-list--text > .fpa-card:first-child { padding-top: 14px; border-top: 1px solid var(--fpa-line); }

/* Overlay card */
.fpa-card--overlay { overflow: hidden; border-radius: var(--fpa-radius); background: #111; color: #fff; isolation: isolate; }
.fpa-card--overlay .fpa-thumb { border-radius: 0; height: 100%; aspect-ratio: auto; }
.fpa-card--overlay .fpa-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(3, 8, 20, .55) 62%, rgba(3, 8, 20, .92) 100%);
	pointer-events: none;
}
.fpa-card--overlay .fpa-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 22px; }
.fpa-card--overlay .fpa-card__title { color: #fff; font-size: 18px; text-shadow: 0 1px 12px rgba(0, 0, 0, .3); }
.fpa-card--overlay .fpa-card__title a:hover { color: #fff; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.fpa-card--overlay .fpa-card__excerpt { color: rgba(255, 255, 255, .85); }
.fpa-card--overlay .fpa-meta,
.fpa-card--overlay .fpa-meta__date { color: rgba(255, 255, 255, .75); }
.fpa-card--overlay .fpa-meta__author { color: #fff; }

/* Play badge */
.fpa-card__play {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px; height: 58px;
	left: 50%; top: 42%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: var(--fpa-accent);
	color: var(--fpa-on-accent);
	box-shadow: 0 0 0 8px rgba(255, 255, 255, .18);
	pointer-events: none;
	transition: transform .2s;
}
.fpa-card__play .fpa-icon { width: 26px; height: 26px; margin-left: 3px; }
.fpa-card:hover .fpa-card__play { transform: translate(-50%, -50%) scale(1.08); }
.fpa-card--row .fpa-card__play { width: 30px; height: 30px; left: 56px; top: 42px; box-shadow: 0 0 0 4px rgba(255, 255, 255, .2); }
.fpa-card--row .fpa-card__play .fpa-icon { width: 14px; height: 14px; margin-left: 2px; }

/* Opinion card */
.fpa-card--opinion {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	padding: 22px;
	border: 1px solid var(--fpa-line);
	border-top: 3px solid var(--fpa-primary);
	border-radius: 4px;
	background: #fff;
	transition: box-shadow .2s, transform .2s;
}
.fpa-card--opinion:hover { box-shadow: var(--fpa-shadow); transform: translateY(-2px); }
.fpa-avatar { display: block; border-radius: 50%; object-fit: cover; }
.fpa-avatar--initials {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--fpa-primary);
	color: #fff;
	font-family: var(--fpa-head);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: .5px;
}
.fpa-card__avatar .fpa-avatar { width: 60px; height: 60px; box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--fpa-line); }
.fpa-author-box .fpa-avatar { width: 72px; height: 72px; flex: none; }
.fpa-card__byline { font-family: var(--fpa-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--fpa-accent-ink); }
.fpa-card--opinion .fpa-card__title { font-size: 17px; margin: 6px 0 10px; }
.fpa-card--opinion .fpa-card__title::before { content: "\201C"; display: block; height: 22px; font-size: 48px; line-height: 1; color: var(--fpa-line); font-family: Georgia, serif; }

/* ==========================================================================
   Grids
   ========================================================================== */

.fpa-grid { display: grid; gap: 26px 24px; }
.fpa-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fpa-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fpa-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@container fpa (max-width: 860px) { .fpa-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@container fpa (max-width: 700px) { .fpa-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@container fpa (max-width: 460px) { .fpa-grid--2, .fpa-grid--3, .fpa-grid--4 { grid-template-columns: minmax(0, 1fr); } }

/* ==========================================================================
   Blocks
   ========================================================================== */

.fpa-block { min-width: 0; }

/* Dark panel blocks */
.fpa-panel {
	background: var(--fpa-primary);
	color: rgba(255, 255, 255, .85);
	border-radius: var(--fpa-radius);
	padding: 26px;
}
.fpa-panel .fpa-section-head::after { background: rgba(255, 255, 255, .15); }
.fpa-panel .fpa-section-head__title,
.fpa-panel .fpa-card__title,
.fpa-panel .fpa-meta__author { color: #fff; }
.fpa-panel .fpa-section-head__more,
.fpa-panel .fpa-meta,
.fpa-panel .fpa-meta__date { color: rgba(255, 255, 255, .6); }
.fpa-panel .fpa-section-head__more:hover { color: #fff; }
.fpa-panel .fpa-card__excerpt { color: rgba(255, 255, 255, .8); }
.fpa-panel .fpa-cat:not(.fpa-cat--chip) { color: var(--fpa-accent); }
.fpa-panel a:hover,
.fpa-panel .fpa-card__title a:hover { color: var(--fpa-accent); }
.fpa-panel .fpa-list > .fpa-card { border-color: rgba(255, 255, 255, .12); }
.fpa-panel .fpa-thumb { background: rgba(255, 255, 255, .08); }

/* Top Stories */
.fpa-top-stories {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: var(--fpa-gap);
	align-items: start;
}
@container fpa (max-width: 920px) {
	.fpa-top-stories { grid-template-columns: minmax(0, 1fr); }
}

.fpa-slider { min-width: 0; }
.fpa-slider__viewport {
	position: relative;
	aspect-ratio: 16 / 9.4;
	border-radius: var(--fpa-radius);
	overflow: hidden;
	background: #111;
}
.fpa-slider__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .7s ease, visibility .7s;
}
.fpa-slider__slide.is-active { opacity: 1; visibility: visible; }
.fpa-slider__slide .fpa-card { height: 100%; border-radius: 0; }
.fpa-slider__slide .fpa-thumb__img { transform: scale(1.06); transition: transform 7s ease-out; }
.fpa-slider__slide.is-active .fpa-thumb__img { transform: scale(1); }
.fpa-card--slide .fpa-card__body { padding: 32px 36px; max-width: 860px; }
.fpa-card--slide .fpa-card__title { font-size: clamp(22px, 3cqi, 34px); font-weight: 700; line-height: 1.18; letter-spacing: -.5px; margin-bottom: 10px; }
.fpa-card--slide .fpa-card__excerpt { font-size: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fpa-slider__arrow {
	position: absolute;
	top: 16px;
	z-index: 3;
	width: 40px; height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: var(--fpa-primary);
	box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
	opacity: 0;
	transition: opacity .2s, background .15s;
}
.fpa-slider__arrow--prev { right: 64px; }
.fpa-slider__arrow--next { right: 16px; }
.fpa-slider:hover .fpa-slider__arrow,
.fpa-slider__arrow:focus-visible { opacity: 1; }
.fpa-slider__arrow:hover { background: var(--fpa-accent); color: var(--fpa-on-accent); }

.fpa-slider__tabs {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(0, 1fr);
	gap: 14px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}
.fpa-slider__tab {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 4px 8px;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	text-align: left;
	color: var(--fpa-muted);
}
.fpa-slider__progress { grid-column: 1 / -1; position: relative; height: 3px; margin-bottom: 8px; background: var(--fpa-line); border-radius: 2px; overflow: hidden; }
.fpa-slider__progress::after { content: ""; position: absolute; inset: 0; transform: scaleX(0); transform-origin: left; background: var(--fpa-accent); }
.fpa-slider__tab.is-active .fpa-slider__progress::after { animation: fpa-progress var(--fpa-interval, 6000ms) linear forwards; }
.fpa-slider.is-paused .fpa-slider__tab.is-active .fpa-slider__progress::after,
.fpa-slider[data-interval="0"] .fpa-slider__tab.is-active .fpa-slider__progress::after { animation: none; transform: scaleX(1); }
@keyframes fpa-progress { to { transform: scaleX(1); } }
.fpa-slider__num { font-family: var(--fpa-head); font-weight: 800; font-size: 13px; color: var(--fpa-line); line-height: 1.35; }
.fpa-slider__tab-title { font-family: var(--fpa-head); font-weight: 600; font-size: 13px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .15s; }
.fpa-slider__tab:hover .fpa-slider__tab-title,
.fpa-slider__tab.is-active .fpa-slider__tab-title { color: var(--fpa-ink); }
.fpa-slider__tab.is-active .fpa-slider__num { color: var(--fpa-accent-ink); }
@container fpa (max-width: 640px) {
	.fpa-slider__viewport { aspect-ratio: 4 / 4.2; }
	.fpa-card--slide .fpa-card__body { padding: 20px; }
	.fpa-card--slide .fpa-card__excerpt { display: none; }
	.fpa-slider__tab-title { display: none; }
	.fpa-slider__tabs { gap: 8px; }
	.fpa-slider__num { display: none; }
	.fpa-slider__progress { margin: 0; }
	.fpa-slider__arrow { opacity: 1; width: 36px; height: 36px; top: 12px; }
	.fpa-slider__arrow--prev { right: 56px; }
	.fpa-slider__arrow--next { right: 12px; }
}

.fpa-top-stories__side { min-width: 0; }

/* Mosaic */
.fpa-mosaic__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: repeat(2, 230px);
	gap: 12px;
}
.fpa-mosaic__main { grid-row: span 2; }
.fpa-mosaic__grid .fpa-card--overlay .fpa-thumb { position: absolute; inset: 0; }
.fpa-mosaic__main .fpa-card__title { font-size: clamp(20px, 2.4cqi, 28px); font-weight: 700; }
.fpa-mosaic__main .fpa-card__excerpt { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fpa-mosaic__tile .fpa-card__body { padding: 16px; }
.fpa-mosaic__tile .fpa-card__title { font-size: 15px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.fpa-mosaic__tile .fpa-cat--chip { margin-bottom: 6px; }
@container fpa (max-width: 860px) {
	.fpa-mosaic__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px repeat(2, 190px); }
	.fpa-mosaic__main { grid-column: 1 / -1; grid-row: auto; }
}
@container fpa (max-width: 460px) {
	.fpa-mosaic__grid { grid-template-columns: 1fr; grid-template-rows: 260px; grid-auto-rows: 190px; }
}

/* Category section */
.fpa-category-section__body {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: var(--fpa-gap);
	align-items: start;
}
.fpa-category-section__main { min-width: 0; }
.fpa-category-section__more { margin-top: 18px; }
.fpa-category-section__more .fpa-card__title { font-size: 15px; }
.fpa-card--lead .fpa-card__title { font-size: clamp(20px, 2.6cqi, 26px); font-weight: 700; line-height: 1.22; }
@container fpa (max-width: 620px) {
	.fpa-category-section__body { grid-template-columns: minmax(0, 1fr); gap: 20px; }
}

/* Trending */
.fpa-trending__list { counter-reset: fpa-trend; margin: 0; padding: 0; list-style: none; }
.fpa-trending__list li {
	counter-increment: fpa-trend;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 14px 0;
	border-top: 1px solid var(--fpa-line);
}
.fpa-trending__list li:first-child { padding-top: 0; border-top: 0; }
.fpa-trending__list li::before {
	content: counter(fpa-trend, decimal-leading-zero);
	font-family: var(--fpa-head);
	font-weight: 800;
	font-size: 30px;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--fpa-accent);
}
.fpa-trending .fpa-card__title { font-size: 15px; }
.fpa-trending .fpa-cat { margin-bottom: 3px; }

/* Category column */
.fpa-category-column .fpa-card--grid .fpa-card__title { font-size: 18px; }

/* Spotlight */
.fpa-spotlight__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
	grid-template-rows: repeat(3, auto);
	gap: 18px var(--fpa-gap);
}
.fpa-spotlight__main { grid-row: 1 / span 3; min-height: 380px; }
.fpa-spotlight__main .fpa-thumb { position: absolute; inset: 0; }
.fpa-spotlight__main .fpa-card__title { font-size: clamp(20px, 2.4cqi, 28px); font-weight: 700; }
.fpa-spotlight__item { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 16px; align-items: start; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.fpa-spotlight__item:last-child { border-bottom: 0; padding-bottom: 0; }
.fpa-spotlight__item .fpa-card__body { padding-top: 0; }
.fpa-spotlight__item .fpa-card__title { font-size: 15.5px; }
@container fpa (max-width: 760px) {
	.fpa-spotlight__grid { grid-template-columns: minmax(0, 1fr); }
	.fpa-spotlight__main { grid-row: auto; min-height: 300px; }
}
@container fpa (max-width: 420px) {
	.fpa-spotlight__item { grid-template-columns: 110px minmax(0, 1fr); }
}

/* Opinion */
.fpa-opinion__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
@container fpa (max-width: 900px) { .fpa-opinion__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@container fpa (max-width: 460px) { .fpa-opinion__grid { grid-template-columns: minmax(0, 1fr); } }

/* Video */
.fpa-video { background: #0b0f17; }
.fpa-video__body { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: var(--fpa-gap); align-items: start; }
.fpa-video__main .fpa-thumb { aspect-ratio: 16 / 9; }
.fpa-video__main .fpa-card__title { font-size: clamp(18px, 2.2cqi, 24px); font-weight: 700; }
.fpa-video .fpa-card--row { grid-template-columns: 140px minmax(0, 1fr); }
.fpa-video .fpa-card--row .fpa-card__play { left: 70px; top: 50px; }
@container fpa (max-width: 760px) { .fpa-video__body { grid-template-columns: minmax(0, 1fr); } }

/* Support banner */
.fpa-support {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px 40px;
	align-items: center;
	padding: 36px 40px;
	border-radius: var(--fpa-radius);
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(circle at 92% 20%, color-mix(in srgb, var(--fpa-accent) 55%, transparent) 0, transparent 38%),
		linear-gradient(120deg, var(--fpa-primary-deep), var(--fpa-primary));
}
.fpa-support__eyebrow { margin: 0 0 6px; font-family: var(--fpa-head); font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--fpa-accent); }
.fpa-support__title { margin: 0 0 8px; font-family: var(--fpa-head); font-size: clamp(22px, 3cqi, 30px); font-weight: 700; line-height: 1.2; color: #fff; }
.fpa-support__desc { margin: 0; max-width: 640px; color: rgba(255, 255, 255, .8); }
.fpa-support .fpa-btn--light:hover { color: var(--fpa-primary); }
.fpa-support__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@container fpa (max-width: 720px) {
	.fpa-support { grid-template-columns: minmax(0, 1fr); padding: 28px 24px; }
	.fpa-support__actions .fpa-btn { flex: 1 1 200px; }
}

/* ==========================================================================
   Archive / page
   ========================================================================== */

.fpa-breadcrumbs { font-size: 13px; color: var(--fpa-muted); margin-bottom: 12px; }
.fpa-breadcrumbs a:hover { color: var(--fpa-accent-ink); }
.fpa-breadcrumbs__sep { margin: 0 8px; }

.fpa-page-header { margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--fpa-line); }
.fpa-page-title {
	font-family: var(--fpa-head);
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	letter-spacing: -.6px;
	line-height: 1.2;
	color: var(--fpa-ink);
	margin: 0;
}
.fpa-page-description { margin-top: 8px; color: var(--fpa-muted); }
.fpa-page-search { margin-top: 16px; max-width: 560px; }
.fpa-page { max-width: 860px; }

.pagination { margin-top: 36px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 6px; }
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border: 1px solid var(--fpa-line);
	border-radius: 4px;
	font-family: var(--fpa-head);
	font-size: 14px;
	font-weight: 600;
	color: var(--fpa-ink);
}
.page-numbers.current { background: var(--fpa-primary); color: #fff; border-color: var(--fpa-primary); }
a.page-numbers:hover { border-color: var(--fpa-primary); color: var(--fpa-primary); }

/* ==========================================================================
   Single article
   ========================================================================== */

.fpa-article__cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.fpa-article__cats .fpa-cat { background: var(--fpa-accent); color: var(--fpa-on-accent); padding: 4px 9px 3px; border-radius: 2px; margin: 0; }
.fpa-article__cats .fpa-cat:hover { background: var(--fpa-primary); color: #fff; }
.fpa-article__title {
	font-family: var(--fpa-head);
	font-size: clamp(28px, 3.6vw, 42px);
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: -.8px;
	color: var(--fpa-ink);
	margin: 0 0 16px;
}
.fpa-article__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; margin-bottom: 22px; border-top: 1px solid var(--fpa-line); border-bottom: 1px solid var(--fpa-line); }
.fpa-article__meta .fpa-meta { font-size: 13px; }
.fpa-article__image { margin: 0 0 26px; }
.fpa-article__image img { width: 100%; border-radius: var(--fpa-radius); }
.fpa-article__image figcaption { font-size: 13px; color: var(--fpa-muted); margin-top: 8px; }

.entry-content { font-family: var(--fpa-body); font-size: 18px; line-height: 1.75; color: #1f2430; }
.entry-content > * { max-width: 100%; }
.entry-content p { margin: 0 0 1.25em; }
.entry-content a { color: var(--fpa-accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.entry-content h2, .entry-content h3, .entry-content h4 { font-family: var(--fpa-head); color: var(--fpa-ink); line-height: 1.3; margin: 1.6em 0 .6em; }
.entry-content blockquote { margin: 1.6em 0; padding: 6px 0 6px 22px; border-left: 4px solid var(--fpa-accent); font-size: 1.1em; font-style: italic; color: var(--fpa-ink); }
.entry-content img, .entry-content iframe, .entry-content video { max-width: 100%; border-radius: 4px; }
.entry-content figure { margin: 1.6em 0; max-width: 100%; }
.entry-content .wp-caption-text, .entry-content figcaption { font-size: 13px; color: var(--fpa-muted); }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 15px; }
.entry-content td, .entry-content th { border: 1px solid var(--fpa-line); padding: 8px 10px; }
.alignleft { float: left; margin: 0 1.2em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.2em; }
.aligncenter { margin-left: auto; margin-right: auto; }

.fpa-share { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.fpa-share a {
	display: inline-block;
	padding: 7px 12px;
	border-radius: 4px;
	font-family: var(--fpa-head);
	font-size: 12px;
	font-weight: 600;
	color: #fff;
}
.fpa-share a:hover { color: #fff; filter: brightness(1.1); }
.fpa-share__facebook { background: #1877f2; }
.fpa-share__x { background: #111; }
.fpa-share__whatsapp { background: #1fa855; }
.fpa-share__email { background: #6b7280; }

.fpa-article__support { margin-top: 32px; }
.fpa-article__support .fpa-support { padding: 30px 32px; }
.fpa-article__footer { margin-top: 30px; display: grid; gap: 22px; }
.fpa-tags { display: flex; flex-wrap: wrap; gap: 6px; font-size: 13px; }
.fpa-tags span { font-family: var(--fpa-head); font-weight: 700; margin-right: 6px; align-self: center; color: var(--fpa-ink); }
.fpa-tags a { background: var(--fpa-soft); padding: 5px 10px; border-radius: 3px; }
.fpa-author-box { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--fpa-soft); border-radius: var(--fpa-radius); }
.fpa-author-box img { border-radius: 50%; }
.fpa-author-box__name { font-family: var(--fpa-head); font-weight: 700; color: var(--fpa-ink); }
.fpa-author-box p { margin: 4px 0 0; font-size: 14px; color: var(--fpa-muted); }

.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.post-navigation .nav-next { text-align: right; }
.fpa-post-nav__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .6px; color: var(--fpa-accent-ink); text-transform: uppercase; margin-bottom: 4px; }
.fpa-post-nav__title { font-family: var(--fpa-head); font-weight: 600; line-height: 1.35; color: var(--fpa-ink); }

.fpa-related { margin-top: 40px; }

.fpa-comments { margin-top: 40px; }
.fpa-comments__title { font-family: var(--fpa-head); color: var(--fpa-ink); }
.fpa-comments__list { padding-left: 0; list-style: none; }
.fpa-comments .children { list-style: none; padding-left: 28px; }
.comment-body { padding: 14px 0; border-bottom: 1px solid var(--fpa-line); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea { width: 100%; padding: 11px; border: 1px solid #cfd4dc; border-radius: 4px; font: inherit; }
.comment-form .submit { background: var(--fpa-primary); color: #fff; border: 0; border-radius: 4px; padding: 11px 22px; font-family: var(--fpa-head); font-weight: 600; }

/* Widgets */
.widget { margin: 0; }
.widget ul { margin: 0; padding: 0; list-style: none; }
.widget li { padding: 9px 0; border-bottom: 1px solid var(--fpa-line); }

.fpa-404 .search-form { margin: 20px 0 36px; max-width: 560px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.fpa-footer { background: var(--fpa-primary-deep); color: rgba(255, 255, 255, .7); font-size: 14px; }
.fpa-footer a { color: rgba(255, 255, 255, .78); }
.fpa-footer a:hover { color: #fff; }
.fpa-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr) minmax(0, .9fr) minmax(0, 1.2fr);
	gap: 40px;
	padding-top: 52px;
	padding-bottom: 40px;
}
.fpa-footer__about p { margin: 16px 0 18px; line-height: 1.7; }
.fpa-footer .fpa-social a { background: rgba(255, 255, 255, .08); color: #fff; width: 36px; height: 36px; }
.fpa-footer .fpa-social a:hover { background: var(--fpa-accent); color: var(--fpa-on-accent); }
.fpa-footer__title,
.fpa-footer .fpa-section-head__title {
	position: relative;
	margin: 0 0 18px;
	padding-bottom: 12px;
	font-family: var(--fpa-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: #fff;
}
.fpa-footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 3px; background: var(--fpa-accent); }
.fpa-footer .fpa-section-head::after { display: none; }
.fpa-footer__links { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.fpa-footer__links--2col { grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.fpa-footer__newsletter p { margin: 0 0 16px; line-height: 1.6; }
.fpa-footer__newsletter .fpa-btn { width: 100%; margin-bottom: 10px; }
.fpa-footer .fpa-btn--light,
.fpa-footer .fpa-btn--light:hover { color: var(--fpa-primary); }
.fpa-footer .fpa-btn--accent,
.fpa-footer .fpa-btn--accent:hover { color: var(--fpa-on-accent); }
.fpa-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13px; }
.fpa-footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; padding-top: 18px; padding-bottom: 18px; }
.fpa-footer__top-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--fpa-head); font-weight: 600; }
.fpa-footer__top-link .fpa-icon { width: 16px; height: 16px; }

/* ==========================================================================
   Responsive (viewport)
   ========================================================================== */

@media (max-width: 1100px) {
	.fpa-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
	.fpa-layout { grid-template-columns: minmax(0, 1fr); }
	.fpa-layout__sidebar { position: static; }
	.fpa-masthead__search { width: 220px; }
	.fpa-row { flex-wrap: wrap; }
	.fpa-row__col { flex-basis: 300px; }
	.fpa-row__col[style*="--fpa-col:66"],
	.fpa-row--2 .fpa-row__col { flex-basis: 100%; }
}

@media (max-width: 900px) {
	.fpa-nav__toggle { display: inline-flex; }
	.fpa-nav__menu,
	.fpa-nav__home { display: none; }
	/* Mobile bar: menu | logo ............ Support | search */
	.fpa-nav__inner { justify-content: flex-start; align-items: center; }
	.fpa-nav__compact-logo { display: flex; border-right: 0; margin-right: auto; padding-left: 4px; }
	.fpa-nav__support { display: inline-flex; }
	.fpa-masthead__search { display: none; }
	.fpa-utility__menu { display: none; }
}

@media (max-width: 782px) {
	.admin-bar .fpa-nav { top: 0; }
	:root { --fpa-gutter: 16px; --fpa-gap: 22px; }
	.fpa-main { padding-top: 18px; }
	.fpa-masthead { display: none; }
	.fpa-nav { position: sticky; }
	.fpa-utility__date { display: none; }
	.fpa-utility__end { margin-left: 0; width: 100%; justify-content: space-between; }
	.fpa-ticker__inner { height: 40px; gap: 12px; }
	.fpa-ticker__label { padding: 0 9px; font-size: 11px; }
	.fpa-row { flex-direction: column; gap: 28px; margin-bottom: 28px; }
	.fpa-row__col { flex-basis: auto !important; }
	.fpa-footer__top { grid-template-columns: minmax(0, 1fr); gap: 30px; padding-top: 40px; }
	.entry-content { font-size: 17px; }
	/* Full-bleed on phones, measured against the viewport so it works whatever the column padding is. */
	.fpa-panel,
	.fpa-support { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); border-radius: 0; }
	.fpa-panel { padding: 22px 16px; }
}

@media (max-width: 560px) {
	.fpa-card--row { grid-template-columns: 96px minmax(0, 1fr); }
	.fpa-card--row .fpa-card__play { left: 48px; top: 36px; }
	.post-navigation .nav-links { grid-template-columns: 1fr; }
	.post-navigation .nav-next { text-align: left; }
	.alignleft, .alignright { float: none; margin: 1em 0; }
	.fpa-section-head__title { font-size: 17px; }
	.fpa-section-head__more span,
	.fpa-section-head__more { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { transition: none !important; animation: none !important; }
	.fpa-ticker__viewport { overflow-x: auto; mask-image: none; }
	.fpa-ticker__track li[aria-hidden="true"] { display: none; }
}
