/* H-Lead Bullet Banner.
 * Figma: 'hospitality-solutions' frame, 1568x312, pad 64/56, radius 16,
 * bg brand-50, 04. H-lead_about_desktop_v1 / mobile (stacked, pad 40/20). */

.hl-bullet-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--hl-space-56);
	padding: var(--hl-space-64) var(--hl-space-56);
	border-radius: var(--hl-radius-16);
	background: var(--hl-color-brand-50);
}

.hl-bullet-banner__bullets {
	display: flex;
	flex-direction: column;
	gap: var(--hl-space-24);
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 0 0 auto;
}

.hl-bullet-banner__bullet {
	display: flex;
	align-items: center;
	gap: var(--hl-space-12);
}

.hl-bullet-banner__label {
	color: var(--hl-color-brand-700);
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	white-space: nowrap;
}

.hl-bullet-banner__check-icon {
	width: var(--hl-space-24);
	height: var(--hl-space-24);
	flex-shrink: 0;
	background-color: var(--hl-color-brand-700);
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.hl-bullet-banner__text {
	display: flex;
	flex-direction: column;
	gap: var(--hl-space-20);
	max-width: 770px;
}

.hl-bullet-banner__body {
	margin: 0;
	color: var(--hl-color-grey-600);
	font-size: 20px;
	line-height: 30px;
}

.hl-bullet-banner__heading {
	margin: 0;
	color: var(--hl-color-brand-700);
	font-size: 36px;
	line-height: 44px;
	font-weight: 700;
}

@media (max-width: 991px) {
	.hl-bullet-banner {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--hl-space-40);
		padding: var(--hl-space-40) var(--hl-space-20);
	}

	.hl-bullet-banner__label {
		white-space: normal;
	}

	.hl-bullet-banner__body {
		font-size: 18px;
		line-height: 28px;
	}

	.hl-bullet-banner__heading {
		font-size: 24px;
		line-height: 32px;
	}

	.hl-bullet-banner__bullets {
		display: none;
	}
}