.interest-results-page {
	box-sizing: border-box;
	min-height: 100vh;
	padding: 40px 60px 100px;
	color: #fff;
	background: #052330;
}

.interest-results-page *,
.interest-results-page *::before,
.interest-results-page *::after {
	box-sizing: border-box;
}

.interest-results-hero {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}

.interest-results-title {
	margin: 0;
	color: #fff;
	font-family: Barlow, sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 900;
	line-height: normal;
	text-transform: uppercase;
}

.interest-results-title span {
	color: #fc6433;
}

.interest-results-filter {
	display: flex;
	align-items: center;
	gap: 12px;
}

.interest-results-clear {
	display: flex;
	height: 48px;
	align-items: center;
	gap: 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.09) 100%);
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

.interest-results-country-select {
	position: relative;
	width: 313px;
	height: 48px;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
}

.interest-results-country-toggle {
	display: flex;
	width: 100%;
	height: 48px;
	padding: 12px 16px;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.10) !important;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.09) 100%) !important;
	box-shadow: none !important;
	color: #fff;
	cursor: pointer;
}

.interest-results-country-toggle:hover,
.interest-results-country-toggle:focus-visible,
.interest-results-country-toggle[aria-expanded="true"] {
	border: 1px solid rgba(255, 255, 255, 0.30) !important;
	background: linear-gradient(0deg, var(--Dark, #052330) 0%, var(--Dark, #052330) 100%), rgba(255, 255, 255, 0.08) !important;
	box-shadow: 0 0 4px 0 var(--Blue, #0095FF) !important;
	outline: none;
}

.interest-results-country-selected,
.interest-results-country-option {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.interest-results-country-selected img,
.interest-results-country-option img {
	width: 24px;
	height: 16px;
	flex: 0 0 24px;
	border-radius: 2px;
	object-fit: cover;
}

.interest-results-globe-slot {
	display: inline-flex;
	width: 24px;
	height: 17.723px;
	flex: 0 0 24px;
	align-items: center;
	justify-content: center;
}

.interest-results-globe-slot img.interest-results-globe-icon {
	width: 17.723px;
	height: 17.723px;
	flex: 0 0 17.723px;
	border-radius: 0;
	object-fit: contain;
}

.interest-results-country-selected span,
.interest-results-country-option-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.interest-results-country-arrow {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.interest-results-country-select.is-open .interest-results-country-arrow {
	transform: rotate(180deg);
}

.interest-results-country-menu {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	z-index: 40;
	display: none;
	width: 100%;
	max-height: 280px;
	overflow-y: auto;
	padding: 4px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: #1a3947;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.20) transparent;
}

.interest-results-country-select.is-open .interest-results-country-menu {
	display: block;
}

.interest-results-country-search {
	display: flex;
	height: 36px;
	padding: 6px 8px 6px 12px;
	align-items: center;
	gap: 12px;
	align-self: stretch;
	margin-bottom: 8px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.30);
	background: linear-gradient(0deg, var(--Dark, #052330) 0%, var(--Dark, #052330) 100%), rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 4px 0 var(--Blue, #0095FF);
}

.interest-results-country-search-icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	align-items: center;
	justify-content: center;
}

.interest-results-country-search input {
	width: 100%;
	min-width: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	line-height: 1;
}

.interest-results-country-search input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.interest-results-country-option {
	width: 100%;
	min-height: 40px;
	padding: 12px;
	border: 0;
	color: #fff;
	font: inherit;
	text-align: left;
	cursor: pointer;
	border-radius: 6px;
}

.interest-results-country-option:nth-child(odd) {
	background: rgba(255, 255, 255, 0.04);
}

.interest-results-country-option:nth-child(even) {
	background: rgba(255, 255, 255, 0.10);
}

.interest-results-country-option:hover,
.interest-results-country-option:focus-visible {
	background: #0095ff !important;
	outline: none;
}

.interest-results-country-option.is-selected {
	background: linear-gradient(0deg, rgba(0, 149, 255, 0.18) 0%, rgba(0, 149, 255, 0.32) 100%) !important;
}

.interest-results-clear {
	min-width: 100px;
	padding: 12px 32px;
	justify-content: center;
	text-decoration: none;
}

.interest-results-clear:hover,
.interest-results-clear:focus {
	color: #fff;
	text-decoration: none;
}

.interest-results-clear--all-selected {
	display: none;
}

.interest-results-content {
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.interest-results-section-heading {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 60px;
}

.interest-results-section-kicker {
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
	text-transform: uppercase;
}

.interest-results-section-kicker span {
	color: #fc6433;
}

.interest-results-section-title {
	display: flex;
	align-items: baseline;
	gap: 20px;
	margin: 0;
	color: #fff;
	font-family: Inter, sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: 100%;
	text-transform: uppercase;
}

.interest-results-section-title strong {
	color: #fc6433;
	font: inherit;
}

.interest-results-empty {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-family: Inter, sans-serif;
	font-size: 16px;
	line-height: 1.4;
}

@media (max-width: 900px) {
	.interest-results-page {
		padding: 40px 24px 100px;
	}

	.interest-results-content {
		margin-top: 40px;
		gap: 40px;
	}

	.interest-results-section-heading {
		margin-bottom: 40px;
	}
}

@media (max-width: 640px) {
	.interest-results-page {
		padding-right: 16px;
		padding-left: 16px;
	}

	.interest-results-hero {
		gap: 16px;
	}

	.interest-results-filter {
		width: 100%;
		flex-direction: row;
		align-items: stretch;
	}

	.interest-results-content {
		margin-top: 28px;
		gap: 40px;
	}

	.interest-results-section-heading {
		margin-bottom: 28px;
	}

	.interest-results-country-select,
	.interest-results-clear {
		width: auto;
	}

	.interest-results-country-select {
		flex: 1 1 auto;
		min-width: 0;
	}

	.interest-results-clear {
		flex: 0 0 auto;
		min-width: 100px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.interest-results-clear--all-selected {
		display: flex;
		opacity: 0.5;
		pointer-events: none;
		cursor: default;
	}

	.interest-results-section-title {
		font-size: 32px;
	}
}
