/**
 * Financial Highlights page (mockup table + CTA).
 */

.mtq-fh-data-table .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Composite wrapper — no double card from .mtq-standalone-section */
.mtq-fh-page.mtq-standalone-section,
.mtq-fh-page-composite.mtq-standalone-section {
	background: transparent;
	border: none;
	padding: 0;
	margin-bottom: 0;
	box-shadow: none;
}

.mtq-fh-page-composite > .mtq-fh-page-widget {
	margin-bottom: 1.75rem;
}

.mtq-fh-page-composite > .mtq-fh-cta {
	margin-bottom: 0;
}

/* Lavender field + white card (mockup) */
.mtq-fh-table-section.mtq-standalone-section {
	background: #f4f6fb;
	border: none;
	border-radius: 12px;
	padding: 1.5rem 1.35rem 1.35rem;
	box-shadow: none;
	margin-bottom: 0;
}

.mtq-fh-page-composite .mtq-fh-table-section.mtq-standalone-section {
	margin-bottom: 1.75rem;
}

.mtq-fh-cta.mtq-standalone-section {
	background: transparent;
	border: none;
	padding: 0;
	margin-bottom: 0;
}

.mtq-fh-table-panel {
	background: #fff;
	border-radius: 10px;
	border: none;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.mtq-fh-table-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem 1.25rem;
	padding: 1.35rem 1.5rem 1rem;
	border-bottom: 1px solid #e8edf3;
}

.mtq-fh-table-title,
.mtq-fh-table-section .mtq-section-title {
	margin: 0 0 0.35rem;
	padding: 0;
	border: none;
	font-size: clamp(1rem, 2vw, 1.35rem);
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #01247f;
	line-height: 1.25;
}

.mtq-fh-table-subtitle {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #64748b;
}

.mtq-fh-table-toolbar {
	display: flex;
	gap: 0.45rem;
	flex-shrink: 0;
	align-items: center;
}

.mtq-fh-toolbar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.125rem;
	height: 2.125rem;
	border: 1px solid #d8e0ea;
	border-radius: 6px;
	background: #fff;
	color: #01247f;
	text-decoration: none;
	cursor: pointer;
	padding: 0;
}

.mtq-fh-toolbar-btn svg {
	width: 1rem;
	height: 1rem;
	display: block;
}

.mtq-fh-toolbar-btn:hover {
	border-color: #01247f;
	background: #f8fafc;
}

.mtq-fh-table-scroll {
	padding: 0 1.25rem 0.5rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.mtq-fh-table-block + .mtq-fh-table-block {
	margin-top: 1.5rem;
	padding-top: 0.25rem;
	border-top: 1px solid #eef2f7;
}

.mtq-fh-table-block:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.mtq-fh-section-heading {
	margin: 0 0 0.5rem;
	padding: 0.15rem 0 0;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #01247f;
}

/* Table — isolate from theme global `th` rules */
.mtq-fh-data-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.8125rem;
	line-height: 1.4;
	border: none;
}

.mtq-fh-data-table th,
.mtq-fh-data-table td {
	padding: 0.5rem 0.75rem;
	border: none;
	border-bottom: 1px solid #eef2f6;
	text-align: right;
	vertical-align: middle;
	background: transparent;
	color: #1e293b;
	font-weight: 400;
}

/* Year band (mockup navy header row) */
.mtq-fh-data-table thead tr.mtq-fh-year-band th {
	padding: 0.55rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: none;
	color: #fff;
	background: #01247f;
	border-bottom: none;
	text-align: center;
}

.mtq-fh-data-table thead .mtq-fh-col-spacer {
	background: #fff !important;
	border-bottom: 1px solid #eef2f6;
	width: 38%;
	min-width: 11rem;
}

.mtq-fh-data-table thead .mtq-fh-col-year {
	min-width: 4.5rem;
}

.mtq-fh-data-table thead .mtq-fh-col-year.is-highlight {
	background: #01247f !important;
	font-weight: 800;
}

/* Line item column */
.mtq-fh-data-table .mtq-fh-row-label {
	text-align: left;
	font-weight: 600;
	color: #334155;
	background: #fff !important;
	min-width: 11rem;
	width: 38%;
}

.mtq-fh-data-table tbody tr:nth-child(even) .mtq-fh-row-label,
.mtq-fh-data-table tbody tr:nth-child(even) .mtq-fh-cell {
	background: #f9fafb !important;
}

