/**
 * Pxl Company Info — thông tin công ty (bullet list, nền panel).
 */

.pxl-company-info {
	color: #fff;
	font-family: var(--font-sans, system-ui, sans-serif);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

/* CTA bar fixed 70px — tránh che khối cuối (page hay để cta_bar trước company-info). */
body.fs-landing-single:has(.pxl-cta-bar) .pxl-company-info {
	padding-bottom: 96px;
}

.pxl-company-info *,
.pxl-company-info *::before,
.pxl-company-info *::after {
	box-sizing: border-box;
}

.pxl-company-info .shell {
	max-width: 780px;
	margin: 0 auto;
	padding: 0 16px;
}

.pxl-company-info__box {
	border-radius: 0;
	padding: 0;
	text-align: left;
	max-width: 440px;
	margin: 0 auto;
}

.pxl-company-info__title {
	margin: 0 0 22px;
	padding: 0 0 10px;
	border-bottom: 1px solid rgb(255 255 255 / 88%);
	font-family: var(--font-sans, system-ui, sans-serif);
	font-size: clamp(13px, 2.4vw, 15px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
}

.pxl-company-info__list {
	margin: 0;
	padding: 0 0 0 18px;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pxl-company-info__item {
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.6;
	color: rgb(255 255 255 / 92%);
}

.pxl-company-info__item::before {
	content: "";
	position: absolute;
	left: -18px;
	top: 0.62em;
	width: 5px;
	height: 5px;
	margin-top: -2px;
	border-radius: 50%;
	background: #fff;
	opacity: 0.95;
}

.pxl-company-info__label,
.pxl-company-info__item strong {
	font-weight: 700;
	color: #fff;
}

.pxl-company-info__body {
	font-weight: 400;
	color: rgb(255 255 255 / 92%);
}

.pxl-company-info__body a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pxl-company-info__body a:hover,
.pxl-company-info__body a:focus-visible {
	color: var(--gold-bright, #e8c988);
}

@media (max-width: 480px) {
	.pxl-company-info .shell {
		padding: 0px;
	}

	.pxl-company-info__box {
		padding: 12px 0px 0px;
	}

	.pxl-company-info__title {
		margin-bottom: 18px;
		font-size: 13px;
	}

	.pxl-company-info__item {
		font-size: 13px;
	}
}