/* GFZ Related Services — Index Table (variant 5). Brand DS colors. */
.gfz-rs {
	--rs-primary: #275894;
	--rs-bright: #008FFF;
	--rs-ink: #0E1726;
	--rs-gray: #5b6573;
	--rs-gray2: #8a93a1;
	--rs-line: #E6EAEF;
	--rs-bg: #F4F6F9;
	--rs-tint: #ECF7FF;
	--rs-tintb: #B2DDFF;
	--rs-mono: ui-monospace, 'SF Mono', Menlo, monospace;
}
.gfz-rs__container {
	display: flex;
	flex-direction: column;
}
.gfz-rs__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 34px;
}
.gfz-rs__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 13px;
	font-weight: 700;
	color: var(--rs-primary);
}
.gfz-rs__eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--rs-bright);
}
.gfz-rs__title {
	margin: 12px 0 0;
}
.gfz-rs__lead {
	margin: 0;
	font-size: 16px;
	color: var(--rs-gray);
	max-width: 60ch;
}
.gfz-rs__tbl {
	border-top: 2px solid var(--rs-ink);
}
.gfz-rs__row {
	display: grid;
	grid-template-columns: 44px 210px minmax(0, 1fr) 124px 118px 22px;
	align-items: center;
	gap: 18px;
	padding: 20px 8px;
	border-bottom: 1px solid var(--rs-line);
	color: var(--rs-ink);
	text-decoration: none;
	transition: .16s;
}
a.gfz-rs__row:hover {
	background: var(--rs-tint);
}
a.gfz-rs__row:hover .gfz-rs__arrow {
	transform: translateX(4px);
}
.gfz-rs__num {
	font-family: var(--rs-mono);
	font-size: 14px;
	color: var(--rs-gray2);
	font-weight: 600;
}
.gfz-rs__jurc {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
}
.gfz-rs__flag {
	width: 34px;
	height: 26px;
	object-fit: contain;
	flex: 0 0 34px;
	border-radius: 4px;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .18));
}
.gfz-rs__flag--empty {
	background: var(--rs-tint);
	border: 1px solid var(--rs-tintb);
	filter: none;
}
.gfz-rs__jn {
	font-weight: 700;
	font-size: 15.5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.gfz-rs__ttl {
	font-size: 15px;
	color: var(--rs-ink);
	min-width: 0;
}
.gfz-rs__ttl b {
	font-weight: 600;
}
.gfz-rs__ttl span {
	color: var(--rs-gray);
}
.gfz-rs__tag {
	justify-self: start;
	font-size: 12px;
	font-weight: 600;
	color: var(--rs-primary);
	background: var(--rs-bg);
	padding: 5px 12px;
	border-radius: 100px;
	white-space: nowrap;
}
.gfz-rs__pp {
	justify-self: end;
	font-family: var(--rs-mono);
	font-size: 14px;
	font-weight: 700;
	color: var(--rs-primary);
	white-space: nowrap;
}
.gfz-rs__arrow {
	color: var(--rs-primary);
	justify-self: end;
	transition: transform .18s;
}
@media screen and (max-width: 860px) {
	.gfz-rs__row {
		grid-template-columns: 32px auto 1fr;
		grid-template-areas:
			"num jur arr"
			"num ttl ttl"
			"num tag pp";
		column-gap: 14px;
		row-gap: 8px;
		align-items: start;
	}
	.gfz-rs__num {
		grid-area: num;
	}
	.gfz-rs__jurc {
		grid-area: jur;
		justify-self: start;
	}
	.gfz-rs__ttl {
		grid-area: ttl;
		justify-self: start;
	}
	.gfz-rs__tag {
		grid-area: tag;
		justify-self: start;
	}
	.gfz-rs__pp {
		grid-area: pp;
		justify-self: end;
		align-self: center;
	}
	.gfz-rs__arrow {
		grid-area: arr;
		align-self: center;
	}
}
