/**
 * Mystique universe page. Geometry follows the audited 390/768/992/1440
 * reference breakpoints while all imagery and copy remain Mystique-owned.
 */

.universe-page {
	overflow-x: clip;
	background: #fff;
	font-family: "RobotoRegular", Arial, sans-serif;
}

.universe-page :where(h1, h2, h3, p, ul) {
	margin-top: 0;
}

.universe-page :where(h1, h2, h3) {
	font-family: "RobotoCondensedBold", Arial, sans-serif;
	font-weight: 500;
}

.universe-page.content-container,
.universe-page .content-container {
	width: calc(100% - 27px);
	max-width: 1088px;
}

/* Hero ------------------------------------------------------------------- */
.universe-hero {
	position: relative;
	height: 35.885vw;
	max-height: 695px;
	overflow: hidden;
	background: #24342c var(--reference-universe-hero) center / cover no-repeat;
}

.universe-hero::after {
	position: absolute;
	right: 0;
	bottom: -15px;
	left: 0;
	z-index: 2;
	height: 100%;
	background: transparent var(--reference-marker-mobile-hero) 0 100% / 100% auto no-repeat;
	content: "";
	pointer-events: none;
}

.universe-hero__image {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

body.legendary-site .universe-hero__image {
	max-width: none;
}

/* Mission ---------------------------------------------------------------- */
.universe-intro {
	padding: 30px 0;
	text-align: center;
}

.universe-intro h1,
.universe-stories__intro h2 {
	margin-bottom: 25px;
	font-size: 28px;
	line-height: 28px;
	text-transform: uppercase;
}

.universe-intro h2 {
	margin-bottom: 25px;
	font-size: 15px;
	line-height: 17px;
	text-transform: uppercase;
}

.universe-intro h2 strong {
	font-weight: 700;
}

.universe-intro p,
.universe-legends p,
.universe-stories__intro p {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
}

/* Horizontal values accordion ------------------------------------------- */
.universe-values {
	padding: 0 0 30px;
}

.universe-values__panel {
	position: relative;
	z-index: 1;
	margin-bottom: 35px;
	overflow: hidden;
	border-radius: 20px 0;
	background: var(--site-purple-mid);
	color: #fff;
}

.universe-values__panel::before,
.universe-values__panel::after {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 40vw;
	background-color: transparent;
	background-repeat: no-repeat;
	border-radius: 20px 0;
	content: "";
	opacity: .6;
	pointer-events: none;
}

.universe-values__panel::before {
	top: 0;
	left: 0;
	background-image: var(--reference-marker-content-top);
	background-position: 0 0;
}

.universe-values__panel::after {
	right: 0;
	bottom: 0;
	background-image: var(--reference-marker-content-bottom);
	background-position: 100% 100%;
}

.universe-value {
	position: relative;
	z-index: 3;
	min-height: 80px;
	max-height: 80px;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	cursor: pointer;
	transition: max-height .3s cubic-bezier(.25, .46, .45, .94), min-height .3s cubic-bezier(.25, .46, .45, .94);
}

.universe-value:last-child {
	border-bottom: 0;
}

.universe-value.is-active {
	min-height: 391px;
	max-height: 1000px;
}

.universe-value__toggle {
	position: relative;
	z-index: 2;
	display: grid;
	width: 100%;
	height: 80px;
	grid-template-columns: 40px minmax(0, 1fr);
	align-items: center;
	gap: 25px;
	padding: 5px 20px 0;
	border: 0;
	-webkit-appearance: none;
	appearance: none;
	color: #fff;
	background: transparent;
	text-align: left;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.universe-value__icon,
.universe-value__active-icon {
	display: block;
	color: #fff;
}

.universe-value__icon {
	width: 40.4479167px;
	height: 45px;
}

.universe-value__icon svg,
.universe-value__active-icon svg,
.universe-value__icon img,
.universe-value__active-icon img {
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	overflow: visible;
	fill: currentColor;
	stroke: none;
}

.universe-value__title {
	font-family: "RobotoCondensedBold", Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 17px;
	padding-right: 25px;
	hyphens: auto;
	overflow-wrap: anywhere;
	text-transform: uppercase;
	transition: transform .3s cubic-bezier(.25, .46, .45, .94), opacity .2s ease;
}

.universe-value__plus {
	position: absolute;
	top: 32px;
	right: 20px;
	display: block;
	width: 22px;
	height: 22px;
	border: 1px solid currentColor;
	border-radius: 50%;
	transition: transform .3s cubic-bezier(.25, .46, .45, .94);
}

.universe-value__plus::before,
.universe-value__plus::after {
	position: absolute;
	top: 9px;
	left: 4px;
	width: 12px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	content: "";
}

.universe-value__plus::after {
	transform: rotate(90deg);
}

.universe-value__toggle:hover .universe-value__plus {
	transform: rotate(90deg);
}

.universe-value__toggle:focus {
	outline: 0;
}

.universe-value__toggle:focus-visible {
	outline: 1px auto rgb(16, 16, 16);
	outline-offset: 0;
}

.universe-value.is-active .universe-value__plus {
	transform: rotate(45deg);
}

.universe-value.is-active .universe-value__icon,
.universe-value.is-active .universe-value__title {
	opacity: 0;
}

.universe-value__content {
	position: relative;
	z-index: 1;
	padding: 0 32px 30px;
}

.universe-value__content[hidden] {
	display: none;
}

.universe-value__active-icon {
	width: 55px;
	height: 55px;
	margin: -60px 0 22px;
}

.universe-value__content h2 {
	margin-bottom: 15px;
	font-size: 22px;
	line-height: 22px;
	text-transform: uppercase;
}

.universe-value__content p,
.universe-value__content li {
	font-size: 14px;
	line-height: 18px;
}

.universe-value__content p {
	margin-bottom: 25px;
}

.universe-value__content ul {
	margin-bottom: 0;
	padding-left: 20px;
}

.universe-value__content li + li {
	margin-top: 0;
}

@media (max-width: 767px) {
	.universe-value.is-active {
		min-height: 0;
	}

	.universe-value__title {
		position: relative;
		top: 1px;
		width: max-content;
		max-width: 100%;
		justify-self: start;
		transform: none;
	}

	.universe-value.is-active .universe-value__toggle {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	.universe-value.is-active .universe-value__icon {
		display: none;
	}

	.universe-value.is-active .universe-value__title {
		opacity: 1;
	}

	.universe-value__content {
		margin: -5px 20px 20px;
		padding: 0;
	}

	.universe-value__active-icon,
	.universe-value__content h2 {
		display: none;
	}
}

/* Mystique legends ------------------------------------------------------- */
.universe-legends {
	position: relative;
	z-index: 0;
	padding: 30px 0;
	background: var(--site-gray);
	scroll-margin-top: 680px;
}

.universe-legends::before,
.universe-legends::after {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-repeat: no-repeat;
	content: "";
	pointer-events: none;
}

.universe-legends::before {
	top: -40px;
	left: 0;
	background-image: var(--reference-marker-mobile-top);
	background-position: 0 0;
}

.universe-legends::after {
	right: 0;
	bottom: -40px;
	background-image: var(--reference-marker-mobile-slider);
	background-position: 100% 100%;
}

@media (min-width: 425px) {
	.universe-legends::before { top: -55px; }
	.universe-legends::after { bottom: -55px; }
}

@media (min-width: 600px) {
	.universe-legends::before { top: -74px; }
	.universe-legends::after { bottom: -94px; }
}

.universe-legends__intro {
	margin-bottom: 25px;
}

.universe-legends__intro h2 {
	margin-bottom: 25px;
	font-size: 22px;
	line-height: 22px;
	text-transform: uppercase;
}

.universe-legend + .universe-legend {
	margin-top: 0;
}

.universe-legend {
	width: calc(100% + 15px);
	margin-right: -7.5px;
	margin-left: -7.5px;
}

.universe-legend:first-of-type {
	padding-bottom: 25px;
}

.universe-legend__image {
	position: relative;
	height: max(200px, 55.475vw);
	margin: 0 7.5px 25px;
	overflow: hidden;
	border-radius: 20px 0;
	background: var(--site-purple);
}

.universe-legend__image::after {
	position: absolute;
	inset: 35% 0 0;
	background: linear-gradient(180deg, rgba(71, 10, 104, 0), rgba(68, 10, 99, .25), #2a063e);
	content: "";
	pointer-events: none;
}

.universe-legend__image img {
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.universe-legend__copy h3 {
	margin-bottom: 25px;
	font-size: 15px;
	line-height: 17px;
}

.universe-legend__copy {
	padding: 0 7.5px;
}

.universe-legend__copy p {
	margin-bottom: 25px;
}

.universe-legend__button {
	display: inline-flex;
	min-width: 0;
	max-width: 100%;
	height: auto;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	padding: 5px 30px;
	border: 1px solid #000;
	border-radius: 28px;
	color: #000;
	background: transparent;
	font-size: 14px;
	line-height: 15px;
	overflow-wrap: anywhere;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.universe-page .universe-legend__button {
	color: #000;
}

.universe-legend__button:hover,
.universe-legend__button:focus {
	border-color: transparent;
	color: #fff;
	background: #470d68;
	outline: 0;
}

/* Grow stories ----------------------------------------------------------- */
.universe-stories {
	margin-top: 50px;
	padding: 30px 0 0;
	background: #fff;
}

.universe-stories__intro {
	margin-bottom: 25px;
	text-align: left;
}

.universe-carousel {
	position: relative;
	padding-bottom: 25px;
}

.universe-carousel[data-universe-carousel-static] {
	padding-bottom: 25px;
}

.universe-carousel[data-universe-carousel-static] .universe-carousel__viewport {
	padding-right: 0;
	padding-left: 0;
	cursor: default;
	touch-action: auto;
	user-select: auto;
}

.universe-carousel[data-universe-carousel-static] .universe-carousel__track {
	width: 100%;
	justify-content: center;
	transform: none !important;
	transition: none;
	will-change: auto;
}

.universe-stories__empty {
	margin-top: 0;
	padding-bottom: 60px;
	color: #44502f;
	font-size: 16px;
	line-height: 24px;
}

.universe-carousel__viewport {
	width: 100%;
	padding: 0 50px;
	overflow: hidden;
	outline-offset: 4px;
	cursor: grab;
	touch-action: pan-y pinch-zoom;
	user-select: none;
}

.universe-carousel__viewport:active {
	cursor: grabbing;
}

.universe-carousel__track {
	display: flex;
	width: 30000px;
	align-items: stretch;
	gap: 0;
	will-change: transform;
	transition: transform 250ms ease;
}

.universe-carousel__track.is-dragging {
	transition: none;
}

.universe-carousel__track.is-dragging .universe-story__image {
	pointer-events: none;
}

.universe-story {
	position: relative;
	width: var(--universe-card-width, 200px);
	height: 290px;
	flex: 0 0 var(--universe-card-width, 200px);
	margin: 0 8px 15px;
	overflow: hidden;
	border-radius: 20px 0;
	color: #fff;
	background: transparent;
}

.universe-story__media {
	position: absolute;
	inset: 0;
	display: block;
	overflow: hidden;
}

.universe-story__placeholder {
	background:
		radial-gradient(circle at 76% 22%, rgba(255, 255, 255, .22) 0 8%, transparent 9%),
		linear-gradient(145deg, #899663 0%, #526337 45%, #2d3a22 100%);
}

.universe-story__placeholder::before,
.universe-story__placeholder::after {
	position: absolute;
	width: 72%;
	height: 34%;
	border: 2px solid rgba(255, 255, 255, .18);
	border-radius: 100% 0;
	content: "";
	transform: rotate(-24deg);
}

.universe-story__placeholder::before {
	top: 20%;
	left: -22%;
}

.universe-story__placeholder::after {
	top: 42%;
	right: -25%;
	transform: rotate(156deg);
}

.universe-page .universe-story__image {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 260px;
	max-width: none;
	height: 386.5px;
	object-fit: cover;
	object-position: 50% 0;
	transform: translateX(-50%);
	transform-origin: 50% 0;
	transition: transform .4s ease-in-out;
}

.universe-story__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(#2a063e, #2a063e) center bottom / 100% 64px no-repeat,
		linear-gradient(180deg, rgba(71, 10, 104, 0), rgba(68, 10, 99, .25), #2a063e) center bottom 64px / 100% 170px no-repeat;
	pointer-events: none;
}

.universe-story__caption {
	position: absolute;
	right: auto;
	bottom: 0;
	left: 14px;
	width: 95%;
	z-index: 2;
}

.universe-story__caption h3 {
	display: -webkit-box;
	width: 90%;
	margin-bottom: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	font-family: "RobotoBold", Arial, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 17px;
	text-shadow: 0 3px 6px rgba(0, 0, 0, .251);
	text-transform: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.universe-legend__image img,
.universe-story__image {
	-webkit-user-drag: none;
	user-select: none;
}

.universe-story__caption a {
	display: inline-flex;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	padding: 0;
	border: 1px solid #fff;
	border-radius: 28px;
	color: #470a68;
	text-decoration: none;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.universe-story__caption a span {
	display: none;
}

.universe-story__caption a i {
	display: inline-flex;
	width: 5px;
	height: 7px;
	align-items: center;
	justify-content: center;
	margin: 0;
	border: 0;
	border-radius: 0;
	color: #fff;
	font-style: normal;
}

.universe-story__caption a svg {
	display: block;
	width: 5px;
	height: 7px;
	fill: currentColor;
}

.universe-page .universe-story:hover .universe-story__image {
	transform: translateX(-50%) scale(1.077);
}

.universe-story:hover .universe-story__caption a {
	color: #000;
	background: #fff;
}

.universe-story__caption a:hover {
	color: #000;
	background: #fff;
}

.universe-story:focus {
	outline: auto 1px rgb(16, 16, 16);
}

.universe-story__link:focus {
	outline: 3px none rgb(13, 110, 253);
	outline-offset: 1px;
}

.universe-story__caption a:focus {
	border-color: transparent;
	border-radius: 28px;
	color: #fff;
	background: #470d68;
	outline: 3px none #fff;
	outline-offset: 1px;
}

.universe-story__caption a:focus i {
	border-color: #fff;
}

.universe-carousel__arrow {
	position: absolute;
	top: 160.75px;
	z-index: 3;
	display: none;
	width: 65px;
	height: 65px;
	padding: 0;
	border: 5px solid #fff;
	border-radius: 20px 0;
	color: #fff;
	background: #4e5b31;
	cursor: pointer;
	transform: translateY(-50%);
	transition: all .3s ease-in-out;
}

.universe-carousel__arrow:hover {
	width: 79px;
	height: 79px;
}

.universe-carousel__arrow:focus {
	outline: 0;
}

.universe-carousel__arrow i {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 24px;
	height: 24px;
	border: solid currentColor;
	border-width: 0 8px 8px 0;
}

.universe-carousel__arrow--previous i {
	transform: translate(-36%, -50%) rotate(135deg);
}

.universe-carousel__arrow--next i {
	transform: translate(-64%, -50%) rotate(-45deg);
}

.universe-carousel__dots {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	height: 32.5px;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.universe-carousel__dots button {
	position: relative;
	top: 1.25px;
	width: 24px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 100px;
	background: var(--site-gray);
	cursor: pointer;
	transform: none;
}

.universe-carousel__dots button:focus {
	outline: 3px none transparent;
}

.universe-carousel__dots button::before {
	display: none;
	content: none;
}

.universe-carousel__dots button.is-active {
	background: #4e5b31;
}

@media (min-width: 768px) {
	.universe-page.content-container,
	.universe-page .content-container {
		width: calc(100% - 60px);
	}

	.universe-intro {
		padding: 60px 0;
	}

	.universe-values {
		padding-bottom: 60px;
	}

	.universe-values__panel {
		display: flex;
		height: auto;
		min-height: 500px;
		align-items: stretch;
		margin-bottom: 60px;
		border-radius: 50px 0;
	}

	.universe-values__panel::before,
	.universe-values__panel::after {
		border-radius: 50px 0;
	}

	.universe-value {
		width: 25%;
		min-width: 25%;
		min-height: 500px;
		max-height: none;
		flex: 0 1 auto;
		border-right: 1px solid rgba(255, 255, 255, .3);
		border-bottom: 0;
		transition: all .3s cubic-bezier(.25, .46, .45, .94);
	}

	.universe-values__panel.has-active .universe-value {
		width: 65px;
		min-width: 65px;
	}

	.universe-values__panel.has-active .universe-value.is-active {
		width: 100%;
		min-width: 25%;
	}

	.universe-value__toggle {
		position: absolute;
		inset: 0;
		display: flex;
		height: 100%;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 0;
		padding: 0;
		text-align: center;
	}

	.universe-value__icon {
		position: absolute;
		top: 109px;
		left: calc(50% + 2px);
		width: 121.34375px;
		height: 135px;
		transform: translateX(-50%);
		transition: opacity .2s ease, width .3s cubic-bezier(.25, .46, .45, .94), height .3s cubic-bezier(.25, .46, .45, .94);
	}

	.universe-value__title {
		position: absolute;
		/* Account for the item's 1px divider on the toggle containing block. */
		right: 26px;
		bottom: 50px;
		left: 34px;
		padding: 0 0 50px;
		font-size: 26px;
		line-height: 30px;
	}

	.universe-value:not(.is-vertical):not(.is-active) .universe-value__toggle:hover .universe-value__title {
		padding-bottom: 74px;
		transform: translateY(-30px);
	}

	.universe-value__plus {
		position: absolute;
		top: auto;
		right: auto;
		bottom: 50px;
		/* The toggle's containing block is one border pixel narrower than the item. */
		left: calc(40% + 8px);
	}

	.universe-value.is-vertical .universe-value__icon {
		opacity: 0;
	}

	.universe-value.is-vertical .universe-value__title {
		top: auto;
		right: auto;
		bottom: 100px;
		left: 34px;
		width: 4px;
		max-height: none;
		padding: 0;
		line-height: 0;
		text-orientation: mixed;
		writing-mode: vertical-rl;
		transform: rotate(180deg);
		transform-origin: 50% 50%;
		transition: transform .3s cubic-bezier(.25, .46, .45, .94), opacity .2s ease;
	}

	.universe-value.is-vertical .universe-value__toggle:hover .universe-value__title {
		bottom: 120px;
		transform: rotate(180deg);
		transition: bottom .5s ease, opacity .2s ease;
	}

	.universe-value.is-active .universe-value__icon,
	.universe-value.is-active .universe-value__title,
	.universe-value.is-active .universe-value__plus {
		display: none;
	}

	.universe-values__panel.is-resetting-vertical .universe-value__title {
		transition: none !important;
	}

	.universe-value.is-active .universe-value__toggle {
		pointer-events: none;
	}

	.universe-value__content {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		display: block;
		width: auto;
		height: auto;
		margin: 0;
		padding: 35px 30px 30px;
	}

	.universe-value__content[hidden] {
		display: none;
	}

	.universe-value__active-icon {
		width: 76.34375px;
		height: 85px;
		margin: 0 0 25px;
	}

	.universe-value__content h2 {
		margin-bottom: 20px;
		padding: 0;
		font-size: 26px;
		line-height: 30px;
	}

	.universe-value__content p,
	.universe-value__content li {
		font-size: 14px;
		line-height: 18px;
	}

	.universe-value__content p {
		margin-bottom: 25px;
	}

	.universe-value__content ul {
		padding-left: 20px;
	}

	.universe-legends {
		padding-top: 30px;
		padding-bottom: 60px;
	}

	.universe-legend:first-of-type {
		padding-bottom: 0;
	}

	.universe-legends__intro {
		margin-bottom: 65px;
	}

	.universe-legend {
		display: grid;
		width: calc(100% + 15px);
		min-height: 423px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: stretch;
		margin-right: -7.5px;
		margin-left: -7.5px;
	}

	.universe-legend:first-of-type {
		min-height: 423px;
	}

	.universe-legend + .universe-legend {
		margin-top: 0;
	}

	.universe-legend__image {
		height: 340px;
		align-self: start;
		margin: 0 32.5px 65px 7.5px;
		border-radius: 50px 0;
	}

	.universe-legend__copy {
		padding: 0 7.5px;
	}

	.universe-legend:first-of-type .universe-legend__button {
		margin-bottom: 65px;
	}

	.universe-legend--reverse .universe-legend__image {
		grid-column: 2;
		grid-row: 1;
	}

	.universe-legend--reverse .universe-legend__copy {
		grid-column: 1;
		grid-row: 1;
	}

	.universe-stories__intro {
		margin-bottom: 65px;
	}

	.universe-stories {
		padding-top: 60px;
	}

	.universe-carousel {
		padding-bottom: 70px;
	}

	.universe-carousel__dots {
		bottom: 35px;
		height: 32.5px;
	}

	.universe-carousel__viewport {
		padding: 0;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.universe-legends__intro,
	.universe-stories__intro {
		margin-bottom: 25px;
	}

	.universe-legend:nth-of-type(2) {
		min-height: 405px;
	}

	.universe-carousel {
		padding-bottom: 25px;
	}

	.universe-carousel__dots {
		bottom: 0;
		height: 32.5px;
	}
}

@media (min-width: 992px) {
	.universe-legends {
		scroll-margin-top: 0;
	}

	.universe-stories__intro {
		text-align: center;
	}

	.universe-values__panel::before,
	.universe-values__panel::after {
		height: 20vw;
	}

	.universe-legends::before {
		top: -94px;
		background-image: var(--reference-marker-desktop-top);
	}

	.universe-legends::after {
		bottom: -94px;
		background-image: var(--reference-marker-desktop-slider);
	}

	.universe-hero {
		height: min(40.885vw, 695px);
		background-position: center -35px;
		background-size: 116% auto;
	}

	.universe-hero::after {
		background-image: var(--reference-marker-desktop-white);
		background-position: 100% 100%;
	}

	.universe-hero__image {
		left: -9%;
		width: 118%;
		object-position: 50% 50%;
	}

	.universe-intro h1,
	.universe-stories__intro h2 {
		font-size: 65px;
		line-height: 65px;
	}

	.universe-intro h2 {
		font-size: 22px;
		line-height: 22px;
	}

	.universe-intro p,
	.universe-legends p,
	.universe-stories__intro p {
		font-size: 18px;
		line-height: 26px;
	}

	.universe-value__icon {
		top: 70px;
		width: 156.390625px;
		height: 174px;
	}

	.universe-value__title {
		font-size: 26px;
		line-height: 30px;
	}

	.universe-value__content h2 {
		font-size: 26px;
		line-height: 30px;
	}

	.universe-value__content p,
	.universe-value__content li {
		font-size: 18px;
		line-height: 26px;
	}

	.universe-legends__intro h2 {
		font-size: 30px;
		line-height: 30px;
	}

	.universe-legend:first-of-type {
		min-height: 592px;
	}

	.universe-legend__copy h3 {
		font-size: 22px;
		line-height: 22px;
	}

	.universe-legend__copy p {
		margin-bottom: 25px;
	}

	.universe-legend__button {
		height: auto;
		min-height: 40px;
		padding: 6px 30px;
		font-size: 18px;
		line-height: 26px;
	}

	.universe-stories {
		padding-top: 60px;
	}

	.universe-carousel {
		padding-bottom: 138.5px;
	}

	.universe-story {
		width: var(--universe-card-width, 260px);
		height: 386.5px;
		flex-basis: var(--universe-card-width, 260px);
	}

	.universe-story__shade {
		background:
			linear-gradient(#2a063e, #2a063e) center bottom / 100% 102px no-repeat,
			linear-gradient(180deg, rgba(71, 10, 104, 0), rgba(68, 10, 99, .25), #2a063e) center bottom 102px / 100% 270px no-repeat;
	}

	.universe-story__caption {
		right: auto;
		bottom: -64px;
		left: 14px;
		width: 95%;
		transition: bottom .3s ease-in-out;
	}

	.universe-story__caption h3 {
		margin-bottom: 25px;
		font-size: 20px;
		line-height: 26px;
		text-shadow: 0 3px 6px rgba(0, 0, 0, .2);
	}

	.universe-story__caption a {
		width: auto;
		height: 44px;
		padding: 0 25px;
		border: 1px solid #fff;
		border-radius: 22px;
		font-family: "RobotoBold", Arial, sans-serif;
		font-size: 18px;
		font-weight: 400;
		line-height: 26px;
		margin-bottom: 20px;
		transition: display .3s ease-in-out;
	}

	.universe-story__caption a span {
		display: inline;
	}

	.universe-story__caption a i {
		display: none;
		margin-bottom: 0;
	}

	.universe-story:hover .universe-story__caption {
		bottom: 0;
	}

	.universe-story__caption a:focus {
		border-color: transparent;
		border-radius: 22px;
		color: #fff;
		background: #470d68;
	}

	.universe-carousel__arrow {
		display: block;
		top: 200.75px;
	}

	.universe-carousel__arrow--previous {
		left: -29.5px;
	}

	.universe-carousel__arrow--next {
		right: -29.5px;
	}

	.universe-carousel__dots {
		bottom: 112px;
	}
}

@media (min-width: 1200px) {
	.universe-legends::before { top: -114px; }
	.universe-legends::after { bottom: -114px; }
}

@media (min-width: 1400px) {
	.universe-legends::before { top: -132px; }
	.universe-legends::after { bottom: -132px; }
}

@media (min-width: 992px) and (max-width: 1147px) {
	.universe-stories__intro p {
		max-width: 850px;
		margin-right: auto;
		margin-left: auto;
	}

}

@media (min-width: 1088px) and (max-width: 1147px) {
	.universe-page.content-container,
	.universe-page .content-container {
		width: 1028px;
	}
}

@media (min-width: 1148px) {
	.universe-page.content-container,
	.universe-page .content-container {
		width: 1088px;
	}

}

@media (min-width: 1700px) {
	.universe-hero {
		background-position: center -10px;
		background-size: 111% auto;
	}

	.universe-hero__image {
		left: -10%;
		width: 120%;
	}
}

@media (min-width: 1800px) {
	.universe-legends::before { top: -170px; }
	.universe-legends::after { bottom: -170px; }
}

@media (min-width: 2000px) {
	.universe-legends::before { top: -185px; }
	.universe-legends::after { bottom: -185px; }

	.universe-hero__image {
		left: 0;
		width: 100%;
	}
}

/* Reference typography uses one family alias per physical font face. */
body.view-universe {
	font-family: "RobotoRegular", Arial, sans-serif;
}

body.view-universe .site-nav__utility-link,
body.view-universe .site-nav__submenu a,
body.view-universe .mobile-navigation__submenu a {
	font-family: "RobotoRegular", Arial, sans-serif;
	font-weight: 400;
}

body.view-universe .site-nav__primary > a,
body.view-universe .site-nav__dropdown > :is(a, button),
body.view-universe .mobile-navigation__item > :is(a, button),
body.view-universe .universe-legend__button {
	font-family: "RobotoBold", Arial, sans-serif;
	font-weight: 400;
}

body.view-universe .site-nav__submenu--products .site-nav__submenu-overview,
body.view-universe .mobile-navigation__submenu .mobile-navigation__overview {
	font-family: "RobotoBold", Arial, sans-serif;
	font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
	.universe-page *,
	.universe-page *::before,
	.universe-page *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
