/**
 * MediaOne Widgets — PSG grant section.
 *
 * Copy and benefit list on the left, a dark price card on the right.
 * Stacks with the copy first on mobile.
 */

.mow-psg {

	/* One value drives every alignment in this section — `text-align`,
	   `align-items` and `justify-content` all accept start/center/end, so the
	   alignment control writes this once and the whole block follows. */
	--mow-align: center;
}

.mow-psg__layout {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 2.5rem;
}

.mow-psg__copy,
.mow-psg__panel {
	width: 100%;
}

.mow-psg__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mow-blue);
	background: var(--mow-sky);
	padding: 5px 16px;
	border-radius: 100px;
	margin-bottom: 14px;
}

.mow-psg__title {
	font-weight: 900;
	font-size: clamp(1.5rem, 1.3rem + 0.9vw, 1.875rem);
	line-height: 1.25;
	margin-top: 0.5rem;
}

.mow-psg__hl {
	color: var(--mow-orange);
}

.mow-psg__text {
	margin: 1rem 0;
	color: var(--mow-muted);
	line-height: 1.7;
}

/* ── Benefit list ─────────────────────────────────────────────────────── */

.mow-psg__list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	font-size: 0.875rem;
	color: #4b5563;
}

.mow-psg__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	line-height: 1.6;
}

.mow-psg__list li + li {
	margin-top: 0.75rem;
}

.mow-psg__list svg {
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
	/* Nudged to sit on the first line's baseline rather than its box top. */
	margin-top: 0.1em;
	fill: var(--mow-orange);
}

/* ── Price panel ──────────────────────────────────────────────────────── */

.mow-psg__panel {
	position: relative;
}

/* Decorative square peeking out behind the card's top-left corner. */
.mow-psg__blob {
	position: absolute;
	top: -12px;
	left: -12px;
	width: 80px;
	height: 80px;
	border-radius: 12px;
	background: var(--mow-yellow);
	opacity: 0.35;
	z-index: 0;
}

.mow-psg__card {
	position: relative;
	z-index: 1;
	padding: 28px 24px;
	border-radius: 16px;
	overflow: hidden;
	background: var(--mow-deep);
	box-shadow: 0 20px 25px -5px rgba(0, 14, 62, 0.25);
}

.mow-psg__card-head {
	text-align: center;
	margin-bottom: 1.5rem;
}

.mow-psg__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	margin-bottom: 0.75rem;
	border-radius: 50%;
	font-family: var(--mow-font-head);
	font-size: 1.5rem;
	font-weight: 900;
	color: #fff;
	background: linear-gradient(135deg, var(--mow-orange), var(--mow-yellow));
}

.mow-psg__card-title {
	font-family: var(--mow-font-head);
	font-size: 1.125rem;
	font-weight: 700;
	color: #fff;
}

.mow-psg__card-sub {
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
}

.mow-psg__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mow-psg__row:last-child {
	border-bottom: none;
}

.mow-psg__row-label {
	font-size: 0.875rem;
	font-weight: 500;
	color: #fff;
}

.mow-psg__row-price {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--mow-yellow);
	white-space: nowrap;
}

/* The CTA gradient runs orange → light orange here. */
.mow-psg .mow-cta {
	--mow-cta-from: var(--mow-orange);
	--mow-cta-to: var(--mow-orange-lt);
}

@media (min-width: 768px) {

	.mow-psg__layout {
		flex-direction: row;
		gap: 4rem;
	}

	.mow-psg__copy,
	.mow-psg__panel {
		width: 50%;
		flex: 0 0 auto;
	}
}
