.niches {
	padding: 100px 0;
	background: #E9EEF5;
	color: #131C2E;
}

/* Header */
.niches__badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px;
	padding: 8px 16px;
	background: var(--color-white);
	border: 1px solid #D5DEE9;
	border-radius: 40px;
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	color: #131C2E;
}

.niches__badge-dot {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--color-primary);
}

.niches__heading {
	max-width: 680px;
	margin: 0 0 56px;
	color: #131C2E;
}

.niches__heading span {
	color: var(--color-primary);
}

/* Cards */
.niches__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
	gap: 20px;
}

.niches__card {
	padding: 24px;
	background: #FFFFFF;
	backdrop-filter: blur(7.5px);
	border-radius: 20px;
}

.niches__card-title {
	margin: 0 0 20px;
	font-size: 18px;
	line-height: 150%;
	font-weight: 600;
	color: #131C2E;
}

/* Chips */
.niches__slider {
	/*
	 * Before Swiper boots the wrapper is a plain flex row, so the chips keep
	 * their shape and the card never flashes a stacked column.
	 */
	overflow: hidden;
}

.niches__slider .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.niches__slide {
	width: auto;
	max-width: 100%;
	flex-shrink: 0;
	margin-right: 12px;
}

.niches__slide:last-child {
	margin-right: 0;
}

.niches__chip {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	border: 1px solid #D5DEE9;
	border-radius: var(--radius-pill);
	background: var(--color-white);
	font-size: var(--fs-sm);
	line-height: 150%;
	color: #131C2E;
	white-space: nowrap;
}

/*
 * Icons and flags are both uploaded, so one box fits both: contain keeps a
 * wide flag and a square icon at their own proportions.
 */
.niches__chip-media {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	object-fit: contain;
}

@media (max-width: 1023px) {
	.niches__heading {
		margin-bottom: 40px;
		max-width: none;
	}
}

@media (max-width: 600px) {
	.niches {
		padding: 56px 0;
	}

	.niches__heading {
		margin-bottom: 32px;
		        font-size: 18px;
	}

	.niches__card {
		padding: 24px 20px;
		border-radius: var(--radius-md);
	}

	.niches__chip {
		padding: 10px 16px;
		gap: 8px;
	}

	.niches__slide {
		margin-right: 8px;
	}
}
