/* Represent + panel — two columns: arrow list (left) and a side panel (right).
   Scoped to .b-c-represent. */

.lake-root .b-c-represent .repr-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

/* left column */
.lake-root .b-c-represent .repr-heading {
	font-size: clamp(28px, 3.4vw, 40px);
	max-width: 14ch;
	margin: 0;
}
.lake-root .b-c-represent .repr-heading em,
.lake-root .b-c-represent .repr-heading i {
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	font-weight: 400;
}
.lake-root .b-c-represent .repr-intro {
	margin: 20px 0 0;
	font-size: 16px;
	line-height: 1.65;
	max-width: 50ch;
}

/* two-column arrow list */
.lake-root .b-c-represent .repr-list {
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 28px;
}
.lake-root .b-c-represent .repr-list.cols-1 { grid-template-columns: 1fr; }
.lake-root .b-c-represent .repr-list.cols-2 { grid-template-columns: 1fr 1fr; }
.lake-root .b-c-represent .repr-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--brand);
	line-height: 1.4;
}
.lake-root .b-c-represent .repr-link {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: inherit;
	text-decoration: none;
}
.lake-root .b-c-represent .repr-link:hover { color: var(--brand-deep); }
.lake-root .b-c-represent .repr-arrow {
	flex: 0 0 auto;
	margin-top: 2px;
	color: var(--brand);
}

/* right column: highlighted panel */
.lake-root .b-c-represent .repr-panel {
	padding: 40px;
	background: color-mix(in srgb, var(--brand) 7%, #fff);
	border-radius: var(--brand-radius, 8px);
}
.lake-root .b-c-represent .repr-panel-head {
	margin: 0 0 18px;
	font-size: clamp(24px, 3vw, 34px);
	max-width: 16ch;
}
.lake-root .b-c-represent .repr-panel-head em,
.lake-root .b-c-represent .repr-panel-head i {
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	font-weight: 400;
}
.lake-root .b-c-represent .repr-panel-text {
	font-size: 15px;
	line-height: 1.65;
	color: var(--brand-body);
}

/* dark variant */
.lake-root .b-c-represent.dark .repr-intro,
.lake-root .b-c-represent.dark .repr-panel-text {
	color: rgba(255, 255, 255, .9);
}
.lake-root .b-c-represent.dark .repr-panel {
	background: color-mix(in srgb, #fff 8%, transparent);
}

@media (max-width: 860px) {
	.lake-root .b-c-represent .repr-row { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
	.lake-root .b-c-represent .repr-list,
	.lake-root .b-c-represent .repr-list.cols-2 { grid-template-columns: 1fr; }
	.lake-root .b-c-represent .repr-panel { padding: 28px; }
}