.mtq-fh-data-table tbody tr:nth-child(odd) .mtq-fh-row-label,
.mtq-fh-data-table tbody tr:nth-child(odd) .mtq-fh-cell {
	background: #fff !important;
}

.mtq-fh-data-table .mtq-fh-cell {
	font-variant-numeric: tabular-nums;
}

/* Current year column — green bold figures */
.mtq-fh-data-table .mtq-fh-cell.is-highlight {
	font-weight: 700;
	color: #018762;
}

.mtq-fh-data-table .mtq-fh-row--total .mtq-fh-row-label,
.mtq-fh-data-table .mtq-fh-row--total .mtq-fh-cell {
	font-weight: 700;
	color: #0a1f44;
}

.mtq-fh-data-table .mtq-fh-row--total .mtq-fh-cell.is-highlight {
	color: #018762;
}

.mtq-fh-data-table .mtq-fh-cell.is-negative {
	color: #2563eb;
}

.mtq-fh-data-table .mtq-fh-row--total .mtq-fh-cell.is-negative {
	color: #2563eb;
}

.mtq-fh-data-table .mtq-fh-row--group .mtq-fh-row-label {
	font-weight: 700;
	color: #01247f;
	padding-top: 0.65rem;
}

.mtq-fh-footnotes {
	margin: 0;
	padding: 0.85rem 1.5rem 1.35rem 1.65rem;
	font-size: 0.625rem;
	line-height: 1.5;
	color: #94a3b8;
	border-top: 1px solid #e8edf3;
	list-style: decimal;
}

.mtq-fh-footnotes li + li {
	margin-top: 0.25rem;
}

.mtq-fh-image-fallback {
	margin: 1rem 1.5rem 1.5rem;
}

.mtq-fh-image-fallback img {
	max-width: 100%;
	height: auto;
	display: block;
	border: 1px solid #e2e8f0;
}

.mtq-fh-image-fallback figcaption {
	margin-top: 0.5rem;
	font-size: 0.75rem;
	color: #64748b;
}

/* ── CTA banner (mockup) ─────────────────────────────────────── */
.mtq-fh-cta-banner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
	padding: 1.25rem 1.5rem;
	border-radius: 10px;
	background: linear-gradient(120deg, #01247f 0%, #013a6b 45%, #015a7a 100%);
	color: #fff;
	box-shadow: 0 6px 20px rgba(1, 36, 127, 0.2);
}

.mtq-fh-cta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	flex-shrink: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.mtq-fh-cta-icon svg {
	width: 1.35rem;
	height: 1.35rem;
	stroke: #fff;
	fill: none;
}

.mtq-fh-cta-copy {
	flex: 1;
	min-width: 12rem;
}

.mtq-fh-cta-title {
	margin: 0 0 0.2rem;
	font-size: 0.9375rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.3;
}

.mtq-fh-cta-desc {
	margin: 0;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
	max-width: 40rem;
	line-height: 1.4;
}

.mtq-fh-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-left: auto;
	align-items: center;
}

.mtq-fh-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.65rem 1.25rem;
	border-radius: 6px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid transparent;
	white-space: nowrap;
}

.mtq-fh-cta-btn svg {
	width: 0.9rem;
	height: 0.9rem;
	flex-shrink: 0;
}

.mtq-fh-cta-btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.55);
}

.mtq-fh-cta-btn--solid {
	background: #018762;
	color: #fff;
	border-color: #018762;
}

.mtq-fh-cta-btn--solid svg {
	stroke: #fff;
	fill: none;
}

.mtq-fh-cta-btn:hover {
	filter: brightness(1.05);
}

@media (max-width: 720px) {
	.mtq-fh-table-section.mtq-standalone-section {
		padding: 1rem 0.75rem;
	}

	.mtq-fh-table-head {
		padding: 1rem;
	}

	.mtq-fh-table-scroll {
		padding: 0 0.75rem 0.5rem;
	}

	.mtq-fh-cta-actions {
		margin-left: 0;
		width: 100%;
	}

	.mtq-fh-cta-btn {
		flex: 1;
		min-width: 8rem;
	}
}

@media print {
	.mtq-fh-table-toolbar,
	.mtq-fh-cta {
		display: none !important;
	}

	.mtq-fh-table-section.mtq-standalone-section {
		background: #fff;
		padding: 0;
	}

	.mtq-fh-table-panel {
		box-shadow: none;
	}
}
