.invest_history h2 {
	font-size: 72px;
}
.project_filter {
	display: flex;
	align-items: center;
	margin: 60px 0 40px;
}
.project_filter .title {
	display: flex;
	align-items: center;
	margin-right: 40px;
	font:400 16px / 1.7 var(--font);
	color:#737373;
}
.project_filter .title svg {
	margin-right: 10px;
}
.project_filter .filter {
	position: relative;
}
.project_filter .filter + .filter {
	margin-left: 24px;
}
.project_filter .filter {
	min-width: 300px;
}
.project_filter .filter .choosen {
	border: 1px solid #3B3B3B;
	background: #27272733;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 20px;
	cursor: pointer;
}
.project_filter .filter .choosen .text {
	color:#ffffff;
	font:400 20px / 1.7 var(--font);
}
.project_filter .filter .choosen svg {
	transition: all .3s ease-out;
}
.project_filter .filter.opened .choosen svg {
	transform: rotate(-180deg);
}
.project_filter .filter .list {
	position: absolute;
	left: 0;
	top: calc(100% + 8px);
	min-width: 100%;
	border: 1px solid #3B3B3B;
	background: #080808;
	border-radius: 8px;
	padding: 12px 20px;
	z-index: 20;
	display: none;
}
.project_filter .filter .list li.all {
	padding-bottom: 16px;
	border-bottom: 1px solid #3B3B3B;
}
.project_filter .filter .list li + li {
	margin-top: 16px;
}
.project_filter .filter .list li input {
	position: absolute;
	opacity: 0;
	visibility: hidden;
}
.project_filter .filter .list li input + .helper {
	position: relative;
	padding-left: 34px;
	white-space: nowrap;
	color:#ffffff;
	font:400 20px / 1.7 var(--font);
	display: flex;
}
.project_filter .filter .list li input + .helper:before {
	content:"";
	position: absolute;
	left: 0;
	top: 5px;
	width: 24px;
	height: 24px;
	border-radius: 4px;
	border: 1px solid #3B3B3B;
	background: #272727;
}
.project_filter .filter .list li input + .helper:after {
	content:"";
	position: absolute;
	left: 0;
	top: 5px;
	width: 26px;
	height: 26px;
	background: url('../img/filter_check.svg') 50% / 14px no-repeat;
	opacity: 0;
	visibility: hidden;
}
.project_filter .filter .list li.semi input + .helper:after {
	background: #ffffff85;
	border-radius: 2px;
	left: 6px;
	top: 11px;
	width: 14px;
	height: 14px;
	opacity: 1;
	visibility: visible;
}
.project_filter .filter .list li input:checked + .helper:after {
	opacity: 1;
	visibility: visible;
}
/* --- hero: quiet disclaimers note (de-emphasized, links out) --- */
.cashdrop_hero.history_hero .descr .fine {
	margin-top: 16px;
	font-size: 13px;
	line-height: 1.5;
	color: #75746d;
	letter-spacing: .2px;
}
.cashdrop_hero.history_hero .descr .fine a {
	color: #A7A69E;
	text-decoration: none;
	border-bottom: 1px solid rgba(200,169,106,.4);
	white-space: nowrap;
	transition: color .2s ease, border-color .2s ease;
}
.cashdrop_hero.history_hero .descr .fine a:hover,
.cashdrop_hero.history_hero .descr .fine a:focus-visible {
	color: #C8A96A;
	border-bottom-color: #C8A96A;
}

