/* NXS Elementor Add-Ons - base structural CSS. Colors/spacing come from Elementor's Style controls. */

.nxs-project-details__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.nxs-project-details__label {
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 13px;
	margin-bottom: 4px;
}

.nxs-project-details__name {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
}

.nxs-project-details__button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.nxs-project-details__button:hover {
	opacity: 0.85;
	color: inherit;
}

.nxs-project-details__button-icon {
	font-size: 0.9em;
}

.nxs-cta-banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.nxs-cta-banner__heading {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.nxs-cta-banner__description {
	font-size: 16px;
	line-height: 1.6;
	max-width: 560px;
	margin: 0;
}

.nxs-cta-banner__button {
	display: inline-block;
	padding: 14px 32px;
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
	margin-top: 8px;
	transition: transform 0.2s ease;
}

.nxs-cta-banner__button:hover {
	transform: translateY(-2px);
	color: inherit;
}

@media (max-width: 767px) {
	.nxs-project-details__row {
		flex-direction: column;
		align-items: flex-start;
	}

	.nxs-cta-banner__heading {
		font-size: 26px;
	}
}
