/* BlueWave List Box — scoped under .bw-list-box */

.bw-list-box {
	background: #023c5a;
	color: #e6eef3;
	border-radius: 22px;
	padding: 40px 40px 36px;
	box-shadow: 0 30px 80px -40px rgba(2, 60, 90, 0.5);
	position: relative;
	overflow: hidden;
	margin-bottom: 50px;
}

.bw-list-box__header {
	color: #fff;
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: -0.015em;
	font-family: var(--e-global-typography-primary-font-family, "Manrope", sans-serif);
	font-weight: 700;
	margin: 0 0 10px;
}

.bw-list-box__sub {
	font-style: italic;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	margin: 0 0 26px;
	line-height: 1.5;
}

.bw-list-box__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bw-list-box__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 16px;
	color: #f4f6f8;
	line-height: 1.5;
}

.bw-list-box__icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #f1c286;
	color: #023c5a;
	flex-shrink: 0;
	margin-top: 1px;
}

.bw-list-box__icon svg {
	width: 14px;
	height: 14px;
}

/* Responsive */
@media (max-width: 767px) {
	.bw-list-box {
		padding: 28px 24px 24px;
		border-radius: 16px;
	}
	.bw-list-box__header {
		font-size: 22px;
	}
	.bw-list-box__item {
		padding: 12px 14px;
	}
}
