/*
 * Premium Endeks currency workspace.
 * Kept in the data module so the theme remains the page-shell owner.
 */

.index-fx {
	background: var(--tf-canvas);
	padding: clamp(2rem, 4vw, 3.75rem) 0 clamp(4rem, 8vw, 7rem);
	position: relative;
	z-index: 2;
}

.index-fx__intro {
	align-items: center;
	background:
		radial-gradient(circle at 84% 14%, rgba(105, 213, 183, 0.24), transparent 24rem),
		linear-gradient(132deg, var(--tf-primary-950), #092943 62%, #103a59);
	border: 1px solid rgba(140, 224, 200, 0.14);
	border-radius: clamp(1.5rem, 3vw, 2.25rem);
	box-shadow: 0 1.5rem 3.5rem rgba(7, 29, 50, 0.12);
	color: var(--tf-surface);
	display: grid;
	gap: clamp(2rem, 6vw, 6rem);
	grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.55fr);
	padding: clamp(2.25rem, 5vw, 4rem);
	position: relative;
}

.index-fx__intro .eyebrow {
	color: #8ce0c8;
}

.index-fx__intro :is(h1, h2) {
	color: var(--tf-surface);
	font-size: clamp(2rem, 3.5vw, 3.25rem);
	letter-spacing: -0.052em;
	line-height: 1.02;
	margin: 0;
	max-width: 18ch;
	text-wrap: balance;
}

.index-fx__intro > div > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.78);
	font-size: var(--tf-text-md);
	margin: var(--tf-space-5) 0 0;
	max-width: 42rem;
}

.index-fx__intro-note {
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.075);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--tf-radius-lg);
	display: flex;
	gap: var(--tf-space-3);
	padding: 1rem 1.1rem;
}

.index-fx__live-dot {
	background: #8ce0c8;
	border-radius: 50%;
	box-shadow: 0 0 0 0.35rem rgba(140, 224, 200, 0.12);
	flex: 0 0 auto;
	height: 0.55rem;
	margin-top: 0.42rem;
	width: 0.55rem;
}

.index-fx__intro-note strong,
.index-fx__intro-note small {
	display: block;
}

.index-fx__intro-note strong {
	color: var(--tf-surface);
	font-size: var(--tf-text-sm);
}

.index-fx__intro-note small {
	color: rgba(255, 255, 255, 0.66);
	font-size: var(--tf-text-xs);
	line-height: 1.45;
	margin-top: 0.2rem;
}

.tf-fx-shell {
	background: var(--tf-surface);
	border: 1px solid rgba(13, 45, 73, 0.12);
	border-radius: clamp(1.25rem, 3vw, 2rem);
	box-shadow: 0 1.8rem 4.5rem rgba(9, 35, 61, 0.15);
	margin-top: clamp(1rem, 2vw, 1.5rem);
	overflow: hidden;
}

.tf-fx-shell__top {
	align-items: center;
	background:
		radial-gradient(circle at 88% 10%, rgba(105, 213, 183, 0.18), transparent 15rem),
		linear-gradient(130deg, #09243b, #10395b);
	color: var(--tf-surface);
	display: flex;
	gap: var(--tf-space-5);
	justify-content: space-between;
	padding: clamp(1.1rem, 2.5vw, 1.45rem) clamp(1.25rem, 3.8vw, 2.25rem);
}

.tf-fx-shell__top > div > span,
.tf-fx-shell__top > div > strong {
	display: block;
}

.tf-fx-shell__top > div > span {
	color: #8ce0c8;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.tf-fx-shell__top > div > strong {
	color: var(--tf-surface);
	font-size: var(--tf-text-md);
	margin-top: 0.1rem;
}

.tf-fx-status {
	align-items: center;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.78);
	display: inline-flex;
	font-size: var(--tf-text-xs);
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	max-width: 31rem;
	padding: 0.5rem 0.75rem;
	text-align: right;
}

.tf-fx-status::before {
	background: #8ce0c8;
	border-radius: 50%;
	content: "";
	flex: 0 0 auto;
	height: 0.42rem;
	margin-right: 0.45rem;
	width: 0.42rem;
}

