/* ==========================================================================
   Home "Welcome" section (template-parts/home/home-welcome.php) — decorative
   background shape, highlight chips, CTA row and the framed/overlaid media
   image. Builds on the shared .two-col / .two-col-media / .floating-badge
   / .btn base styles in pages/program-category.css and components/buttons.css.
   ========================================================================== */

/* ---------- Section background shape ---------- */
.section-welcome {
	position: relative;
	overflow: hidden;
}
.section-welcome .container {
	position: relative;
	z-index: 1;
}
.section-bg-shape {
	position: absolute;
	top: -180px;
	right: -220px;
	width: 560px;
	height: 560px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, var(--color-bg-alt), transparent 70%);
	z-index: 0;
	pointer-events: none;
}

/* ---------- Copy column ---------- */
.welcome-content p {
	max-width: 54ch;
}

.welcome-highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin: 4px 0 30px;
}
.welcome-highlights li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--color-primary-dark);
}
.welcome-highlights svg {
	width: 18px;
	height: 18px;
	color: var(--color-primary);
	flex-shrink: 0;
}

.welcome-actions {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
}
.btn-arrow {
	display: inline-block;
	transition: transform var(--transition);
}
.btn:hover .btn-arrow {
	transform: translateX(4px);
}
.btn-link {
	position: relative;
	padding-bottom: 3px;
	font-weight: 600;
	color: var(--color-primary-dark);
}
.btn-link::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--transition);
}
.btn-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* ---------- Media column ---------- */
.media-frame {
	position: relative;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}
.media-frame img {
	border-radius: 0;
	box-shadow: none;
}
.media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(30, 63, 54, 0) 55%, rgba(30, 63, 54, 0.35) 100%);
	pointer-events: none;
}
.media-dot-pattern {
	position: absolute;
	top: -24px;
	left: -24px;
	width: 120px;
	height: 120px;
	background-image: radial-gradient(var(--color-secondary) 2px, transparent 2px);
	background-size: 16px 16px;
	opacity: 0.35;
	z-index: -1;
	pointer-events: none;
}