/* --- portfolio: stat band + editorial index (champagne) --- */
.pf_stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	background: rgba(243,240,233,.10);
	border: 1px solid rgba(243,240,233,.10);
	border-radius: 14px;
	overflow: hidden;
	margin: 0 0 56px;
}
.pf_stat {
	background: #121319;
	padding: 28px 26px;
}
.pf_stat .n {
	display: block;
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 500;
	font-size: clamp(2rem, 4vw, 2.9rem);
	line-height: 1;
	color: #C8A96A;
	font-variant-numeric: tabular-nums;
}
.pf_stat .l {
	display: block;
	margin-top: 12px;
	font: 500 11.5px / 1.4 var(--font);
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #A7A69E;
}
.projects_list {
	width: 100%;
	border-collapse: collapse;
	min-height: 200px;
}
.projects_list thead th {
	font: 500 12px / 1.6 var(--font);
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #A7A69E;
	text-align: left;
	padding: 0 20px 16px;
	border-bottom: 1px solid #C8A96A;
}
.projects_list thead th.region {
	text-align: right;
}
.projects_list tbody {
	position: relative;
}
.projects_list tbody td {
	padding: 22px 20px;
	border-bottom: 1px solid rgba(243,240,233,.09);
	vertical-align: baseline;
}
.projects_list tbody tr {
	transition: background .2s ease;
}
.projects_list tbody tr:hover {
	background: rgba(200,169,106,.05);
}
.projects_list tbody .company .title {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 500;
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
	line-height: 1.3;
	color: #F3F0E9;
}
.projects_list tbody .company .descr {
	margin-top: 8px;
	max-width: 60ch;
}
.projects_list tbody .company .descr p {
	color: #A7A69E;
	font: 400 15px / 1.55 var(--font);
}
.projects_list tbody .company .descr strong {
	color: #F3F0E9;
	font-weight: 500;
}
.projects_list tbody .company .descr p + p {
	margin-top: 8px;
}
.projects_list tbody td.region {
	text-align: right;
	white-space: nowrap;
	width: 1%;
}
.projects_list tbody td.region .code {
	display: inline-block;
	font: 500 12px / 1 var(--font);
	letter-spacing: .14em;
	color: #C8A96A;
	border: 1px solid rgba(200,169,106,.35);
	border-radius: 20px;
	padding: 7px 13px;
}
.projects_list tbody td.nothing {
	padding: 40px;
	text-align: center;
	color: #A7A69E;
	font: 400 16px / 1.6 var(--font);
}
.projects_list tbody .loading {
	color: #F3F0E9;
	font: 400 16px / 1.6 var(--font);
	text-align: center;
	padding: 30px;
	position: absolute;
	inset: 0;
	background: rgb(11 13 18 / 72%);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
}
.projects_list .tfoot_content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 40px;
}
.projects_list .tfoot_content .buttons {
	display: flex;
	justify-content: center;
}
.invest_history {
	padding: 120px 0;
	background: #0E0E0E;
}
.home_next.history_cta {
	padding: 140px 0;
	margin: 0;
}

@media screen and (max-width: 1024px) {
	.cashdrop_hero.history_hero .bg img {
		object-position: 60% 0;
	}
}
@media screen and (max-width: 821px) {
	.pf_stats {
		margin-bottom: 40px;
	}
	.projects_list thead {
		display: none;
	}
	.projects_list tbody tr {
		display: block;
		border: 1px solid rgba(243,240,233,.12);
		border-radius: 12px;
		padding: 8px 6px;
	}
	.projects_list tbody tr + tr {
		margin-top: 14px;
	}
	.projects_list tbody tr:hover {
		background: transparent;
	}
	.projects_list tbody td {
		display: block;
		width: auto !important;
		padding: 12px 18px;
		border-bottom: 0;
	}
	.projects_list tbody .company {
		width: auto;
	}
	.projects_list tbody td.region {
		text-align: left;
		padding-top: 2px;
	}
	.projects_list tbody td.region:before {
		content: attr(data-head);
		display: block;
		font: 500 10px / 1 var(--font);
		letter-spacing: .2em;
		text-transform: uppercase;
		color: #75746d;
		margin-bottom: 7px;
	}
}
@media screen and (max-width: 480px) {
	.invest_history {
		padding: 60px 0;
	}
	.projects_list tbody .company .title {
		font-size: 1.05rem;
	}
	.projects_list tbody .company .descr p {
		font-size: 14px;
	}
}
