.fxg-broker-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(280px, 1fr));
}

.fxg-broker-list {
	display: grid;
	gap: 18px;
	width: 100%;
	margin-inline: auto;
}

.fxg-broker-row {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: minmax(250px, 1.45fr) minmax(150px, 0.9fr) minmax(120px, 0.75fr) minmax(105px, 0.6fr) minmax(76px, 0.45fr) minmax(95px, 0.55fr) minmax(125px, 0.7fr);
	gap: 22px;
	align-items: start;
	width: 100%;
	max-width: 100%;
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
	min-height: 220px;
	padding: 32px 28px;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.fxg-broker-row:hover {
	border-color: #9bd8d2;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.fxg-broker-row__brand {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	min-width: 0;
}

.fxg-broker-row__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 88px;
	border: 1px solid #eef2f6;
	border-radius: 8px;
	background: #f8fafc;
	padding: 10px;
}

.fxg-broker-row__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.fxg-broker-row__intro {
	min-width: 0;
}

.fxg-broker-row__intro h3 {
	margin: 0 0 6px;
	font-size: 1.18rem;
	line-height: 1.3;
}

.fxg-broker-row__intro p {
	margin: 0;
	color: #475467;
	font-size: 0.96rem;
	font-weight: 750;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.fxg-broker-row__metric {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.fxg-broker-row__metric span {
	color: #52616f;
	font-size: 0.86rem;
	font-weight: 650;
}

.fxg-broker-row__metric strong {
	display: block;
	max-width: 100%;
	color: #10233f;
	font-size: 0.96rem;
	font-weight: 750;
	line-height: 1.45;
	overflow-wrap: anywhere;
	white-space: normal;
}

.fxg-broker-row__metric--rating .fxg-rating {
	width: fit-content;
}

.fxg-broker-row__metric--rating .fxg-user-rating {
	width: fit-content;
}

.fxg-broker-row__actions {
	display: grid;
	gap: 10px;
	align-self: center;
	min-width: 0;
}

.fxg-broker-row__actions .fxg-button {
	width: 100%;
	min-width: 0;
}

.fxg-broker-card {
	display: grid;
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
	overflow: hidden;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.fxg-broker-card:hover {
	border-color: #b7ddd8;
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
	transform: translateY(-2px);
}

.fxg-broker-card__media {
	display: block;
	aspect-ratio: 2 / 1;
	background: #f7fafc;
	padding: 22px;
}

.fxg-broker-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.fxg-broker-card__body {
	display: grid;
	gap: 14px;
	min-width: 0;
	padding: 22px;
}

.fxg-broker-card--compact .fxg-broker-card__media {
	padding: 16px;
}

.fxg-broker-card--compact .fxg-broker-card__body {
	gap: 10px;
	padding: 18px;
}

.fxg-broker-card--compact .fxg-broker-card__summary,
.fxg-broker-card--compact .fxg-broker-card__rebate {
	font-size: 0.94rem;
}

.fxg-broker-card__title {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.3;
}

.fxg-broker-card__summary {
	margin: 0;
	color: #475467;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.fxg-broker-card__rebate {
	border-left: 3px solid #4f6fd8;
	background: #f1f5ff;
	margin: 0;
	padding: 10px 12px;
	color: #0f513f;
	font-weight: 650;
	line-height: 1.45;
	white-space: normal;
	overflow-wrap: anywhere;
}

.fxg-broker-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

.fxg-broker-card__facts span {
	box-sizing: border-box;
	display: block;
	max-width: 100%;
	overflow: hidden;
	border: 1px solid #dce6ee;
	border-radius: 999px;
	background: #f8fafc;
	padding: 5px 10px;
	font-size: 0.875rem;
	font-weight: 650;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fxg-broker-card__facts--single {
	display: block;
	min-width: 0;
}

.fxg-broker-card__facts--single span {
	width: 100%;
}

.fxg-broker-card__platforms,
.fxg-broker-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fxg-broker-card__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fxg-broker-card__platforms span {
	border-radius: 6px;
	background: #eef4f8;
	padding: 5px 9px;
	color: #344054;
	font-size: 0.85rem;
	font-weight: 650;
}

.fxg-broker-card__actions .fxg-button {
	width: 100%;
	min-width: 0;
}

.fxg-rating {
	display: inline-flex;
	align-items: baseline;
	width: fit-content;
	gap: 3px;
	border-radius: 999px;
	background: #ecfdf5;
	padding: 6px 10px;
	font-weight: 700;
	color: #4f6fd8;
}

.fxg-rating__scale {
	color: #52616f;
	font-weight: 500;
}

.fxg-rating-group {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fxg-rating-group__item,
.fxg-user-rating {
	display: grid;
	gap: 5px;
	align-content: start;
	color: #10233f;
	text-decoration: none;
	position: relative;
}

.fxg-rating-group__item>span,
.fxg-user-rating>span {
	color: #52616f;
	font-size: 0.82rem;
	font-weight: 750;
}

.fxg-user-rating strong {
	color: #4f6fd8;
	font-size: 0.98rem;
	font-weight: 850;
	line-height: 1.25;
}

.fxg-user-rating__verified {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	margin-left: 4px;
	border-radius: 999px;
	background: #10b981;
	color: #fff;
	font-size: 0.72rem;
	font-style: normal;
	line-height: 1;
	vertical-align: middle;
}

.fxg-user-rating__tooltip {
	position: absolute;
	z-index: 30;
	bottom: calc(100% + 10px);
	left: 50%;
	width: min(280px, 80vw);
	transform: translateX(-50%);
	border-radius: 6px;
	background: rgba(15, 23, 42, 0.94);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
	color: #fff !important;
	font-size: 0.82rem !important;
	font-weight: 650 !important;
	line-height: 1.55;
	opacity: 0;
	padding: 12px 14px;
	pointer-events: none;
	text-align: center;
	visibility: hidden;
	white-space: normal;
}

.fxg-user-rating__tooltip::after {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-top-color: rgba(15, 23, 42, 0.94);
	content: "";
	transform: translateX(-50%);
}

.fxg-user-rating:hover .fxg-user-rating__tooltip,
.fxg-user-rating:focus .fxg-user-rating__tooltip {
	opacity: 1;
	visibility: visible;
}

.fxg-user-rating small {
	color: #52616f;
	font-weight: 600;
}

.fxg-user-rating em {
	color: #667085;
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 650;
	line-height: 1.3;
}

.fxg-user-rating:hover strong,
.fxg-user-rating:focus strong {
	color: #115e59;
}

.fxg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 6px;
	padding: 10px 18px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.fxg-button--primary {
	background: #4f6fd8;
	color: #fff;
}

.fxg-button--primary:hover,
.fxg-button--primary:focus {
	background: #115e59;
	color: #fff;
}

.fxg-button--secondary {
	border: 1px solid #c9d8e4;
	background: #fff;
	color: #1f2937;
}

.fxg-button--secondary:hover,
.fxg-button--secondary:focus {
	border-color: #4f6fd8;
	color: #4f6fd8;
}

@media (max-width: 1100px) {
	.fxg-broker-row {
		grid-template-columns: minmax(300px, 1.4fr) repeat(2, minmax(180px, 1fr));
	}

	.fxg-broker-row__actions {
		grid-column: 1 / -1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.fxg-broker-row {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 18px;
	}

	.fxg-broker-row__brand {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.fxg-broker-row__logo {
		width: 78px;
		height: 62px;
	}

	.fxg-broker-row__actions {
		grid-template-columns: 1fr;
	}
}

.fxg-risk-warning {
	border: 1px solid #fed7aa;
	border-left: 4px solid #b45309;
	border-radius: 8px;
	background: #fff7ed;
	padding: 14px 16px;
	color: #7c2d12;
	font-size: 0.9375rem;
}

.fxg-broker-facts {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	margin: 20px 0 0;
}

.fxg-broker-fact {
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #f8fafc;
	padding: 18px;
}

.fxg-broker-fact__label {
	display: block;
	color: #52616f;
	font-size: 0.875rem;
}

.fxg-broker-fact__value {
	display: block;
	margin-top: 4px;
	font-weight: 700;
}

.fxg-two-column-list {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

#platforms.fxg-two-column-list {
	position: relative;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 56px;
}

#platforms.fxg-two-column-list h3 {
	font-weight: 850;
}

#platforms.fxg-two-column-list .fxg-tag-list li {
	font-weight: 500;
}

#platforms.fxg-two-column-list::after {
	position: absolute;
	top: 152px;
	bottom: 34px;
	left: 50%;
	width: 1px;
	background: var(--fxg-border, #dce6ee);
	content: "";
}

@media (max-width: 768px) {
	#platforms.fxg-two-column-list {
		grid-template-columns: 1fr;
	}

	#platforms.fxg-two-column-list::after {
		display: none;
	}

	#platforms.fxg-two-column-list>div:not(.fxg-column-span-all)+div {
		border-top: 1px solid var(--fxg-border, #dce6ee);
		padding-top: 18px;
	}
}

.fxg-section-panel .fxg-broker-regulation-note {
	margin-bottom: 12px;
}

.fxg-rebate-calculator {
	display: grid;
	gap: 22px;
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
	padding: 26px;
}

.fxg-trading-calculator {
	display: grid;
	gap: 22px;
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
	padding: 26px;
}

.fxg-trading-calculator__header span,
.fxg-rebate-calculator__header span {
	color: #4f6fd8;
	font-size: 0.86rem;
	font-weight: 800;
	text-transform: uppercase;
}

.fxg-trading-calculator__header h3,
.fxg-rebate-calculator__header h3 {
	margin: 8px 0 10px;
	font-size: 1.45rem;
	line-height: 1.25;
}

.fxg-trading-calculator__header p,
.fxg-rebate-calculator__header p {
	margin: 0;
	color: #475467;
	line-height: 1.6;
}

.fxg-trading-calculator__fields,
.fxg-rebate-calculator__fields {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fxg-rebate-calculator__rule-field {
	grid-column: 1 / -1;
}

.fxg-rebate-calculator label[hidden] {
	display: none;
}

.fxg-trading-calculator label,
.fxg-rebate-calculator label {
	display: grid;
	gap: 7px;
	min-width: 0;
	color: #344054;
	font-weight: 700;
}

.fxg-trading-calculator input,
.fxg-trading-calculator select,
.fxg-rebate-calculator input,
.fxg-rebate-calculator select {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	min-height: 44px;
	border: 1px solid #c9d8e4;
	border-radius: 6px;
	background: #fff;
	padding: 9px 12px;
	color: #0f172a;
	font-size: 1rem;
}

.fxg-trading-calculator input:focus,
.fxg-trading-calculator select:focus,
.fxg-rebate-calculator input:focus,
.fxg-rebate-calculator select:focus {
	border-color: #4f6fd8;
	box-shadow: 0 0 0 3px rgba(79, 111, 216, 0.12);
	outline: 0;
}

.fxg-trading-calculator__results,
.fxg-rebate-calculator__results {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fxg-trading-calculator__results {
	grid-template-columns: 1fr;
}

.fxg-trading-calculator__results--split {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fxg-trading-calculator__results--split:has(div:nth-child(3)) {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fxg-trading-calculator__results div,
.fxg-rebate-calculator__results div {
	border: 1px solid #b7ddd8;
	border-radius: 8px;
	background: #f1f5ff;
	padding: 16px;
}

.fxg-trading-calculator__results span,
.fxg-trading-calculator__results strong,
.fxg-rebate-calculator__results span,
.fxg-rebate-calculator__results strong {
	display: block;
}

.fxg-trading-calculator__results span,
.fxg-rebate-calculator__results span {
	color: #475467;
	font-size: 0.86rem;
}

.fxg-trading-calculator__results strong,
.fxg-rebate-calculator__results strong {
	margin-top: 5px;
	color: #4f6fd8;
	font-size: 1.3rem;
}

.fxg-trading-calculator__note {
	margin: 0;
	color: #667085;
	font-size: 0.92rem;
	line-height: 1.6;
}

.fxg-market-sessions {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.fxg-market-sessions__note {
	margin-top: 14px;
}

.fxg-market-sessions div {
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
	padding: 18px;
}

.fxg-market-sessions span {
	display: block;
	color: #4f6fd8;
	font-weight: 850;
}

.fxg-market-sessions h3 {
	margin: 8px 0;
	color: #0f172a;
	font-size: 1.15rem;
}

.fxg-market-sessions p {
	margin: 0;
	color: #475467;
	line-height: 1.55;
}

.fxg-market-data {
	display: grid;
	gap: 14px;
	margin: 24px 0;
}

.fxg-market-data h2,
.fxg-market-data__heading h2 {
	margin: 0;
	color: var(--fxg-ink, #0f172a);
	font-size: 1.35rem;
	line-height: 1.3;
}

.fxg-market-data__heading {
	display: grid;
	gap: 8px;
}

.fxg-market-data__heading p,
.fxg-market-data__note {
	margin: 0;
	color: #5b6b83;
	font-size: 0.95rem;
	line-height: 1.65;
}

.fxg-market-data__scroll {
	overflow-x: auto;
	border: 1px solid var(--fxg-border, #d9e6ef);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.fxg-market-data table {
	width: 100%;
	min-width: 860px;
	border-collapse: collapse;
}

.fxg-market-data th,
.fxg-market-data td {
	border-bottom: 1px solid var(--fxg-border, #d9e6ef);
	padding: 12px 14px;
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
}

.fxg-market-data th {
	background: #f8fafc;
	color: var(--fxg-ink, #0f172a);
	font-weight: 900;
}

.fxg-market-data tr:last-child td {
	border-bottom: 0;
}

.fxg-market-data--matrix .fxg-market-data__scroll {
	border-color: #20365b;
	background: #16233d;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.fxg-market-matrix {
	min-width: 1120px;
	background: #1f244e;
	color: #fff;
}

.fxg-market-data .fxg-market-matrix th,
.fxg-market-data .fxg-market-matrix td {
	border-bottom-color: rgba(255, 255, 255, 0.13);
	padding: 15px 18px;
	text-align: center;
}

.fxg-market-data .fxg-market-matrix thead th {
	background: #0e2230;
	color: #fff;
	font-size: 0.98rem;
	letter-spacing: 0;
}

.fxg-market-data .fxg-market-matrix thead th:first-child,
.fxg-market-data .fxg-market-matrix tbody th {
	position: sticky;
	left: 0;
	z-index: 1;
	text-align: left;
}

.fxg-market-data .fxg-market-matrix thead th:first-child {
	z-index: 2;
}

.fxg-market-data .fxg-market-matrix tbody th {
	min-width: 190px;
	background: #32285f;
	color: #fff;
}

.fxg-market-matrix tbody th strong,
.fxg-market-matrix tbody th span {
	display: block;
}

.fxg-market-matrix tbody th span {
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.78rem;
	font-weight: 700;
}

.fxg-market-matrix__cell {
	background: #6b2458;
	color: #fff;
	font-weight: 850;
}

.fxg-market-matrix__heat--0 {
	background: #35326e;
}

.fxg-market-matrix__heat--1 {
	background: #4c2d69;
}

.fxg-market-matrix__heat--2 {
	background: #692a61;
}

.fxg-market-matrix__heat--3 {
	background: #852754;
}

.fxg-market-matrix__heat--4 {
	background: #9e263f;
}

.fxg-market-matrix__heat--5 {
	background: #b3262e;
}

.fxg-market-data--broker .fxg-market-data__scroll {
	box-shadow: 0 14px 30px rgba(79, 111, 216, 0.08);
}

.fxg-market-data--broker tbody th {
	color: var(--fxg-ink, #0f172a);
}

.fxg-rebate-process {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.fxg-rebate-process__step {
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
	padding: 22px;
}

.fxg-rebate-process__step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #4f6fd8;
	color: #fff;
	font-weight: 800;
}

.fxg-rebate-process__step h3 {
	margin: 14px 0 8px;
	font-size: 1.12rem;
	line-height: 1.3;
}

.fxg-rebate-process__step p {
	margin: 0;
	color: #475467;
	line-height: 1.6;
}

.fxg-mini-facts {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	margin: 18px 0;
}

.fxg-mini-facts.fxg-mini-facts--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fxg-mini-facts div,
.fxg-step-list li {
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	padding: 16px;
}

.fxg-mini-facts span,
.fxg-step-list span {
	display: block;
	color: #475467;
	line-height: 1.55;
}

.fxg-mini-facts strong {
	display: block;
	margin-top: 4px;
	color: #4f6fd8;
}

.fxg-step-list {
	display: grid;
	gap: 14px;
	margin: 0 0 18px;
	padding: 0;
	counter-reset: fxg-step;
	list-style: none;
}

.fxg-step-list li {
	position: relative;
	padding-left: 58px;
	counter-increment: fxg-step;
}

.fxg-step-list li::before {
	content: counter(fxg-step);
	position: absolute;
	top: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: #4f6fd8;
	color: #fff;
	font-weight: 800;
}

.fxg-step-list strong {
	display: block;
	margin-bottom: 4px;
	color: #0f172a;
}

.fxg-rebate-action-note {
	border: 1px solid #fed7aa;
	border-radius: 8px;
	background: #fff7ed;
	margin-top: 18px;
	padding: 16px 18px;
	color: #7c2d12;
}

.fxg-rebate-action-note strong {
	display: block;
	margin-bottom: 8px;
}

.fxg-broker-rebate-terms ul {
	margin: 0;
	padding-left: 20px;
}

.fxg-broker-rebate-terms li+li {
	margin-top: 6px;
}

.fxg-rate-list,
.fxg-muted-list {
	display: grid;
	gap: 10px;
	margin: 16px 0;
	padding-left: 20px;
}

.fxg-comparison-table-wrap {
	max-width: 100%;
	overflow-x: auto;
	contain: inline-size;
}

.fxg-comparison-table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
}

.fxg-comparison-table th,
.fxg-comparison-table td {
	border-bottom: 1px solid #e7eef4;
	padding: 12px;
	text-align: left;
	vertical-align: top;
}

.fxg-comparison-table th {
	background: #f8fafc;
	color: #344054;
	font-size: 0.9rem;
}

.fxg-rebate-rule-search {
	display: grid;
	gap: 18px;
	border: 1px solid #c9d8e8;
	border-radius: 8px;
	background: #f3f7fb;
	margin-top: 24px;
	padding: 20px;
}

.fxg-broker-rebate-rates h3 {
	margin: 0 0 8px;
	font-size: 1.08rem;
	font-weight: 850;
	line-height: 1.35;
}

.fxg-rebate-rule-search__notice {
	max-width: 760px;
	margin: 0;
	color: #475467;
	line-height: 1.55;
}

.fxg-rebate-rule-search__field {
	display: grid;
	gap: 10px;
	max-width: 560px;
	margin: 0;
}

.fxg-rebate-rule-search__field span {
	color: #10233f;
	font-size: 1rem;
	font-weight: 850;
}

.fxg-rebate-rule-search__field input {
	width: 100%;
	min-height: 54px;
	border: 2px solid #4f6fd8;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(16, 35, 63, 0.08);
	color: #0f172a;
	font-size: 1rem;
	font-weight: 650;
	padding: 13px 16px;
	transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.fxg-rebate-rule-search__field:hover input {
	border-color: #3958bd;
	box-shadow: 0 10px 24px rgba(79, 111, 216, 0.16);
}

.fxg-rebate-rule-search__field input::placeholder {
	color: #667085;
	opacity: 1;
}

.fxg-rebate-rule-search__field input:focus {
	background: #fbfdff;
	border-color: #0f766e;
	box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.18), 0 10px 24px rgba(16, 35, 63, 0.1);
	outline: 0;
}

.fxg-rebate-rule-search__status {
	color: #667085;
	font-size: 0.94rem;
}

.fxg-rebate-rule-search__results {
	display: grid;
	gap: 16px;
}

.fxg-rebate-rule-result {
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.fxg-rebate-rule-result__title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	border-bottom: 1px solid #e7eef4;
	padding: 14px 16px;
}

.fxg-rebate-rule-result__title strong {
	color: #10233f;
	font-size: 1.06rem;
}

.fxg-rebate-rule-result__title span,
.fxg-rebate-rule-result__title em {
	color: #667085;
	font-style: normal;
}

.fxg-rebate-rule-result__table {
	min-width: 880px;
}

.fxg-rebate-rule-result__table th,
.fxg-rebate-rule-result__table td {
	min-width: 112px;
}

.fxg-rebate-rule-result__table th:first-child,
.fxg-rebate-rule-result__table td:first-child {
	min-width: 120px;
}

.fxg-rebate-rule-result__table th:last-child,
.fxg-rebate-rule-result__table td:last-child {
	min-width: 96px;
}

.fxg-rebate-rule-result__table td:not(:first-child):not(:last-child) {
	white-space: nowrap;
}

.fxg-rebate-rule-search__empty {
	border: 1px dashed #b8c7d3;
	border-radius: 8px;
	background: #fff;
	margin: 0;
	padding: 18px;
	color: #475467;
}

.fxg-broker-updates {
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
	padding: 24px;
}

.fxg-news-alerts {
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
	padding: 24px;
}

.fxg-broker-updates__heading {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.fxg-broker-updates__heading h2 {
	margin: 0;
	font-size: 1.45rem;
}

.fxg-broker-updates__heading a {
	color: #4f6fd8;
	font-weight: 800;
	text-decoration: none;
}

.fxg-broker-updates__list {
	display: grid;
	gap: 14px;
}

.fxg-broker-update-card {
	border: 1px solid #e7eef4;
	border-radius: 8px;
	background: #f8fafc;
	padding: 16px;
}

.fxg-broker-update-card--important {
	border-color: #facc15;
	background: #fefce8;
}

.fxg-broker-update-card--critical {
	border-color: #fb923c;
	background: #fff7ed;
}

.fxg-broker-update-card--promo {
	border-color: #99f6e4;
	background: #f1f5ff;
}

.fxg-broker-update-card--status-resolved {
	opacity: 0.78;
}

.fxg-broker-update-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
	color: #475467;
	font-size: 0.86rem;
	font-weight: 700;
}

.fxg-broker-update-card__meta span {
	color: #4f6fd8;
}

.fxg-broker-update-card h3 {
	margin: 0 0 8px;
	font-size: 1.08rem;
	line-height: 1.35;
}

.fxg-broker-update-card h3 a {
	color: #0f172a;
	text-decoration: none;
}

.fxg-broker-update-card p {
	margin: 0;
	color: #475467;
	line-height: 1.55;
}

.fxg-broker-update-card__effective {
	margin-top: 8px !important;
	color: #0f172a !important;
	font-weight: 800;
}

.fxg-broker-ranking {
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
	padding: 22px;
}

.fxg-broker-ranking__heading {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.fxg-broker-ranking__heading h2 {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.25;
}

.fxg-broker-ranking__heading a {
	color: #4f6fd8;
	font-weight: 800;
	text-decoration: none;
}

.fxg-broker-deals {
	display: grid;
	gap: 24px;
}

.fxg-broker-deals__heading {
	border-bottom: 1px solid var(--fxg-border-soft, #e8f0f6);
	padding-bottom: 16px;
	margin-bottom: 8px;
}

.fxg-broker-deals__heading h2 {
	margin: 0;
	color: var(--fxg-ink, #050b3d);
	font-size: 1.6rem;
	font-weight: 800;
}

.fxg-broker-deals__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.fxg-broker-deals__filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 16px;
	padding: 24px;
	border: 1px solid rgba(79, 111, 216, 0.15);
	border-radius: 12px;
	background: linear-gradient(135deg, #f8fbff 0%, #f1f5ff 100%);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.fxg-broker-deals__filters label {
	display: grid;
	gap: 8px;
	min-width: min(100%, 220px);
	color: var(--fxg-text, #1b2f55);
	font-size: 0.88rem;
	font-weight: 800;
}

.fxg-broker-deals__filters select {
	appearance: none;
	min-height: 44px;
	border: 1px solid var(--fxg-border-strong, #bfd2e0);
	border-radius: var(--fxg-radius-control, 8px);
	background: #fff;
	color: var(--fxg-ink, #050b3d);
	font: inherit;
	font-weight: 700;
	padding: 0 38px 0 14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2361708e' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
	background-position: right 12px center;
	background-repeat: no-repeat;
	background-size: 18px;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(15, 23, 42, 0.02);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fxg-broker-deals__filters select:focus {
	outline: none;
	border-color: var(--fxg-primary, #4f6fd8);
	box-shadow: 0 0 0 3px rgba(79, 111, 216, 0.12), 0 2px 4px rgba(15, 23, 42, 0.02);
}

.fxg-broker-deals__filters button.fxg-button,
.fxg-broker-deals__filters a.fxg-button {
	min-height: 44px;
	height: 44px;
	padding: 0 20px;
	font-size: 0.92rem;
	margin-bottom: 0;
	box-sizing: border-box;
}

.fxg-broker-deal-card,
.fxg-broker-deals__empty {
	border: 1px solid var(--fxg-border, #d8e5ef);
	border-radius: var(--fxg-radius-card, 10px);
	background: var(--fxg-surface, #ffffff);
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03), 0 1px 2px rgba(15, 23, 42, 0.01);
	padding: 24px;
}

.fxg-broker-deal-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
	position: relative;
	box-sizing: border-box;
}

.fxg-broker-deal-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
	border-color: rgba(79, 111, 216, 0.3);
}

.fxg-broker-deal-card__header {
	display: flex;
	align-items: center;
	gap: 14px;
}

.fxg-broker-deal-card__logo-wrap {
	width: 52px;
	height: 52px;
	border: 1px solid var(--fxg-border-soft, #e8f0f6);
	border-radius: var(--fxg-radius-control, 8px);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
	flex-shrink: 0;
}

.fxg-broker-deal-card__logo-img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.fxg-broker-deal-card__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.fxg-broker-deal-card__broker-name {
	color: var(--fxg-ink, #050b3d);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.2;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border: none !important;
	background: transparent !important;
	border-radius: 0 !important;
	padding: 0 !important;
}

.fxg-broker-deal-card__status-badge {
	font-size: 0.72rem;
	font-weight: 900;
	padding: 2px 8px;
	border-radius: 999px;
	width: fit-content;
	text-transform: uppercase;
	display: inline-block;
	background: var(--fxg-primary-soft, #f1f5ff);
	border: 1px solid rgba(79, 111, 216, 0.2);
	color: var(--fxg-primary, #4f6fd8);
	line-height: 1.3;
	margin-left: auto;
	flex-shrink: 0;
}

.fxg-broker-deal-card__content {
	display: grid;
	gap: 8px;
	flex-grow: 1;
}

.fxg-broker-deal-card h3 {
	margin: 0;
	color: var(--fxg-ink, #050b3d);
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.4;
}

.fxg-broker-deal-card__desc {
	margin: 0;
	color: var(--fxg-text-muted, #61708e);
	font-size: 0.94rem;
	line-height: 1.6;
}

.fxg-broker-deal-card__date-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--fxg-primary, #4f6fd8);
	font-size: 0.88rem;
	font-weight: 750;
	margin-top: 2px;
}

.fxg-deal-icon-calendar {
	color: var(--fxg-primary, #4f6fd8);
	opacity: 0.85;
	flex-shrink: 0;
}

.fxg-broker-deal-card__divider {
	height: 1px;
	background: var(--fxg-border-soft, #e8f0f6);
	margin: 4px 0;
}

.fxg-broker-deal-card__actions {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: auto;
}

.fxg-broker-deal-card__actions .fxg-button {
	flex: 1;
	min-height: 40px;
	height: 40px;
	padding: 0 14px;
	font-size: 0.88rem;
	font-weight: 800;
	border-radius: var(--fxg-radius-control, 8px);
}

.fxg-broker-deal-card__expired-note {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	height: 40px;
	border: 1px solid var(--fxg-border, #d8e5ef);
	border-radius: var(--fxg-radius-control, 8px);
	background: #fff1f2;
	border-color: #fecaca;
	color: #b42318;
	font-size: 0.85rem;
	font-weight: 850;
	padding: 0 12px;
	flex: 1;
	text-align: center;
	box-sizing: border-box;
}

/* Badge & Expired State Overrides */
.fxg-status-badge {
	font-size: 0.72rem;
	font-weight: 900;
	padding: 2px 8px;
	border-radius: 999px;
	display: inline-block;
	border: 1px solid rgba(79, 111, 216, 0.2);
	line-height: 1.3;
}

.fxg-status-badge--active,
.fxg-broker-deal-card--active .fxg-broker-deal-card__status-badge {
	background: #f0fdf4 !important;
	border-color: #bbf7d0 !important;
	color: #15803d !important;
}

.fxg-status-badge--expired,
.fxg-broker-deal-card--expired .fxg-broker-deal-card__status-badge {
	background: #fff1f2 !important;
	border-color: #fecaca !important;
	color: #b42318 !important;
}

.fxg-broker-deal-card--expired .fxg-broker-deal-card__date-wrap {
	color: var(--fxg-text-muted, #61708e);
}

.fxg-broker-deal-card--expired .fxg-deal-icon-calendar {
	color: var(--fxg-text-muted, #61708e);
}

@media (max-width: 480px) {
	.fxg-broker-deal-card__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.fxg-broker-deal-card__actions .fxg-button {
		width: 100%;
	}
}

.fxg-broker-deals__empty {
	text-align: center;
	color: var(--fxg-text-muted, #61708e);
	padding: 32px;
	font-weight: 650;
}

.fxg-broker-ranking__list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fxg-broker-ranking__list li {
	display: grid;
	gap: 14px;
	grid-template-columns: auto 52px minmax(0, 1fr) 260px;
	align-items: center;
	border: 1px solid #e7eef4;
	border-radius: 8px;
	background: #f8fafc;
	padding: 12px;
}

.fxg-broker-ranking__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: #4f6fd8;
	color: #fff;
	font-weight: 850;
}

.fxg-broker-ranking__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: #fff;
	padding: 8px;
}

.fxg-broker-ranking__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.fxg-broker-ranking__content h3 {
	margin: 0 0 4px;
	font-size: 1.02rem;
	line-height: 1.3;
}

.fxg-broker-ranking__content h3 a {
	color: #0f172a;
	text-decoration: none;
}

.fxg-broker-ranking__content p {
	margin: 0;
	color: #475467;
	font-size: 0.92rem;
	line-height: 1.5;
}

.fxg-broker-ranking__metric {
	align-self: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 96px 130px;
	justify-content: center;
	min-width: 0;
	text-align: center;
}

.fxg-broker-ranking__metric-item {
	display: grid;
	gap: 3px;
	justify-items: center;
	min-width: 0;
}

.fxg-broker-ranking__metric span {
	color: #667085;
	font-size: 0.8rem;
	font-weight: 700;
}

.fxg-broker-ranking__metric strong {
	color: #4f6fd8;
	font-size: 0.98rem;
}

.fxg-broker-ranking__metric .fxg-user-rating {
	align-items: center;
	display: grid;
	gap: 3px 6px;
	justify-content: center;
	justify-items: center;
	margin-top: 0;
	min-width: 0;
	text-align: center;
}

.fxg-broker-ranking__metric .fxg-user-rating>span {
	width: 100%;
}

.fxg-broker-compare {
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
	max-width: 100%;
	overflow-x: auto;
	contain: inline-size;
}

.fxg-broker-compare__tools {
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(280px, 1fr) repeat(2, auto) auto;
	align-items: end;
	border-bottom: 1px solid #e7eef4;
	padding: 16px;
}

.fxg-broker-compare__tools label {
	display: grid;
	gap: 6px;
	color: #344054;
	font-weight: 700;
}

.fxg-broker-compare__tools input[type="search"],
.fxg-broker-compare__tools select {
	width: 100%;
	min-height: 42px;
	border: 1px solid #c9d8e4;
	border-radius: 6px;
	background: #fff;
	padding: 8px 10px;
}

.fxg-broker-compare__toggle {
	display: inline-flex !important;
	grid-auto-flow: column;
	align-items: center;
	gap: 8px !important;
	min-height: 42px;
	white-space: nowrap;
}

.fxg-broker-compare__status {
	border-bottom: 1px solid #e7eef4;
	background: #f8fafc;
	color: #475467;
	font-size: 0.92rem;
	padding: 10px 16px;
}

.fxg-broker-compare table {
	width: 100%;
	min-width: 1490px;
	border-collapse: collapse;
	table-layout: fixed;
	margin: 0;
}

.fxg-broker-compare th,
.fxg-broker-compare td {
	border-bottom: 1px solid #e7eef4;
	padding: 14px 16px;
	text-align: left;
	vertical-align: top;
}

.fxg-broker-compare thead th {
	background: #f8fafc;
	color: #344054;
	font-size: 0.88rem;
	font-weight: 800;
	white-space: nowrap;
}

.fxg-broker-compare thead button {
	appearance: none;
	display: inline-flex !important;
	align-items: center;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: inherit !important;
	cursor: pointer;
	font: inherit !important;
	font-weight: 800 !important;
	line-height: inherit !important;
	min-height: 0 !important;
	padding: 0 !important;
	text-align: left;
	text-decoration: none;
}

.fxg-broker-compare thead button::after {
	content: "↕";
	margin-left: 6px;
	color: #98a2b3;
	font-size: 0.8rem;
}

.fxg-broker-compare thead button[aria-sort="asc"]::after {
	content: "↑";
	color: #4f6fd8;
}

.fxg-broker-compare thead button[aria-sort="desc"]::after {
	content: "↓";
	color: #4f6fd8;
}

.fxg-broker-compare th:nth-child(1),
.fxg-broker-compare td:nth-child(1) {
	width: 60px;
}

.fxg-broker-compare th:nth-child(2),
.fxg-broker-compare td:nth-child(2) {
	width: 160px;
}

.fxg-broker-compare th:nth-child(3),
.fxg-broker-compare td:nth-child(3) {
	width: 100px;
}

.fxg-broker-compare th:nth-child(4),
.fxg-broker-compare td:nth-child(4) {
	width: 120px;
}

.fxg-broker-compare th:nth-child(5),
.fxg-broker-compare td:nth-child(5) {
	width: 180px;
}

.fxg-broker-compare th:nth-child(6),
.fxg-broker-compare td:nth-child(6) {
	width: 220px;
}

.fxg-broker-compare th:nth-child(7),
.fxg-broker-compare td:nth-child(7) {
	width: 130px;
}

.fxg-broker-compare th:nth-child(8),
.fxg-broker-compare td:nth-child(8) {
	width: 150px;
}

.fxg-broker-compare th:nth-child(9),
.fxg-broker-compare td:nth-child(9) {
	width: 150px;
}

.fxg-broker-compare th:nth-child(10),
.fxg-broker-compare td:nth-child(10) {
	width: 130px;
}

.fxg-broker-compare tbody tr:last-child th,
.fxg-broker-compare tbody tr:last-child td {
	border-bottom: 0;
}

.fxg-broker-compare td {
	color: #475467;
	line-height: 1.55;
	word-break: normal;
	overflow-wrap: anywhere;
}

.fxg-broker-compare__broker {
	display: grid;
	gap: 10px;
	grid-template-columns: 44px minmax(120px, 1fr);
	align-items: center;
	color: #0f172a;
	font-weight: 800;
	text-decoration: none;
	word-break: keep-all;
}

.fxg-broker-compare__broker:hover {
	color: #4f6fd8;
}

.fxg-broker-compare__broker img {
	width: 44px;
	height: 44px;
	border: 1px solid #e7eef4;
	border-radius: 8px;
	background: #fff;
	object-fit: contain;
	padding: 4px;
}

.fxg-broker-compare__actions .fxg-button {
	min-height: 38px;
	padding: 8px 14px;
	white-space: nowrap;
}

.fxg-broker-compare__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.fxg-broker-compare__tags span {
	display: inline-flex;
	align-items: center;
	border: 1px solid #cfe3e0;
	border-radius: 999px;
	background: #f1f5ff;
	padding: 4px 9px;
	color: #4f6fd8;
	font-size: 0.85rem;
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
}

.fxg-broker-compare__text,
.fxg-broker-compare__compact {
	color: #344054;
	font-size: 0.95rem;
}

.fxg-broker-compare__compact {
	overflow-wrap: break-word;
}

.fxg-broker-compare__select {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
}

.fxg-broker-compare__empty {
	color: #475467;
	padding: 22px;
	text-align: center;
}

.fxg-global-search {
	border: 1px solid #d6e3ee;
	border-radius: 8px;
	background: #f8fbfd;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
	padding: 18px;
}

.fxg-global-search__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
}

.fxg-global-search__tabs button {
	appearance: none;
	border: 1px solid #d6e3ee !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: #344054 !important;
	cursor: pointer;
	font-size: 0.92rem !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	min-height: 38px !important;
	padding: 9px 15px !important;
}

.fxg-global-search__tabs button.is-active,
.fxg-global-search__tabs button:hover {
	border-color: #4f6fd8 !important;
	background: #4f6fd8 !important;
	color: #fff !important;
}

.fxg-global-search__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	margin: 0;
}

.fxg-global-search__form input[type="search"] {
	width: 100%;
	min-height: 52px;
	border: 1px solid #c9d8e4;
	border-radius: 8px;
	background: #fff;
	color: #0f172a;
	font-size: 1rem;
	padding: 12px 14px;
}

.fxg-global-search__form button {
	border: 0 !important;
	border-radius: 8px !important;
	background: #4f6fd8 !important;
	color: #fff !important;
	cursor: pointer;
	font-weight: 800 !important;
	min-height: 52px !important;
	padding: 12px 22px !important;
	white-space: nowrap;
}

.fxg-global-search__results {
	margin-top: 12px;
	max-height: 238px;
	overflow-y: auto;
	padding-right: 6px;
	scrollbar-gutter: stable;
}

.fxg-global-search__results p {
	color: #667085;
	margin: 0;
}

.fxg-global-search__results::-webkit-scrollbar {
	width: 8px;
}

.fxg-global-search__results::-webkit-scrollbar-track {
	background: #eef4f8;
	border-radius: 999px;
}

.fxg-global-search__results::-webkit-scrollbar-thumb {
	background: #b8c9da;
	border-radius: 999px;
}

.fxg-global-search__results ul {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fxg-global-search__results li {
	margin: 0;
}

.fxg-global-search__results a {
	display: grid;
	gap: 4px;
	border: 1px solid #e7eef4;
	border-radius: 8px;
	background: #fff;
	color: #0f172a;
	padding: 12px 14px;
	text-decoration: none;
}

.fxg-global-search__results a:hover {
	border-color: #4f6fd8;
	box-shadow: 0 8px 24px rgba(79, 111, 216, 0.1);
}

.fxg-global-search__type {
	color: #4f6fd8;
	font-size: 0.78rem;
	font-weight: 800;
}

.fxg-global-search__results strong {
	font-size: 1rem;
	line-height: 1.35;
}

.fxg-global-search__results small,
.fxg-global-search__results em {
	color: #667085;
	font-size: 0.88rem;
	font-style: normal;
	line-height: 1.45;
}

@media (max-width: 720px) {

	.fxg-mini-facts.fxg-mini-facts--two,
	.fxg-rebate-calculator__fields,
	.fxg-rebate-calculator__results,
	.fxg-trading-calculator__fields,
	.fxg-trading-calculator__results,
	.fxg-trading-calculator__results--split {
		grid-template-columns: 1fr;
	}

	.fxg-broker-ranking__list li {
		grid-template-columns: auto 52px minmax(0, 1fr);
	}

	.fxg-broker-ranking__metric {
		grid-column: 2 / -1;
		align-items: flex-start;
		grid-template-columns: repeat(2, minmax(0, 130px));
		justify-content: flex-start;
		min-width: 0;
		text-align: left;
	}

	.fxg-broker-ranking__metric .fxg-user-rating {
		align-items: flex-start;
		justify-content: flex-start;
		text-align: left;
	}

	.fxg-broker-compare__tools {
		grid-template-columns: 1fr;
	}

	.fxg-broker-compare__toggle {
		justify-content: flex-start;
	}

	.fxg-global-search__form {
		grid-template-columns: 1fr;
	}

	.fxg-global-search__form button {
		width: 100%;
	}
}

/* Component polish layer for the Elementor-free site audit pass. */
.fxg-broker-ranking,
.fxg-broker-updates,
.fxg-news-alerts,
.fxg-broker-deal-card,
.fxg-broker-deals__empty,
.fxg-global-search,
.fxg-rebate-calculator,
.fxg-trading-calculator,
.fxg-broker-compare {
	border-color: #dce6ee;
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.fxg-broker-ranking__heading,
.fxg-broker-updates__heading,
.fxg-broker-deals__heading {
	border-bottom: 1px solid #e7eef4;
	padding-bottom: 14px;
}

.fxg-broker-ranking__heading a,
.fxg-broker-updates__heading a,
.fxg-broker-deal-card__actions a,
.fxg-global-search__results a {
	transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.fxg-broker-ranking__list li,
.fxg-broker-update-card,
.fxg-broker-deal-card,
.fxg-global-search__results a {
	border-color: #e1eaf1;
}

.fxg-broker-ranking__list li:hover,
.fxg-broker-update-card:hover,
.fxg-broker-deal-card:hover,
.fxg-global-search__results a:hover {
	border-color: #b7ddd8;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
	transform: translateY(-1px);
}

.fxg-broker-ranking__number,
.fxg-rebate-process__step span,
.fxg-step-list li::before {
	background: #4f6fd8;
}

.fxg-broker-ranking__logo {
	border: 1px solid #e7eef4;
}

.fxg-broker-ranking__metric,
.fxg-broker-deal-card__date,
.fxg-broker-update-card__effective {
	color: #4f6fd8 !important;
}

.fxg-broker-deal-card__meta span,
.fxg-broker-update-card__meta span,
.fxg-global-search__type {
	letter-spacing: 0;
}

.fxg-rebate-calculator input,
.fxg-rebate-calculator select,
.fxg-trading-calculator input,
.fxg-trading-calculator select,
.fxg-global-search__form input {
	border-color: #c9d8e4;
	border-radius: 6px;
}

.fxg-rebate-calculator input:focus,
.fxg-rebate-calculator select:focus,
.fxg-trading-calculator input:focus,
.fxg-trading-calculator select:focus,
.fxg-global-search__form input:focus {
	border-color: #4f6fd8;
	box-shadow: 0 0 0 3px rgba(79, 111, 216, 0.14);
	outline: 0;
}

.fxg-rebate-calculator__results div,
.fxg-trading-calculator__results div {
	border-color: rgba(79, 111, 216, 0.22);
	background: #f1f5ff;
}

.fxg-broker-compare__table-wrap {
	border: 1px solid #dce6ee;
	border-radius: 8px;
	background: #fff;
	overflow-x: auto;
}

.fxg-broker-compare table th {
	background: #f8fafc;
	color: #344054;
	font-weight: 900;
}

@media (max-width: 720px) {

	.fxg-broker-ranking__heading,
	.fxg-broker-updates__heading,
	.fxg-broker-deals__heading {
		display: grid;
		align-items: start;
	}
}

/* UI design system v1 alignment for shared shortcode components. */
.fxg-broker-grid,
.fxg-broker-list,
.fxg-broker-rankings-grid {
	gap: 20px;
}

.fxg-broker-row,
.fxg-broker-card,
.fxg-broker-ranking,
.fxg-broker-updates,
.fxg-news-alerts,
.fxg-broker-deal-card,
.fxg-broker-deals__empty,
.fxg-global-search,
.fxg-rebate-calculator,
.fxg-trading-calculator,
.fxg-broker-compare {
	border-color: var(--fxg-color-border, #d9e6ef);
	border-radius: var(--fxg-radius-card, 8px);
	background: var(--fxg-color-surface, #fff);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.fxg-broker-row:hover,
.fxg-broker-card:hover,
.fxg-broker-ranking__list li:hover,
.fxg-broker-update-card:hover,
.fxg-broker-deal-card:hover,
.fxg-global-search__results a:hover {
	border-color: rgba(79, 111, 216, 0.34);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.075);
	transform: none;
}

.fxg-broker-row__intro h3,
.fxg-broker-card__title,
.fxg-broker-ranking__heading h2,
.fxg-broker-updates__heading h2,
.fxg-broker-deals__heading h2,
.fxg-global-search__results strong {
	color: var(--fxg-color-heading, #0f172a);
	font-weight: 700;
	letter-spacing: 0;
}

.fxg-broker-row__intro p,
.fxg-broker-card__summary,
.fxg-broker-update-card p,
.fxg-broker-deal-card p,
.fxg-global-search__results small,
.fxg-global-search__results em {
	color: var(--fxg-color-muted, #64748b);
	line-height: 1.6;
}

.fxg-broker-row__metric span,
.fxg-rating-group__item>span,
.fxg-user-rating>span {
	color: var(--fxg-color-muted, #64748b);
	font-size: 0.84rem;
	font-weight: 750;
}

.fxg-broker-row__metric strong,
.fxg-rating-group__item strong,
.fxg-user-rating strong {
	color: var(--fxg-color-heading, #0f172a);
	line-height: 1.45;
}

.fxg-rating,
.fxg-user-rating strong,
.fxg-broker-card__rebate,
.fxg-rebate-calculator__results div,
.fxg-trading-calculator__results div {
	border-color: rgba(79, 111, 216, 0.2);
	background: #f1f5ff;
	color: var(--fxg-color-primary, #4f6fd8);
}

.fxg-rating {
	padding: 6px 10px;
}

.fxg-user-rating strong {
	display: inline-flex;
	align-items: baseline;
	width: fit-content;
	border-radius: 999px;
	padding: 5px 9px;
}

.fxg-user-rating__metric {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.fxg-user-rating__metric em {
	flex: 0 0 auto;
	white-space: nowrap;
}

.fxg-user-rating {
	overflow: visible;
}

.fxg-user-rating__tooltip {
	z-index: 120;
	width: min(360px, calc(100vw - 32px));
	max-width: calc(100vw - 32px);
}

.fxg-broker-card__facts span,
.fxg-broker-card__platforms span,
.fxg-broker-deal-card__meta span,
.fxg-broker-update-card__meta span {
	border: 1px solid var(--fxg-color-border, #d9e6ef);
	border-radius: 999px;
	background: #fff;
	color: var(--fxg-color-heading, #0f172a);
	font-size: 0.86rem;
	font-weight: 700;
}

.fxg-button,
.fxg-global-search__form button {
	min-height: 46px !important;
	border-radius: var(--fxg-radius-control, 7px) !important;
	font-weight: 800 !important;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.fxg-button--primary,
.fxg-global-search__form button,
.fxg-global-search__tabs button.is-active,
.fxg-global-search__tabs button:hover {
	background: var(--fxg-color-primary, #4f6fd8) !important;
	color: #fff !important;
}

.fxg-button--primary:hover,
.fxg-button--primary:focus,
.fxg-global-search__form button:hover,
.fxg-global-search__form button:focus {
	background: var(--fxg-color-primary-hover, #3958bd) !important;
	color: #fff !important;
}

.fxg-button--secondary {
	border-color: var(--fxg-color-border, #d9e6ef);
	background: #fff;
	color: var(--fxg-color-heading, #0f172a);
}

.fxg-button--secondary:hover,
.fxg-button--secondary:focus {
	border-color: rgba(79, 111, 216, 0.38);
	background: #f1f5ff;
	color: var(--fxg-color-primary, #4f6fd8);
}

.fxg-rebate-calculator input,
.fxg-rebate-calculator select,
.fxg-trading-calculator input,
.fxg-trading-calculator select,
.fxg-global-search__form input[type="search"] {
	min-height: 46px;
	border-color: var(--fxg-border-strong, #c9d8e4);
	border-radius: var(--fxg-radius-control, 7px);
	color: var(--fxg-color-heading, #0f172a);
}

.fxg-rebate-calculator input:focus,
.fxg-rebate-calculator select:focus,
.fxg-trading-calculator input:focus,
.fxg-trading-calculator select:focus,
.fxg-global-search__form input:focus {
	border-color: var(--fxg-color-primary, #4f6fd8);
	box-shadow: 0 0 0 3px rgba(79, 111, 216, 0.14);
	outline: 0;
}

.fxg-broker-compare table th,
.fxg-broker-compare__table-wrap table th {
	background: #f8fbfd;
	color: var(--fxg-color-heading, #0f172a);
	font-weight: 800;
}

.fxg-broker-compare table td,
.fxg-broker-compare__table-wrap table td {
	color: var(--fxg-color-text, #243b53);
	line-height: 1.55;
}

@media (max-width: 720px) {

	.fxg-broker-row,
	.fxg-broker-card__body,
	.fxg-rebate-calculator,
	.fxg-trading-calculator,
	.fxg-broker-compare {
		padding: 18px;
	}
}

/* Standard broker card sizing pass. */
.fxg-broker-grid {
	grid-template-columns: repeat(3, minmax(280px, 1fr));
	align-items: stretch;
}

@media (max-width: 1024px) {
	.fxg-broker-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.fxg-broker-grid {
		grid-template-columns: 1fr;
	}
}

.fxg-broker-card {
	box-sizing: border-box;
	grid-template-rows: auto 1fr;
	min-width: 0;
	overflow: hidden;
}

.fxg-broker-card *,
.fxg-broker-card *::before,
.fxg-broker-card *::after {
	box-sizing: border-box;
}

.fxg-broker-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 7;
	min-height: 150px;
	max-height: 220px;
	padding: 18px;
}

.fxg-broker-card__media img {
	max-width: min(76%, 260px);
	max-height: 160px;
}

.fxg-broker-card__body {
	grid-template-rows: auto auto auto auto auto auto 1fr;
	gap: 12px;
	min-width: 0;
	padding: 22px;
	overflow: hidden;
}

.fxg-broker-card__title,
.fxg-broker-card__summary,
.fxg-broker-card__rebate,
.fxg-broker-card__facts,
.fxg-broker-card__actions,
.fxg-rating-group {
	min-width: 0;
}

.fxg-broker-card__summary {
	min-height: 0;
	font-size: 0.96rem;
	line-height: 1.55;
}

.fxg-broker-card__rebate {
	padding: 10px 12px;
	font-size: 0.95rem;
	line-height: 1.45;
}

.fxg-broker-card__facts {
	gap: 7px;
}

.fxg-broker-card__facts span {
	max-width: 100%;
	font-size: 0.84rem;
	line-height: 1.35;
}

.fxg-broker-card__actions {
	align-self: end;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	width: 100%;
	margin-top: 2px;
}

.fxg-broker-card__actions .fxg-button {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	white-space: nowrap;
}

@media (max-width: 1180px) {
	.fxg-broker-card__actions {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.fxg-broker-card__media {
		min-height: 120px;
		max-height: 170px;
	}

	.fxg-broker-card__body {
		padding: 18px;
	}
}

/* Shared component visual refresh v2. Mirrors the child-theme design system. */
.fxg-broker-list,
.fxg-broker-grid,
.fxg-broker-rankings-grid {
	gap: 22px;
}

.fxg-broker-row,
.fxg-broker-card,
.fxg-broker-ranking,
.fxg-broker-updates,
.fxg-news-alerts,
.fxg-broker-deal-card,
.fxg-broker-deals__empty,
.fxg-global-search,
.fxg-rebate-calculator,
.fxg-trading-calculator,
.fxg-broker-compare {
	border-color: rgba(216, 229, 239, 0.96);
	border-radius: var(--fxg-radius-card, 10px);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.fxg-broker-row:hover,
.fxg-broker-card:hover,
.fxg-broker-ranking__list li:hover,
.fxg-broker-update-card:hover,
.fxg-broker-deal-card:hover,
.fxg-global-search__results a:hover {
	border-color: rgba(79, 111, 216, 0.32);
	box-shadow: 0 20px 46px rgba(15, 23, 42, 0.085);
}

.fxg-broker-card {
	grid-template-rows: 178px 1fr;
	overflow: visible;
}

.fxg-broker-card__media {
	height: 178px;
	min-height: 0;
	max-height: none;
	border-bottom: 1px solid rgba(216, 229, 239, 0.9);
	background:
		radial-gradient(circle at center, rgba(79, 111, 216, 0.05), transparent 58%),
		linear-gradient(180deg, #ffffff, #f7fbfd);
	padding: 22px;
}

.fxg-broker-card__media img {
	max-width: min(72%, 238px);
	max-height: 128px;
}

.fxg-broker-card__body {
	grid-template-rows: auto auto auto auto auto 1fr auto;
	gap: 13px;
	padding: 24px;
	overflow: visible;
}

.fxg-broker-card__title {
	color: var(--fxg-ink, #08142b);
	font-size: 1.26rem;
	font-weight: 740;
}

.fxg-broker-card__summary {
	color: var(--fxg-text, #203652);
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.62;
}

.fxg-broker-card__rebate {
	border-left: 3px solid var(--fxg-primary, #4f6fd8);
	border-radius: 0;
	background: var(--fxg-primary-soft, #f1f5ff);
	padding: 12px 14px;
	color: #3958bd;
	font-size: 0.96rem;
	font-weight: 800;
	line-height: 1.48;
	white-space: normal;
	overflow-wrap: anywhere;
}

.fxg-broker-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fxg-broker-card__facts span,
.fxg-broker-card__platforms span,
.fxg-broker-deal-card__meta span,
.fxg-broker-update-card__meta span,
.fxg-broker-compare__tags span {
	border-color: rgba(191, 210, 224, 0.92);
	background: #fff;
	color: var(--fxg-ink, #08142b);
	font-size: 0.86rem;
	font-weight: 760;
	line-height: 1.35;
}

.fxg-broker-card__facts span[title],
.fxg-broker-card__summary[title],
.fxg-broker-card__rebate[title] {
	cursor: help;
}

.fxg-broker-card__platforms {
	gap: 8px;
}

.fxg-broker-card__platforms span {
	background: #eef4f8;
}

.fxg-broker-card__actions {
	gap: 10px;
	margin-top: 4px;
}

.fxg-broker-row {
	grid-template-columns: minmax(92px, 0.42fr) minmax(270px, 1.45fr) minmax(150px, 0.85fr) minmax(120px, 0.65fr) minmax(116px, 0.62fr) minmax(86px, 0.48fr) minmax(112px, 0.58fr) minmax(135px, 0.68fr);
	align-items: center;
	min-height: 236px;
	padding: 34px 30px;
}

.fxg-broker-row__compare {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	border: 1px solid var(--fxg-border, #d8e5ef);
	border-radius: 999px;
	background: #fff;
	color: var(--fxg-ink, #050b3d);
	font-weight: 800;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.fxg-broker-row__compare:hover,
.fxg-broker-row__compare:focus-within {
	border-color: rgba(79, 111, 216, 0.42);
	background: var(--fxg-primary-soft, #f1f5ff);
	color: var(--fxg-primary-dark, #3958bd);
}

.fxg-broker-row__brand {
	align-items: center;
}

.fxg-broker-row__logo {
	border-color: rgba(216, 229, 239, 0.96);
	background: #f8fbfd;
}

.fxg-broker-row__intro h3,
.fxg-broker-card__title,
.fxg-broker-ranking__heading h2,
.fxg-broker-updates__heading h2,
.fxg-broker-deals__heading h2,
.fxg-global-search__results strong {
	color: var(--fxg-ink, #08142b);
}

.fxg-broker-row__intro p,
.fxg-broker-update-card p,
.fxg-broker-deal-card p,
.fxg-global-search__results small,
.fxg-global-search__results em {
	color: var(--fxg-text, #203652);
	font-weight: 500;
}

.fxg-broker-row__metric span,
.fxg-rating-group__item>span,
.fxg-user-rating>span {
	color: var(--fxg-text-muted, #60748d);
	font-size: 0.84rem;
	letter-spacing: 0;
}

.fxg-broker-row__metric strong,
.fxg-rating-group__item strong {
	color: var(--fxg-ink, #08142b);
	font-weight: 820;
}

.fxg-rating,
.fxg-user-rating strong,
.fxg-rebate-calculator__results div,
.fxg-trading-calculator__results div {
	border-color: rgba(79, 111, 216, 0.18);
	background: var(--fxg-primary-soft, #f1f5ff);
	color: var(--fxg-primary, #4f6fd8);
}

.fxg-user-rating__verified {
	background: #4f6fd8;
	color: #fff;
}

.fxg-button,
.fxg-global-search__form button {
	min-height: 48px !important;
	border-radius: var(--fxg-radius-control, 8px) !important;
	font-size: 0.96rem;
	font-weight: 820 !important;
}

.fxg-button--primary,
.fxg-global-search__form button,
.fxg-global-search__tabs button.is-active,
.fxg-global-search__tabs button:hover {
	background: linear-gradient(135deg, var(--fxg-primary, #4f6fd8), #6f86e6) !important;
	box-shadow: 0 12px 24px rgba(79, 111, 216, 0.16);
}

.fxg-button--secondary {
	border-color: var(--fxg-border-strong, #bfd2e0);
	background: #fff;
	box-shadow: none;
}

.fxg-broker-compare {
	padding: 24px;
}

.fxg-broker-compare__table-wrap {
	max-width: 100%;
	overflow-x: auto;
	contain: inline-size;
	border-color: rgba(216, 229, 239, 0.96);
	border-radius: var(--fxg-radius-card, 10px);
}

.fxg-broker-compare table th,
.fxg-broker-compare__table-wrap table th {
	background: #f4f8fb;
	color: var(--fxg-ink, #08142b);
}

.fxg-broker-compare table td,
.fxg-broker-compare__table-wrap table td {
	color: var(--fxg-text, #203652);
}

.fxg-global-search {
	padding: 24px;
}

.fxg-global-search__form input[type="search"],
.fxg-rebate-calculator input,
.fxg-rebate-calculator select,
.fxg-trading-calculator input,
.fxg-trading-calculator select {
	min-height: 48px;
	border-color: var(--fxg-border-strong, #bfd2e0);
	border-radius: var(--fxg-radius-control, 8px);
	background: #fff;
}

@media (max-width: 1180px) {
	.fxg-broker-row {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}

	.fxg-broker-row__brand,
	.fxg-broker-row__actions {
		grid-column: 1 / -1;
	}

	.fxg-broker-row__actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.fxg-user-rating__tooltip {
		right: 0;
		left: auto;
		max-width: calc(100vw - 32px);
		transform: none;
	}

	.fxg-user-rating__tooltip::after {
		right: 20px;
		left: auto;
		transform: none;
	}
}

@media (max-width: 720px) {
	.fxg-broker-card {
		grid-template-rows: 142px 1fr;
	}

	.fxg-broker-card__media {
		height: 142px;
		padding: 16px;
	}

	.fxg-broker-card__media img {
		max-height: 96px;
	}

	.fxg-broker-row {
		grid-template-columns: 1fr;
		padding: 20px;
	}

	.fxg-broker-row__brand {
		grid-template-columns: 76px minmax(0, 1fr);
	}

	.fxg-broker-row__logo {
		width: 76px;
		height: 64px;
	}

	.fxg-broker-row__actions {
		grid-template-columns: 1fr;
	}
}

/* Shared components brand palette v5: softened blue with lower saturation. */
.fxg-broker-row:hover,
.fxg-broker-card:hover,
.fxg-broker-ranking__list li:hover,
.fxg-broker-update-card:hover,
.fxg-broker-deal-card:hover,
.fxg-global-search__results a:hover {
	border-color: rgba(79, 111, 216, 0.3);
	box-shadow: 0 20px 46px rgba(15, 23, 42, 0.085);
}

.fxg-broker-card__rebate {
	border-left-color: var(--fxg-primary, #4f6fd8);
	background: var(--fxg-primary-soft, #f1f5ff);
	color: var(--fxg-primary-dark, #3958bd);
}

.fxg-broker-card__facts span,
.fxg-broker-card__platforms span,
.fxg-broker-deal-card__meta span,
.fxg-broker-update-card__meta span,
.fxg-broker-compare__tags span {
	border-color: rgba(191, 210, 224, 0.92);
	background: #fff;
}

.fxg-broker-card__platforms span {
	background: #f1f5ff;
	color: #223264;
}

.fxg-broker-row__intro h3 a:hover,
.fxg-broker-card__title a:hover,
.fxg-broker-ranking__list a:hover,
.fxg-global-search__results a:hover strong,
.fxg-broker-update-card h3 a:hover,
.fxg-broker-deal-card h3 a:hover,
.fxg-broker-compare__broker:hover {
	color: var(--fxg-primary, #4f6fd8) !important;
}

.fxg-rating,
.fxg-user-rating strong,
.fxg-rebate-calculator__results div,
.fxg-trading-calculator__results div {
	border-color: rgba(79, 111, 216, 0.18);
	background: var(--fxg-primary-soft, #f1f5ff);
	color: var(--fxg-primary-dark, #3958bd);
}

.fxg-user-rating__verified {
	background: var(--fxg-primary, #4f6fd8);
	color: #fff;
}

.fxg-button--primary,
.fxg-global-search__form button,
.fxg-global-search__tabs button.is-active,
.fxg-global-search__tabs button:hover,
.fxg-broker-ranking__number {
	background: linear-gradient(135deg, var(--fxg-primary, #4f6fd8), #6f86e6) !important;
	box-shadow: 0 12px 24px rgba(79, 111, 216, 0.22);
}

.fxg-button--primary:hover,
.fxg-button--primary:focus,
.fxg-global-search__form button:hover,
.fxg-global-search__form button:focus {
	background: linear-gradient(135deg, var(--fxg-primary-dark, #3958bd), #5570d4) !important;
	box-shadow: 0 14px 30px rgba(79, 111, 216, 0.26);
}

.fxg-button--secondary:hover,
.fxg-button--secondary:focus {
	border-color: rgba(79, 111, 216, 0.38);
	background: var(--fxg-primary-soft, #f1f5ff);
	color: var(--fxg-primary-dark, #3958bd);
}

.fxg-rebate-calculator input:focus,
.fxg-rebate-calculator select:focus,
.fxg-trading-calculator input:focus,
.fxg-trading-calculator select:focus,
.fxg-global-search__form input:focus {
	border-color: var(--fxg-primary, #4f6fd8);
	box-shadow: 0 0 0 3px rgba(79, 111, 216, 0.16);
}

.fxg-broker-compare thead button:hover,
.fxg-broker-compare thead button:focus {
	color: var(--fxg-primary, #4f6fd8);
}

.fxg-review-default-modules,
.fxg-review-module {
	display: grid;
	gap: 20px;
}

.fxg-review-default-modules {
	margin: 0 0 28px;
}

.fxg-review-module {
	margin: 28px 0;
	color: var(--fxg-text, #243b53);
}

.fxg-review-module__title {
	margin: 0 0 16px;
	color: var(--fxg-ink, #0f172a);
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.25;
}

.fxg-review-overview-table {
	width: 100%;
	border-collapse: collapse;
	overflow: hidden;
	border: 1px solid var(--fxg-border, #d9e6ef);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.fxg-review-overview-table th,
.fxg-review-overview-table td {
	border: 1px solid var(--fxg-border, #d9e6ef);
	padding: 13px 16px;
	text-align: center;
	vertical-align: middle;
}

.fxg-review-overview-table thead th {
	background: #e5e7eb;
	color: var(--fxg-ink, #0f172a);
	font-size: 1.18rem;
	font-weight: 900;
}

.fxg-review-overview-table tbody th {
	width: 32%;
	background: #fbfdff;
	color: var(--fxg-ink, #0f172a);
	font-weight: 900;
}

.fxg-review-overview-table tbody th span {
	margin-right: 6px;
}

.fxg-review-regulation-list {
	display: grid;
	gap: 14px;
	border: 1px solid var(--fxg-border, #d9e6ef);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
	padding: 18px;
}

.fxg-review-regulation-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.fxg-review-regulation-item>span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: #e8f0ff;
	color: var(--fxg-primary, #4f6fd8);
	box-shadow: inset 0 0 0 1px rgba(79, 111, 216, 0.16);
}

.fxg-review-regulation-item>span svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
	stroke-width: 2.1;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.fxg-review-regulation-item strong {
	display: block;
	color: var(--fxg-ink, #0f172a);
	font-size: 1.04rem;
	line-height: 1.45;
}

.fxg-review-regulation-item p {
	margin: 6px 0 0;
	color: var(--fxg-text, #243b53);
}

.fxg-review-account-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.fxg-review-account-card {
	position: relative;
	display: grid;
	align-content: start;
	gap: 18px;
	overflow: hidden;
	border: 1px solid #dbe7f3;
	border-radius: 10px;
	background:
		linear-gradient(180deg, rgba(241, 245, 255, 0.72), rgba(255, 255, 255, 0) 120px),
		#fff;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
	padding: 22px;
	text-align: left;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fxg-review-account-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, var(--fxg-primary, #4f6fd8), #7ea3ff);
}

.fxg-review-account-card:hover {
	border-color: rgba(79, 111, 216, 0.38);
	box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
	transform: translateY(-2px);
}

.fxg-review-account-card__title {
	margin: 2px 0 0;
	color: var(--fxg-ink, #08142b);
	font-size: 1.06rem;
	font-weight: 900;
	line-height: 1.35;
}

.fxg-review-account-card.has-badge .fxg-review-account-card__title {
	padding-right: 72px;
}

.fxg-review-account-card ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fxg-review-account-card li {
	border: 1px solid rgba(217, 230, 239, 0.9);
	border-radius: 8px;
	background: rgba(248, 251, 255, 0.82);
	padding: 10px 12px;
	color: var(--fxg-text, #243b53);
	font-size: 0.94rem;
	line-height: 1.45;
}

.fxg-review-account-card li:last-child {
	border-bottom: 1px solid rgba(217, 230, 239, 0.9);
}

.fxg-review-account-card__feature {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	border-color: rgba(56, 161, 105, 0.16) !important;
	background: rgba(240, 253, 244, 0.82) !important;
	color: #14532d !important;
}

.fxg-review-account-card__feature::before {
	content: "✓";
	display: inline-grid;
	flex: 0 0 20px;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #dcfce7;
	color: #16a34a;
	font-size: 0.78rem;
	font-weight: 900;
}

.fxg-review-account-card__badge {
	position: absolute;
	top: 14px;
	right: 14px;
	border-radius: 999px;
	background: #e8f0ff;
	box-shadow: inset 0 0 0 1px rgba(79, 111, 216, 0.18);
	color: var(--fxg-primary, #4f6fd8);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	padding: 5px 9px;
}

.fxg-review-account-card .fxg-button {
	align-self: end;
	justify-content: center;
	width: 100%;
	margin-top: 2px;
	border-radius: 8px !important;
	box-shadow: 0 10px 20px rgba(79, 111, 216, 0.18);
}

.fxg-review-account-card .fxg-button:hover,
.fxg-review-account-card .fxg-button:focus {
	box-shadow: 0 12px 24px rgba(79, 111, 216, 0.24);
	transform: translateY(-1px);
}

@media (max-width: 640px) {
	.fxg-review-account-grid {
		grid-template-columns: 1fr;
	}

	.fxg-review-account-card {
		padding: 20px;
	}
}

.fxg-content-callout {
	--fxg-callout-accent: #d9c96f;
	--fxg-callout-bg: #fffde8;
	--fxg-callout-border: rgba(217, 201, 111, 0.4);
	--fxg-callout-icon-bg: rgba(217, 201, 111, 0.14);
	--fxg-callout-icon-border: rgba(217, 201, 111, 0.32);
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 22px;
	align-items: center;
	margin: 28px 0;
	border-left: 6px solid var(--fxg-callout-border);
	background: var(--fxg-callout-bg);
	padding: 28px 34px 28px 26px;
}

.fxg-content-callout--info {
	--fxg-callout-accent: var(--fxg-primary, #4f6fd8);
	--fxg-callout-bg: var(--fxg-primary-soft, #f1f5ff);
	--fxg-callout-border: rgba(79, 111, 216, 0.32);
	--fxg-callout-icon-bg: rgba(79, 111, 216, 0.1);
	--fxg-callout-icon-border: rgba(79, 111, 216, 0.28);
}

.fxg-content-callout--warning {
	--fxg-callout-accent: #b45309;
	--fxg-callout-bg: #fff7ed;
	--fxg-callout-border: rgba(180, 83, 9, 0.32);
	--fxg-callout-icon-bg: rgba(180, 83, 9, 0.1);
	--fxg-callout-icon-border: rgba(180, 83, 9, 0.28);
}

.fxg-content-callout--note {
	--fxg-callout-accent: var(--fxg-text-muted, #61708e);
	--fxg-callout-bg: var(--fxg-surface-muted, #f7fbfd);
	--fxg-callout-border: var(--fxg-border, #d8e5ef);
	--fxg-callout-icon-bg: rgba(97, 112, 142, 0.08);
	--fxg-callout-icon-border: rgba(97, 112, 142, 0.24);
}

.fxg-content-callout__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--fxg-callout-icon-border);
	border-radius: 999px;
	background: var(--fxg-callout-icon-bg);
	color: var(--fxg-callout-accent);
}

.fxg-content-callout__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.fxg-content-callout__body {
	min-width: 0;
}

.fxg-content-callout__title {
	margin: 0 0 12px;
	color: var(--fxg-ink, #050b3d);
	font-size: 1.08rem;
	font-weight: 850;
	line-height: 1.4;
}

.fxg-content-callout__text {
	color: var(--fxg-text, #1b2f55);
	font-size: 1rem;
	line-height: 1.65;
}

.fxg-content-callout__text p {
	margin: 0 0 10px;
}

.fxg-content-callout__text p:last-child {
	margin-bottom: 0;
}

.fxg-content-callout__links {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fxg-content-callout__title+.fxg-content-callout__links,
.fxg-content-callout__text+.fxg-content-callout__links {
	margin-top: 12px;
}

.fxg-content-callout__links li {
	margin: 0;
}

.fxg-content-callout__links a {
	color: var(--fxg-primary, #4f6fd8);
	font-size: 1.08rem;
	font-weight: 850;
	line-height: 1.45;
	text-decoration: none;
}

.fxg-content-callout__links a:hover,
.fxg-content-callout__links a:focus {
	color: var(--fxg-primary-dark, #3958bd);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.fxg-content-callout__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
	border: 1px solid var(--fxg-border-strong, #bfd2e0);
	border-radius: var(--fxg-radius-control, 8px);
	background: var(--fxg-surface, #fff);
	color: var(--fxg-ink, #050b3d);
	font-weight: 850;
	min-height: 42px;
	padding: 9px 18px;
	text-decoration: none;
}

.fxg-content-callout__button:hover,
.fxg-content-callout__button:focus {
	border-color: var(--fxg-primary, #4f6fd8);
	background: var(--fxg-primary-soft, #f1f5ff);
	color: var(--fxg-primary-dark, #3958bd);
}

.fxg-content-callout-editor__richtext,
.fxg-content-accordion-editor__richtext {
	min-height: 96px;
	margin: 12px 0;
	border: 1px solid var(--fxg-border, #d8e5ef);
	border-radius: var(--fxg-radius-control, 8px);
	background: var(--fxg-surface, #fff);
	color: var(--fxg-text, #1b2f55);
	line-height: 1.65;
	padding: 12px 14px;
}

.fxg-content-callout-editor__richtext:focus,
.fxg-content-accordion-editor__richtext:focus {
	border-color: var(--fxg-primary, #4f6fd8);
	box-shadow: 0 0 0 3px rgba(79, 111, 216, 0.14);
	outline: 0;
}

.fxg-content-accordion {
	display: grid;
	gap: 8px;
	margin: 24px 0;
}

.fxg-content-accordion__item {
	overflow: hidden;
	border: 1px solid var(--fxg-border-soft, #e8f0f6);
	border-radius: 10px;
	background: #f1f1f1;
}

.fxg-content-accordion__item>summary {
	position: relative;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) 22px;
	gap: 12px;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	min-height: 0;
	margin: 0;
	background: #f1f1f1;
	color: var(--fxg-ink, #050b3d);
	cursor: pointer;
	font-size: 1.02rem;
	font-weight: 850;
	line-height: 1.35;
	padding: 14px 18px;
	transition: background-color 160ms ease, color 160ms ease;
}

.fxg-content-accordion__item>summary::-webkit-details-marker {
	display: none;
}

.fxg-content-accordion__state,
.fxg-content-accordion__chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--fxg-ink, #050b3d);
}

.fxg-content-accordion__chevron {
	justify-self: end;
	transition: transform 160ms ease;
}

.fxg-content-accordion__icon {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.4;
}

.fxg-content-accordion__icon--minus {
	display: none;
}

.fxg-content-accordion__item>summary:hover,
.fxg-content-accordion__item>summary:focus,
.fxg-content-accordion__item:hover>summary {
	background: #e7ecf6;
	outline: 0;
}

.fxg-content-accordion__item[open]>summary {
	background: #e7ecf6;
	color: var(--fxg-ink, #050b3d);
}

.fxg-content-accordion__item[open] .fxg-content-accordion__state,
.fxg-content-accordion__item[open] .fxg-content-accordion__chevron {
	color: var(--fxg-ink, #050b3d);
}

.fxg-content-accordion__item[open] .fxg-content-accordion__icon--plus {
	display: none;
}

.fxg-content-accordion__item[open] .fxg-content-accordion__icon--minus {
	display: block;
}

.fxg-content-accordion__item[open] .fxg-content-accordion__chevron {
	transform: rotate(180deg);
}

.fxg-content-accordion__panel {
	border-top: 1px solid var(--fxg-border, #d8e5ef);
	background: var(--fxg-surface, #fff);
	color: var(--fxg-text, #1b2f55);
	font-size: 1rem;
	line-height: 1.75;
	padding: 16px 18px;
}

.fxg-content-accordion__panel p {
	margin: 0 0 12px;
}

.fxg-content-accordion__panel ol,
.fxg-content-accordion__panel ul {
	display: grid;
	gap: 8px;
	margin: 12px 0 12px 1.35rem;
	padding: 0;
}

.fxg-content-accordion__panel li {
	padding-left: 2px;
}

.fxg-content-accordion__panel>*:first-child {
	margin-top: 0;
}

.fxg-content-accordion__panel>*:last-child {
	margin-bottom: 0;
}

.fxg-content-accordion__panel strong {
	color: var(--fxg-ink, #050b3d);
}

/* Broker directory row refinement. */
.fxg-broker-row {
	grid-template-columns:
		40px minmax(126px, 0.62fr) minmax(155px, 0.85fr) minmax(145px, 0.78fr) minmax(105px, 0.55fr) minmax(112px, 0.62fr) minmax(132px, 0.7fr) minmax(138px, 0.72fr);
	align-items: center;
	min-height: 0;
	padding: 24px;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.fxg-broker-row__compare {
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	min-height: 0;
	border: 0;
	border-radius: 6px;
	background: transparent;
	padding: 0;
}

.fxg-broker-row__compare input {
	width: 18px;
	height: 18px;
	margin: 0;
	cursor: pointer;
}

.fxg-broker-row__compare:hover,
.fxg-broker-row__compare:focus-within {
	border-color: transparent;
	background: transparent;
	color: inherit;
}

.fxg-broker-row:hover,
.fxg-broker-row:focus-within {
	border-color: rgba(79, 111, 216, 0.5);
	background: #fbfdff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.fxg-broker-row__brand {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items: center;
	justify-items: center;
	text-align: center;
}

.fxg-broker-row__brand h3 {
	margin: 0;
	color: var(--fxg-ink, #050b3d);
	font-size: 1.04rem;
	font-weight: 820;
	line-height: 1.25;
}

.fxg-broker-row__brand h3 a {
	color: inherit;
	text-decoration: none;
}

.fxg-broker-row__brand h3 a:hover,
.fxg-broker-row__brand h3 a:focus {
	color: var(--fxg-primary, #4f6fd8);
}

.fxg-broker-row__logo {
	width: 112px;
	height: 78px;
}

.fxg-broker-row__metric--rating {
	min-width: 112px;
}

.fxg-broker-row__metric--rating .fxg-rating,
.fxg-broker-row__metric--rating .fxg-user-rating,
.fxg-broker-row__metric--rating .fxg-user-rating__metric,
.fxg-broker-row__metric--rating .fxg-user-rating strong {
	max-width: 100%;
	white-space: nowrap;
}

/* Broker comparison page refinement. */
.fxg-broker-compare {
	overflow-x: auto;
	padding: 20px;
}

.fxg-broker-compare__tools {
	grid-template-columns: minmax(240px, 420px) auto auto auto;
	align-items: end;
	gap: 14px 16px;
	border: 1px solid var(--fxg-border-soft, #e8f0f6);
	border-radius: var(--fxg-radius-card, 10px);
	background: #f8fbfd;
	margin-bottom: 16px;
	padding: 16px 18px;
}

.fxg-broker-compare__tools>label:first-child {
	max-width: 420px;
}

.fxg-broker-compare__tools input[type="search"] {
	max-width: 420px;
}

.fxg-broker-compare__selected {
	display: grid;
	gap: 14px;
	border: 1px solid var(--fxg-border-soft, #e8f0f6);
	border-radius: var(--fxg-radius-card, 10px);
	background: linear-gradient(135deg, #f8fbfd, #f1f5ff);
	margin-bottom: 16px;
	padding: 18px;
}

.fxg-broker-compare__selected-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--fxg-text-muted, #61708e);
	font-weight: 800;
}

.fxg-broker-compare__selected-head strong {
	color: var(--fxg-ink, #050b3d);
}

.fxg-broker-compare__selected-list {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.fxg-broker-compare__selected-item {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 8px;
	border: 1px solid rgba(216, 229, 239, 0.92);
	border-radius: 10px;
	background: #fff;
	padding: 16px 14px;
	text-align: center;
}

.fxg-broker-compare__selected-item img {
	width: 82px;
	height: 62px;
	object-fit: contain;
}

.fxg-broker-compare__selected-item button {
	position: absolute;
	top: 8px;
	right: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: 0;
	border-radius: 999px;
	background: #1f2937;
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1;
}

.fxg-broker-compare__toggle {
	border: 1px solid var(--fxg-border, #d8e5ef);
	border-radius: var(--fxg-radius-control, 8px);
	background: #fff;
	padding: 0 14px;
}

.fxg-broker-compare__status {
	border: 1px solid var(--fxg-border-soft, #e8f0f6);
	border-radius: var(--fxg-radius-control, 8px);
	background: var(--fxg-primary-soft, #f1f5ff);
	margin-bottom: 12px;
	padding: 10px 14px;
}

.fxg-broker-compare table {
	min-width: 1420px;
	border: 1px solid var(--fxg-border-soft, #e8f0f6);
	border-radius: var(--fxg-radius-card, 10px);
	overflow: hidden;
}

.fxg-broker-compare__source {
	margin-top: 14px;
}

.fxg-broker-compare__source tr[hidden],
.fxg-broker-compare__source thead {
	display: none;
}

.fxg-broker-compare__source {
	min-width: 0;
	border: 0;
}

.fxg-broker-compare__source tbody,
.fxg-broker-compare__source tr,
.fxg-broker-compare__source td,
.fxg-broker-compare__source th {
	display: block;
}

.fxg-broker-compare__source tr {
	display: grid;
	grid-template-columns: 96px minmax(180px, 1fr) auto;
	gap: 12px;
	align-items: center;
	border: 1px solid var(--fxg-border-soft, #e8f0f6);
	border-radius: 10px;
	background: #fff;
	margin-bottom: 10px;
	padding: 12px;
}

.fxg-broker-compare__source td:nth-child(n+3):nth-child(-n+7) {
	display: none;
}

.fxg-broker-compare__source .fxg-broker-compare__actions {
	display: none;
}

.fxg-broker-compare__placeholder {
	border: 1px dashed var(--fxg-border, #d8e5ef);
	border-radius: 12px;
	background: #fff;
	margin-bottom: 16px;
	padding: 24px;
	text-align: center;
}

.fxg-broker-compare__placeholder p {
	margin: 8px 0 0;
	color: var(--fxg-text-muted, #61708e);
}

.fxg-broker-compare__sections {
	display: grid;
	gap: 12px;
	margin-bottom: 16px;
}

.fxg-broker-compare-section {
	border: 1px solid var(--fxg-border, #d8e5ef);
	border-radius: 999px;
	background: #fff;
	overflow: hidden;
}

.fxg-broker-compare-section[open] {
	border-radius: 14px;
}

.fxg-broker-compare-section summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	padding: 16px 18px;
	color: var(--fxg-ink, #050b3d);
	font-weight: 900;
}

.fxg-broker-compare-section__body {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--fxg-border-soft, #e8f0f6);
	padding: 0;
}

.fxg-broker-compare-section__header,
.fxg-broker-compare-section__row {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 18px;
	padding: 16px 18px;
}

.fxg-broker-compare-section__header {
	background: #f8fbfd;
	border-bottom: 1px solid var(--fxg-border-soft, #e8f0f6);
}

.fxg-broker-compare-section__row+.fxg-broker-compare-section__row {
	border-top: 1px solid var(--fxg-border-soft, #e8f0f6);
}

.fxg-broker-compare-section__row>span {
	color: var(--fxg-text-muted, #61708e);
	font-weight: 900;
}

.fxg-broker-compare-section__header>div,
.fxg-broker-compare-section__row>div {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.fxg-broker-compare-section__header strong {
	display: block;
	color: var(--fxg-ink, #050b3d);
	font-size: 0.94rem;
	font-weight: 900;
}

.fxg-broker-compare-section__row p {
	margin: 4px 0 0;
	color: var(--fxg-text, #243b53);
	line-height: 1.5;
}

.fxg-broker-compare th,
.fxg-broker-compare td {
	padding: 16px 18px;
	vertical-align: middle;
}

.fxg-broker-compare thead th {
	background: #f3f7fb;
	color: var(--fxg-ink, #050b3d);
}

.fxg-broker-compare thead button {
	gap: 7px;
	position: relative;
	color: var(--fxg-ink, #050b3d) !important;
}

.fxg-broker-compare thead button::after {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid rgba(79, 111, 216, 0.24);
	border-radius: 999px;
	background: #fff;
	color: var(--fxg-primary, #4f6fd8);
	content: "↕";
	font-size: 0.78rem;
	font-weight: 900;
	margin-left: 0;
}

.fxg-broker-compare thead button[aria-sort="asc"]::after {
	background: var(--fxg-primary, #4f6fd8);
	color: #fff;
	content: "↑";
}

.fxg-broker-compare thead button[aria-sort="desc"]::after {
	background: var(--fxg-primary, #4f6fd8);
	color: #fff;
	content: "↓";
}

.fxg-broker-compare thead button:hover::after,
.fxg-broker-compare thead button:focus::after {
	border-color: var(--fxg-primary, #4f6fd8);
	box-shadow: 0 0 0 3px rgba(79, 111, 216, 0.12);
}

.fxg-broker-compare__broker {
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 12px;
}

.fxg-broker-compare__broker img {
	width: 54px;
	height: 54px;
}

.fxg-broker-compare th:nth-child(1),
.fxg-broker-compare td:nth-child(1) {
	width: 110px;
}

.fxg-broker-compare th:nth-child(2),
.fxg-broker-compare td:nth-child(2) {
	width: 210px;
}

.fxg-broker-compare th:nth-child(3),
.fxg-broker-compare td:nth-child(3) {
	width: 230px;
}

.fxg-broker-compare th:nth-child(4),
.fxg-broker-compare td:nth-child(4) {
	width: 190px;
}

.fxg-broker-compare th:nth-child(5),
.fxg-broker-compare td:nth-child(5) {
	width: 145px;
}

.fxg-broker-compare th:nth-child(6),
.fxg-broker-compare td:nth-child(6) {
	width: 230px;
}

.fxg-broker-compare th:nth-child(7),
.fxg-broker-compare td:nth-child(7) {
	width: 180px;
}

.fxg-broker-compare th:nth-child(8),
.fxg-broker-compare td:nth-child(8) {
	width: 150px;
}

.fxg-broker-compare th:nth-child(9),
.fxg-broker-compare td:nth-child(9),
.fxg-broker-compare th:nth-child(10),
.fxg-broker-compare td:nth-child(10) {
	width: auto;
}

.fxg-broker-compare__actions {
	display: grid;
	gap: 8px;
}

.fxg-broker-compare__actions .fxg-button {
	width: 100%;
	justify-content: center;
}

.fxg-compare-tray {
	position: fixed;
	right: 24px;
	bottom: 24px;
	left: 24px;
	z-index: 1000;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

.fxg-compare-tray[hidden] {
	display: none;
}

.fxg-compare-tray__panel {
	display: grid;
	gap: 14px;
	width: min(520px, 100%);
	border: 1px solid rgba(191, 210, 224, 0.78);
	border-radius: 16px;
	background: linear-gradient(135deg, #4f6fd8, #6f86e6);
	box-shadow: 0 22px 48px rgba(15, 23, 42, 0.26);
	color: #fff;
	padding: 18px;
	text-align: center;
	pointer-events: auto;
}

.fxg-compare-tray__panel p {
	margin: 4px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-weight: 700;
}

.fxg-compare-tray__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.fxg-compare-tray__chips button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	padding: 8px 12px;
	font-weight: 800;
	cursor: pointer;
}

.fxg-compare-tray__chips button:hover,
.fxg-compare-tray__chips button:focus {
	background: rgba(255, 255, 255, 0.28);
}

.fxg-compare-tray .fxg-button {
	justify-self: center;
	min-width: 180px;
	background: #111827 !important;
	box-shadow: none;
}

@media (max-width: 720px) {
	.fxg-review-overview-table {
		display: block;
		overflow-x: auto;
	}

	.fxg-content-callout {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 22px;
	}

	.fxg-content-callout__icon {
		width: 42px;
		height: 42px;
	}

	.fxg-content-callout__icon svg {
		width: 22px;
		height: 22px;
	}

	.fxg-content-accordion__item>summary {
		grid-template-columns: 28px minmax(0, 1fr) 20px;
		min-height: 54px;
		padding: 12px 16px;
	}

	.fxg-content-accordion__panel {
		padding: 18px;
	}
}


.fxg-portal-pending-is-open {
	overflow: hidden;
}

.fxg-portal-pending-modal[hidden] {
	display: none;
}

.fxg-portal-pending-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	padding: 22px;
}

.fxg-portal-pending-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(5, 11, 61, 0.58);
	backdrop-filter: blur(5px);
}

.fxg-portal-pending-modal__panel {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 16px;
	width: min(560px, 100%);
	border: 1px solid rgba(216, 229, 239, 0.92);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 28px 72px rgba(15, 23, 42, 0.28);
	padding: 34px;
	outline: 0;
}

.fxg-portal-pending-modal__eyebrow {
	display: inline-flex;
	width: fit-content;
	border: 1px solid rgba(79, 111, 216, 0.22);
	border-radius: 999px;
	background: #f1f5ff;
	color: #4f6fd8;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	padding: 6px 10px;
	text-transform: uppercase;
}

.fxg-portal-pending-modal__panel h2 {
	margin: 0;
	color: #050b3d;
	font-size: clamp(1.55rem, 4vw, 2.05rem);
	font-weight: 900;
	line-height: 1.2;
}

.fxg-portal-pending-modal__panel p {
	margin: 0;
	color: #243b53;
	font-size: 1rem;
	line-height: 1.75;
}

.fxg-portal-pending-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.fxg-portal-pending-modal__actions .fxg-button {
	min-width: 132px;
}

.fxg-portal-pending-modal__x {
	position: absolute;
	top: 14px;
	right: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid #d8e5ef;
	border-radius: 999px;
	background: #fff;
	color: #61708e;
	cursor: pointer;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
}

.fxg-portal-pending-modal__x:hover,
.fxg-portal-pending-modal__x:focus {
	border-color: #4f6fd8;
	color: #4f6fd8;
}

@media (max-width: 520px) {
	.fxg-portal-pending-modal {
		padding: 14px;
	}

	.fxg-portal-pending-modal__panel {
		padding: 28px 20px 22px;
	}

	.fxg-portal-pending-modal__actions {
		flex-direction: column-reverse;
	}

	.fxg-portal-pending-modal__actions .fxg-button {
		width: 100%;
	}
}
