/**
 * Brand story — scoped under .vz-brand-story
 */

.vz-brand-story {
	position: relative;
	overflow: hidden;
	background-color: var(--color-surface);
	color: var(--color-text);
}

.vz-brand-story__glow {
	position: absolute;
	top: 0;
	right: -10%;
	width: 60%;
	height: 100%;
	pointer-events: none;
	background: radial-gradient(ellipse at 60% 30%, color-mix(in srgb, var(--color-blue-eleva) 8%, transparent) 0%, transparent 70%);
}

.vz-brand-story__inner {
	position: relative;
	display: grid;
	gap: 2rem;
	max-width: var(--content-max-width);
	margin-left: auto;
	margin-right: auto;
	padding: 2.5rem 1.5rem 3rem;
}

@media (min-width: 920px) {
	.vz-brand-story__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
		align-items: center;
		gap: 2.5rem;
		min-height: 28rem;
		padding: 3.5rem 1.5rem 4.5rem;
	}
}

.vz-brand-story__copy {
	position: relative;
	z-index: 1;
	max-width: 34rem;
}

.vz-brand-story__title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: var(--weight-heading);
	line-height: 1.12;
	letter-spacing: var(--tracking-heading);
}

.vz-brand-story__body {
	margin: 0 0 1.5rem;
	max-width: 32rem;
	color: var(--color-muted);
	font-size: var(--text-body);
	line-height: var(--leading-body);
}

.vz-brand-story__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vz-brand-story__pill {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.9rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-pill);
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.3;
	white-space: nowrap;
	background: var(--color-surface-2);
}

.vz-brand-story__media {
	position: relative;
	min-height: 16rem;
	align-self: stretch;
	border-radius: var(--radius-card);
	overflow: hidden;
}

.vz-brand-story__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	padding: 0;
	border: 0;
	border-radius: var(--radius-pill);
	background-color: var(--color-blue-eleva);
	color: #fff;
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: transform 200ms ease;
}

.vz-brand-story__play:hover {
	transform: translate(-50%, -50%) scale(1.06);
}

.vz-brand-story__play-icon {
	width: 1.35rem;
	height: 1.35rem;
	margin-left: 0.1rem;
}

@media (min-width: 920px) {
	.vz-brand-story__media {
		min-height: 22rem;
	}
}

.vz-brand-story__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
}
