/**
 * Page Title Section — Velour Pro Addons
 *
 *
 * @since 1.0.0
 */

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.vnpa-page-title {
	position: relative;
	overflow: hidden;
	background-color: #ffffff;
	border-bottom: 1px solid #E5E7EB;
}

/* ============================================================
   DECORATIVE GLOW ORB
   ============================================================ */
.vnpa-page-title__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: rgba( 0, 114, 255, 0.05 );
	filter: blur( 120px );
	pointer-events: none;
	z-index: 1;
}

/* ============================================================
   INNER CONTAINER
   ============================================================ */
.vnpa-page-title__container {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
	position: relative;
	z-index: 10;
	text-align: center;
}

@media ( min-width: 1024px ) {
	.vnpa-page-title__container {
		padding-left: 32px;
		padding-right: 32px;
	}
}

/* ============================================================
   BADGE / PILL
   ============================================================ */
.vnpa-page-title__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 9999px;
	background: rgba( 0, 114, 255, 0.10 );
	margin-bottom: 24px;
}

/* Pulsing dot */
.vnpa-page-title__badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #0072FF;
	animation: vnpa-page-title-pulse 2s cubic-bezier( 0.4, 0, 0.6, 1 ) infinite;
	flex-shrink: 0;
}

@keyframes vnpa-page-title-pulse {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0.5; }
}

/* Badge text */
.vnpa-page-title__badge-text {
	font-size: 12px;
	font-family: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 600;
	color: #0072FF;
	margin: 0;
	line-height: 1;
}

/* ============================================================
   TITLE (H1)
   ============================================================ */
.vnpa-page-title__heading {
	font-family: 'Sora', sans-serif;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: #111827;
	margin: 0 0 16px 0;
	line-height: 1.1;
}

@media ( min-width: 1024px ) {
	.vnpa-page-title__heading {
		font-size: 60px;
	}
}

/* ============================================================
   DESCRIPTION
   ============================================================ */
.vnpa-page-title__description {
	font-size: 16px;
	font-weight: 300;
	color: #6B7280;
	max-width: 576px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.625;
}

@media ( min-width: 1024px ) {
	.vnpa-page-title__description {
		font-size: 18px;
	}
}

/* ============================================================
   HIDDEN UTILITY
   ============================================================ */
.vnpa-page-title__badge--hidden {
	display: none !important;
}

.vnpa-page-title__description--hidden {
	display: none !important;
}