.tf-fx-shell[data-fx-state="loading"] .tf-fx-status::before {
	animation: tf-fx-pulse 1.2s ease-in-out infinite alternate;
}

.tf-fx-shell[data-fx-state="error"] .tf-fx-status {
	background: rgba(201, 89, 89, 0.16);
	border-color: rgba(240, 171, 171, 0.28);
	color: #ffe7e7;
}

.tf-fx-shell[data-fx-state="error"] .tf-fx-status::before {
	background: #f0abab;
}

@keyframes tf-fx-pulse {
	to { opacity: 0.35; transform: scale(0.74); }
}

.tf-fx-workspace {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
}

.tf-fx-controls {
	display: grid;
	gap: var(--tf-space-5);
	padding: clamp(1.35rem, 4vw, 2.25rem);
}

.tf-fx-field {
	display: grid;
	gap: 0.45rem;
	min-width: 0;
}

.tf-fx-field > span {
	color: var(--tf-primary-900);
	font-size: var(--tf-text-xs);
	font-weight: 780;
	letter-spacing: 0.05em;
}

.tf-fx-field input,
.tf-fx-field select {
	appearance: none;
	background: var(--tf-surface);
	border: 1px solid var(--tf-border-strong);
	border-radius: 0.85rem;
	box-shadow: none;
	color: var(--tf-primary-950);
	font: inherit;
	font-weight: 690;
	min-height: 3.4rem;
	padding: 0.8rem 1rem;
	transition: border-color var(--tf-duration) var(--tf-ease), box-shadow var(--tf-duration) var(--tf-ease);
	width: 100%;
}

.tf-fx-field select {
	background-image: linear-gradient(45deg, transparent 50%, var(--tf-primary-800) 50%), linear-gradient(135deg, var(--tf-primary-800) 50%, transparent 50%);
	background-position: calc(100% - 1.25rem) 50%, calc(100% - 0.95rem) 50%;
	background-repeat: no-repeat;
	background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
	padding-right: 2.75rem;
}

.tf-fx-field--amount input {
	font-size: clamp(1.3rem, 2vw, 1.6rem);
	letter-spacing: -0.035em;
}

.tf-fx-field input[aria-invalid="true"] {
	border-color: #bd6262;
	box-shadow: 0 0 0 3px rgba(189, 98, 98, 0.16);
}

.tf-fx-field input:focus-visible,
.tf-fx-field select:focus-visible,
.tf-fx-swap:focus-visible,
.tf-fx-quick button:focus-visible,
.tf-fx-refresh:focus-visible,
.tf-fx-footnote a:focus-visible {
	outline: 3px solid #0b6b57;
	outline-offset: 2px;
}

.tf-fx-field > small {
	color: var(--tf-muted);
	font-size: var(--tf-text-xs);
}

.tf-fx-pair {
	align-items: end;
	display: grid;
	gap: var(--tf-space-3);
	grid-template-columns: minmax(0, 1fr) 3.25rem minmax(0, 1fr);
}

.tf-fx-swap {
	align-items: center;
	background: var(--tf-primary-50);
	border: 1px solid var(--tf-border-strong);
	border-radius: 50%;
	color: var(--tf-primary-900);
	cursor: pointer;
	display: inline-flex;
	font-size: 1.28rem;
	height: 3.25rem;
	justify-content: center;
	padding: 0;
	transition: background-color var(--tf-duration) var(--tf-ease), color var(--tf-duration) var(--tf-ease), transform var(--tf-duration) var(--tf-ease);
	width: 3.25rem;
}

.tf-fx-swap:hover {
	background: var(--tf-primary-900);
	color: var(--tf-surface);
	transform: rotate(180deg);
}

