/**
 * MediaOne Widgets — "Strategies Aligned to Your Goals" panels.
 *
 * Four expandable panels, each containing a 4-step timeline and a result box.
 * Collapse mechanics come from mow-accordion.css; everything here is skin, and
 * every accordion rule is scoped under `.mow-obj` so it cannot collide with the
 * FAQ accordion when both widgets sit on the same page.
 *
 * Values transcribed from the original `.v4-biz-*` / `.v4-obj-*` rules.
 */

.mow-obj {

	/* 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-obj__head {
	max-width: 36rem;
	margin: 0 auto 3rem;
	display: flex;
	flex-direction: column;
	align-items: var(--mow-align);
	text-align: var(--mow-align);
}

.mow-obj__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-obj__title {
	font-weight: 900;
	font-size: clamp(1.5rem, 1.3rem + 0.9vw, 1.875rem);
	line-height: 1.25;
	margin: 0.75rem 0;
}

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

.mow-obj__sub {
	color: var(--mow-muted);
	line-height: 1.7;
}

/* ── Panel shell ──────────────────────────────────────────────────────── */

.mow-obj .mow-accordion__item {
	background: #fff;
	border: 1.5px solid #e5e7eb;
	border-radius: 20px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: border-color 0.2s;
}

.mow-obj .mow-accordion__item.is-open {
	border-color: var(--mow-blue);
}

.mow-obj .mow-accordion__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 28px;
	text-align: left;
	font-family: inherit;
	background: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}

.mow-obj .mow-accordion__trigger:hover {
	background: #f8faff;
}

.mow-obj .mow-accordion__item.is-open .mow-accordion__trigger {
	background: linear-gradient(90deg, var(--mow-sky), #fff);
	border-bottom: 1px solid #e5e7eb;
}

.mow-obj__icon {
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	font-size: 18px;
}

.mow-obj__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.mow-obj__panel-title {
	flex: 1;
	font-family: var(--mow-font-head);
	font-size: 17px;
	font-weight: 800;
	color: var(--mow-deep);
}

.mow-obj__chevron {
	width: 32px;
	height: 32px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #e5e7eb;
	border-radius: 50%;
	color: var(--mow-blue);
	transition: background 0.2s, border-color 0.2s, transform 0.3s;
}

.mow-obj__chevron svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
}

.mow-obj .mow-accordion__item.is-open .mow-obj__chevron {
	background: var(--mow-blue);
	border-color: var(--mow-blue);
	color: #fff;
	transform: rotate(180deg);
}

/* ── Panel body ───────────────────────────────────────────────────────── */

.mow-obj__body {
	padding: 28px;
}

.mow-obj__goal-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: 18px;
}

.mow-obj__intro {
	font-size: 15px;
	color: var(--mow-muted);
	line-height: 1.8;
	margin-bottom: 24px;
}

/* ── Step timeline ────────────────────────────────────────────────────── */

.mow-obj__timeline {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 24px;
	position: relative;
}

/* The connecting rail. Hidden once the steps wrap, where it would cut across
   unrelated rows. */
.mow-obj__timeline::before {
	content: "";
	position: absolute;
	top: 28px;
	left: 28px;
	right: 28px;
	height: 3px;
	border-radius: 100px;
	background: linear-gradient(90deg, var(--mow-blue), var(--mow-corn), var(--mow-orange));
	z-index: 0;
}

@media (max-width: 640px) {

	.mow-obj__timeline::before {
		display: none;
	}
}

.mow-obj__step {
	flex: 1;
	min-width: 160px;
	padding: 0 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 1;
}

.mow-obj__step-icon {
	width: 56px;
	height: 56px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	box-shadow: 0 4px 16px rgba(33, 90, 239, 0.25);
}

.mow-obj__step-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.mow-obj__step-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 3px 12px;
	border-radius: 100px;
	margin-bottom: 10px;
}

.mow-obj__step-title {
	font-family: var(--mow-font-head);
	font-size: 13px;
	font-weight: 800;
	color: var(--mow-deep);
	line-height: 1.3;
	margin-bottom: 6px;
}

.mow-obj__step-text {
	font-size: 12px;
	color: var(--mow-muted);
	line-height: 1.55;
}

/* ── Result box ───────────────────────────────────────────────────────── */

.mow-obj__result {
	background: var(--mow-sky);
	border-left: 4px solid var(--mow-blue);
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 20px;
}

.mow-obj__result-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mow-blue);
	margin-bottom: 8px;
}

.mow-obj__result p {
	font-size: 14px;
	color: var(--mow-text);
	line-height: 1.7;
}

/* ── Panel CTA — same pill as the FAQ section ─────────────────────────── */

.mow-obj__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.25rem 0.25rem 0.25rem 0.75rem;
	border: 1px solid var(--mow-orange);
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--mow-orange);
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.mow-obj__cta:hover,
.mow-obj__cta:focus-visible {
	background: var(--mow-orange);
	color: #fff;
}

.mow-obj__cta-arrow {
	width: 2.75rem;
	height: 2.75rem;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid currentColor;
	border-radius: 50%;
}

.mow-obj__cta-arrow svg {
	width: 0.875rem;
	height: 0.875rem;
	fill: currentColor;
}

/* Narrow phones: the original padding is generous enough to squeeze the
   4-across timeline; loosen the shell instead of shrinking the type. */
@media (max-width: 480px) {

	.mow-obj .mow-accordion__trigger {
		padding: 18px 16px;
		gap: 10px;
	}

	.mow-obj__body {
		padding: 20px 16px;
	}

	.mow-obj__panel-title {
		font-size: 15px;
	}
}
