/* Home section 06 — Company intro banner (Figma node 1:1560) */

.company-intro {
	background: var(--color-bg-light);
	padding: 40px 20px;
}

.company-intro__card,
body .company-intro__card {
	position: relative;
	width: 100%;
	min-height: 282px;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 60px;
	background-color: #060b2e;
}

/* Decorative constellation texture: the Figma source tiles ~26 copies of a
   202x202 vector pattern to fill the card background. Reproducing every
   copy as an individual asset would add a lot of markup for a purely
   decorative texture, so it is approximated here by tiling the single
   exported pattern tile via CSS background-repeat, layered under a
   navy gradient overlay that matches the design. */
.company-intro__pattern {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient( to right, rgba( 35, 44, 104, 0 ) 0%, rgba( 35, 44, 104, 0.85 ) 100% ),
		url( '../../images/section-06-company-intro/pattern-tile.svg' );
	background-repeat: no-repeat, repeat;
	background-size: cover, 202px 202px;
	pointer-events: none;
}

.company-intro__content,
body .company-intro__content {
	position: relative;
	z-index: 1;
	max-width: 1078px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.company-intro__title {
	font-weight: 700;
	font-size: 33px;
	line-height: normal;
	color: var(--color-white);
}

.company-intro__text p {
	font-weight: 400;
	font-size: 16px;
	line-height: normal;
	color: var(--color-white);
}

@media ( max-width: 768px ) {
	.company-intro__card {
		padding: 32px 24px;
	}

	.company-intro__title {
		font-size: 26px;
	}
}

@media ( max-width: 480px ) {
	.company-intro__title {
		font-size: 22px;
	}

	.company-intro__text p {
		font-size: 14px;
	}
}