.tf-fx-quick {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.tf-fx-quick > span {
	color: var(--tf-muted);
	font-size: var(--tf-text-xs);
	font-weight: 720;
	margin-right: 0.15rem;
}

.tf-fx-quick button,
.tf-fx-refresh {
	appearance: none;
	background: var(--tf-accent-50);
	border: 1px solid var(--tf-accent-100);
	border-radius: 999px;
	color: var(--tf-accent-700);
	cursor: pointer;
	font: inherit;
	font-size: var(--tf-text-xs);
	font-weight: 760;
	/* 44 px is the practical floor for a one-handed mobile tap target. */
	min-height: 2.75rem;
	padding: 0.45rem 0.72rem;
	transition: background-color var(--tf-duration) var(--tf-ease), border-color var(--tf-duration) var(--tf-ease), color var(--tf-duration) var(--tf-ease);
}

.tf-fx-quick button:hover,
.tf-fx-refresh:hover {
	background: var(--tf-accent-100);
	border-color: var(--tf-accent-300);
	color: var(--tf-primary-950);
}

.tf-fx-result {
	background:
		radial-gradient(circle at 100% 0, rgba(140, 224, 200, 0.22), transparent 16rem),
		linear-gradient(145deg, #0b2b47, #123b5d);
	color: var(--tf-surface);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1.5rem, 4vw, 2.4rem);
}

.tf-fx-result__eyebrow {
	align-items: center;
	display: flex;
	gap: var(--tf-space-3);
	justify-content: space-between;
}

.tf-fx-result__eyebrow > span {
	color: #a4e6d3;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.115em;
	text-transform: uppercase;
}

.tf-fx-refresh {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.18);
	color: var(--tf-surface);
}

.tf-fx-refresh:hover {
	background: rgba(255, 255, 255, 0.17);
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--tf-surface);
}

.tf-fx-result__amount {
	color: var(--tf-surface);
	font-size: clamp(2.15rem, 4vw, 3.7rem);
	font-weight: 790;
	letter-spacing: -0.065em;
	line-height: 0.98;
	margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
	overflow-wrap: anywhere;
}

.tf-fx-result__equation {
	color: rgba(255, 255, 255, 0.72);
	font-size: var(--tf-text-sm);
	margin: var(--tf-space-3) 0 0;
}

.tf-fx-rate-list {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	display: grid;
	gap: var(--tf-space-4);
	margin: clamp(1.5rem, 4vw, 2.25rem) 0 0;
	padding-top: var(--tf-space-5);
}

.tf-fx-rate-list > div {
	align-items: baseline;
	display: flex;
	gap: var(--tf-space-4);
	justify-content: space-between;
}

.tf-fx-rate-list dt {
	color: rgba(255, 255, 255, 0.59);
	font-size: var(--tf-text-xs);
}

.tf-fx-rate-list dd {
	color: #b9f1e1;
	font-size: var(--tf-text-sm);
	font-weight: 760;
	margin: 0;
	text-align: right;
}

.tf-fx-result__meta {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.73rem;
	line-height: 1.45;
	margin: var(--tf-space-6) 0 0;
}

.tf-fx-market {
	border-top: 1px solid var(--tf-border);
	padding: clamp(1.35rem, 4vw, 2.25rem);
}

.tf-fx-market__heading {
	align-items: end;
	display: grid;
	gap: var(--tf-space-6);
	grid-template-columns: minmax(0, 0.86fr) minmax(14rem, 1.14fr);
	margin-bottom: var(--tf-space-6);
}

.tf-fx-market__heading > div > span {
	color: var(--tf-accent-700);
	display: block;
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tf-fx-market__heading h3 {
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	letter-spacing: -0.04em;
	margin: 0.2rem 0 0;
}

.tf-fx-market__heading > p {
	color: var(--tf-muted);
	font-size: var(--tf-text-sm);
	line-height: 1.55;
	margin: 0;
}

.tf-fx-market__grid {
	display: grid;
	gap: var(--tf-space-3);
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.tf-fx-market-card {
	background: var(--tf-canvas);
	border: 1px solid var(--tf-border);
	border-radius: var(--tf-radius-md);
	min-width: 0;
	padding: 1rem;
}

.tf-fx-market-card > span {
	color: var(--tf-accent-700);
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.tf-fx-market-card > strong {
	color: var(--tf-primary-950);
	display: block;
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	letter-spacing: -0.04em;
	line-height: 1.05;
	margin-top: var(--tf-space-4);
	overflow-wrap: anywhere;
}

.tf-fx-market-card > small {
	color: var(--tf-muted);
	display: block;
	font-size: 0.7rem;
	margin-top: var(--tf-space-3);
}

.tf-fx-market__empty {
	background: var(--tf-canvas);
	border: 1px dashed var(--tf-border-strong);
	border-radius: var(--tf-radius-md);
	color: var(--tf-muted);
	font-size: var(--tf-text-sm);
	grid-column: 1 / -1;
	margin: 0;
	padding: 1rem;
}

.tf-fx-footnote {
	align-items: flex-start;
	background: var(--tf-primary-50);
	border-top: 1px solid var(--tf-border);
	display: flex;
	gap: 0.7rem;
	padding: 1rem clamp(1.35rem, 4vw, 2.25rem);
}

.tf-fx-footnote > span {
	align-items: center;
	background: var(--tf-primary-900);
	border-radius: 50%;
	color: var(--tf-surface);
	display: inline-flex;
	flex: 0 0 auto;
	font-family: Georgia, serif;
	font-size: 0.75rem;
	font-weight: 700;
	height: 1.15rem;
	justify-content: center;
	margin-top: 0.15rem;
	width: 1.15rem;
}

.tf-fx-footnote p {
	color: var(--tf-muted);
	font-size: 0.76rem;
	line-height: 1.55;
	margin: 0;
}

.tf-fx-footnote a {
	color: var(--tf-accent-700);
	font-weight: 760;
}

@media (max-width: 68rem) {
	.index-fx__intro,
	.tf-fx-workspace {
		grid-template-columns: 1fr;
	}

	.index-fx__intro-note {
		max-width: 34rem;
	}

	.tf-fx-result {
		min-height: 20rem;
	}

	.tf-fx-market__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 46rem) {
	.index-fx {
		padding-bottom: 3.5rem;
		padding-top: 1.25rem;
	}

	.index-fx__intro {
		border-radius: 1.25rem;
		padding: 2rem 1.15rem;
	}

	.index-fx__intro :is(h1, h2) {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.tf-fx-shell__top,
	.tf-fx-market__heading {
		align-items: flex-start;
		grid-template-columns: 1fr;
	}

	.tf-fx-shell__top {
		flex-direction: column;
	}

	.tf-fx-status {
		max-width: none;
		text-align: left;
	}

	.tf-fx-pair {
		grid-template-columns: 1fr;
	}

	.tf-fx-swap {
		justify-self: center;
		transform: rotate(90deg);
	}

	.tf-fx-swap:hover {
		transform: rotate(270deg);
	}

	/* The desktop result panel inherited a 20rem floor through the tablet
	 * breakpoint. On a phone that pushed the useful controls a full screen
	 * away; let its content determine its height instead. */
	.tf-fx-result {
		min-height: 0;
		padding: 1.35rem;
	}

	.tf-fx-result__amount {
		font-size: clamp(2.1rem, 12vw, 3rem);
		margin-top: 1.5rem;
	}

	.tf-fx-quick > span {
		flex-basis: 100%;
	}

	.tf-fx-market {
		padding: 1.35rem;
	}

	.tf-fx-market__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tf-fx-market-card {
		padding: 0.85rem;
	}
}

@media (max-width: 25.5rem) {
	.tf-fx-market__grid {
		grid-template-columns: 1fr;
	}

	.tf-fx-quick button {
		flex: 1 1 calc(50% - 0.55rem);
	}

	.tf-fx-result__eyebrow {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tf-fx-shell[data-fx-state="loading"] .tf-fx-status::before {
		animation: none;
	}
}

/* Trusted BIST report. Uploaded report CSS is deliberately never used. */
.index-bist {
	background: linear-gradient(180deg, #eef6f4, #f7f9fc 72%, var(--tf-canvas));
	padding: clamp(3.5rem, 7vw, 6.5rem) 0;
	position: relative;
}

.index-bist__header {
	align-items: end;
	display: grid;
	gap: 1.5rem 3rem;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.index-bist__header .eyebrow,
.index-bist__summary .eyebrow {
	margin-bottom: .65rem;
}

.index-bist__header h2 {
	color: var(--tf-primary-950);
	font-size: clamp(2rem, 4vw, 3.65rem);
	letter-spacing: -.055em;
	line-height: 1.02;
	margin: 0;
	max-width: 19ch;
	text-wrap: balance;
}

.index-bist__header > div > p:not(.eyebrow) {
	color: var(--tf-muted);
	font-size: var(--tf-text-md);
	line-height: 1.6;
	margin: 1rem 0 0;
	max-width: 46rem;
}

.index-bist__meta {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	justify-content: end;
	max-width: 23rem;
}

.index-bist__meta span {
	background: rgba(255,255,255,.86);
	border: 1px solid rgba(11, 48, 71, .13);
	border-radius: 999px;
	color: var(--tf-muted);
	font-size: .72rem;
	font-weight: 720;
	padding: .52rem .75rem;
	white-space: nowrap;
}

.index-bist__meta strong { color: var(--tf-primary-950); }

.index-bist__shell {
	background: var(--tf-surface);
	border: 1px solid rgba(10, 45, 69, .12);
	border-radius: clamp(1.25rem, 3vw, 2rem);
	box-shadow: 0 1.5rem 3.5rem rgba(8, 34, 58, .1);
	overflow: hidden;
}

.index-bist__kpis {
	background: linear-gradient(128deg, #08243c, #0f4162);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.index-bist__kpis > div {
	border-right: 1px solid rgba(255,255,255,.14);
	display: flex;
	flex-direction: column;
	gap: .42rem;
	min-width: 0;
	padding: clamp(1rem, 2.4vw, 1.6rem);
}

.index-bist__kpis > div:last-child { border-right: 0; }

.index-bist__kpis span,
.index-bist__kpis small {
	color: rgba(255,255,255,.68);
	font-size: .72rem;
	font-weight: 720;
	line-height: 1.45;
}

.index-bist__kpis span { letter-spacing: .075em; text-transform: uppercase; }

.index-bist__kpis strong {
	color: #fff;
	font-size: clamp(1.45rem, 2.5vw, 2.25rem);
	letter-spacing: -.055em;
	line-height: 1;
	overflow-wrap: anywhere;
}

.index-bist__kpis i {
	background: rgba(255,255,255,.13);
	border-radius: 99px;
	display: block;
	height: .38rem;
	overflow: hidden;
	width: 100%;
}

.index-bist__kpis i b { background: #7ce0c8; border-radius: inherit; display: block; height: 100%; }

.index-bist__summary {
	border-bottom: 1px solid var(--tf-border);
	padding: clamp(1.35rem, 3vw, 2.5rem);
}

.index-bist__summary > p:last-child,
.index-bist__outlook p {
	color: var(--tf-primary-800);
	font-size: clamp(1rem, 1.7vw, 1.15rem);
	line-height: 1.7;
	margin: 0;
	max-width: 72rem;
}

.index-bist__themes {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	background: var(--tf-border);
}

.index-bist__themes article {
	background: var(--tf-surface);
	min-width: 0;
	padding: clamp(1.15rem, 2.4vw, 1.7rem);
}

.index-bist__themes span {
	color: var(--tf-accent-700);
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .11em;
}

.index-bist__themes h3 {
	color: var(--tf-primary-950);
	font-size: 1.05rem;
	letter-spacing: -.03em;
	line-height: 1.15;
	margin: .65rem 0;
}

.index-bist__themes p { color: var(--tf-muted); font-size: .83rem; line-height: 1.6; margin: 0; }

.index-bist__details {
	border-top: 1px solid var(--tf-border);
	padding: 0 clamp(1.35rem, 3vw, 2.5rem);
}

.index-bist__details summary {
	align-items: center;
	color: var(--tf-primary-900);
	cursor: pointer;
	display: flex;
	font-size: .94rem;
	font-weight: 800;
	justify-content: space-between;
	list-style: none;
	min-height: 4.5rem;
}

.index-bist__details summary::-webkit-details-marker { display: none; }
.index-bist__details summary::after { color: var(--tf-accent-700); content: '+'; font-size: 1.55rem; line-height: 1; }
.index-bist__details[open] summary::after { content: '−'; }
.index-bist__details summary:focus-visible { outline: 3px solid #0b6b57; outline-offset: -3px; }

.index-bist__rows { border-top: 1px solid var(--tf-border); padding: 1rem 0 .5rem; }

.index-bist__rows article {
	align-items: center;
	border-bottom: 1px solid var(--tf-border);
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(12rem, 1.7fr) minmax(7rem, 1fr) 5.5rem 4.7rem;
	padding: .9rem 0;
}

.index-bist__rows strong { color: var(--tf-primary-950); font-size: .88rem; }
.index-bist__rows p { color: var(--tf-muted); font-size: .73rem; line-height: 1.45; margin: .28rem 0 0; }
.index-bist__rows > article > span { color: var(--tf-primary-950); font-size: .86rem; font-weight: 800; text-align: right; }
.index-bist__rows > article > span small { color: var(--tf-muted); display: block; font-size: .7rem; font-weight: 650; margin-top: .18rem; }

.index-bist__bar { background: #e5edf0; border-radius: 999px; height: .46rem; overflow: hidden; }
.index-bist__bar b { border-radius: inherit; display: block; height: 100%; }
.index-bist__rows .is-support .index-bist__bar b { background: linear-gradient(90deg, #28a482, #72d7bf); }
.index-bist__rows .is-pressure .index-bist__bar b { background: linear-gradient(90deg, #dc7373, #efad9f); }
.index-bist__rows .is-neutral .index-bist__bar b { background: #8194a2; }
.index-bist__rows em { border-radius: 999px; font-size: .7rem; font-style: normal; font-weight: 800; justify-self: end; padding: .36rem .5rem; }
.index-bist__rows .is-support em { background: #e2f7ef; color: #087b60; }
.index-bist__rows .is-pressure em { background: #feeaea; color: #a83e3e; }
.index-bist__rows .is-neutral em { background: #e8eef1; color: #516778; }

.index-bist__technical { margin: 1.5rem 0 0; }
.index-bist__technical img { border: 1px solid var(--tf-border); border-radius: 1rem; display: block; height: auto; max-width: 100%; width: 100%; }
.index-bist__technical figcaption { color: var(--tf-muted); font-size: .76rem; margin: .6rem 0 1.5rem; }

.index-bist__outlook { background: #f1faf7; border-top: 1px solid #d7eee7; color: var(--tf-primary-950); padding: clamp(1.35rem, 3vw, 2.25rem); }
.index-bist__outlook strong { color: #087b60; display: block; font-size: .75rem; letter-spacing: .09em; margin-bottom: .6rem; text-transform: uppercase; }

@media (max-width: 68rem) {
	.index-bist__header { align-items: start; grid-template-columns: 1fr; }
	.index-bist__meta { justify-content: start; max-width: none; }
	.index-bist__themes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.index-bist__kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.index-bist__kpis > div:nth-child(2) { border-right: 0; }
	.index-bist__kpis > div:nth-child(-n + 2) { border-bottom: 1px solid rgba(255,255,255,.14); }
}

@media (max-width: 46rem) {
	.index-bist { padding: 3.5rem 0; }
	.index-bist__header h2 { font-size: clamp(2rem, 10vw, 3rem); }
	/* Keep the four headline values in a calm 2 × 2 scan at normal phone
	 * widths. The single stack is reserved for genuinely narrow screens. */
	.index-bist__kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.index-bist__kpis > div { border-bottom: 1px solid rgba(255,255,255,.14); border-right: 1px solid rgba(255,255,255,.14); }
	.index-bist__kpis > div:nth-child(2n) { border-right: 0; }
	.index-bist__kpis > div:nth-last-child(-n + 2) { border-bottom: 0; }
	.index-bist__themes { grid-template-columns: 1fr; }
	.index-bist__rows article { align-items: start; grid-template-columns: 1fr; gap: .6rem; }
	.index-bist__rows > article > span { text-align: left; }
	.index-bist__rows em { justify-self: start; }
	.index-bist__details { padding: 0 1.15rem; }
}

@media (max-width: 23rem) {
	.index-bist__kpis { grid-template-columns: 1fr; }
	.index-bist__kpis > div { border-bottom: 1px solid rgba(255,255,255,.14); border-right: 0; }
	.index-bist__kpis > div:last-child { border-bottom: 0; }
}
