.msw-lineup {
	--msw-lineup-bg: transparent;
	--msw-lineup-text: #f4e7d3;
	--msw-lineup-accent: #c06321;
	--msw-lineup-panel: #252f28;
	--msw-lineup-line: #c06321;
	--msw-lineup-subtitle-color: #c06321;
	--msw-lineup-modal-title-color: #252f28;
	--msw-lineup-border: rgba(0, 0, 0, .14);
	--msw-lineup-surface: #f7f7f7;
	--msw-lineup-muted: color-mix(in srgb, currentColor 62%, transparent);
	--msw-lineup-border: color-mix(in srgb, currentColor 16%, transparent);
	--msw-lineup-surface: color-mix(in srgb, canvas 94%, currentColor 6%);
	--msw-lineup-hover-size: clamp(120px, 16vw, 240px);
	--msw-lineup-radius: 999px;
	--msw-lineup-modal-radius: 24px;
	--msw-lineup-edge-gutter: clamp(1rem, 7vw, 1.875rem);
	--msw-lineup-transition: 220ms cubic-bezier(.2,.8,.2,1);
	--msw-lineup-name-size-standard: clamp(2rem, 5.4vw, 5.7rem);
	--msw-lineup-name-size-featured: clamp(2.35rem, 6.6vw, 7rem);
	--msw-lineup-name-size-headliner: clamp(2.8rem, 7.8vw, 8.4rem);
	--msw-lineup-name-size-mobile: clamp(2.2rem, 13.6vw, 5rem);
	background: transparent;
	color: var(--msw-lineup-text);
	isolation: isolate;
	position: relative;
}

.msw-lineup *,
.msw-lineup *::before,
.msw-lineup *::after {
	box-sizing: border-box;
}

.msw-lineup__filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	margin-block-end: clamp(1rem, 3vw, 2rem);
	position: relative;
	z-index: 6;
}

.msw-lineup__filter-group {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .45rem;
}

.msw-lineup__filter-label {
	color: var(--msw-lineup-muted);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.msw-lineup__filter {
	appearance: none;
	background: transparent;
	border: 1px solid var(--msw-lineup-border);
	border-radius: 999px;
	color: inherit;
	cursor: pointer;
	font: inherit;
	font-size: .9rem;
	line-height: 1;
	padding: .58rem .82rem;
	transition: background var(--msw-lineup-transition), border-color var(--msw-lineup-transition), color var(--msw-lineup-transition), transform var(--msw-lineup-transition);
}

.msw-lineup__filter:hover,
.msw-lineup__filter:focus-visible,
.msw-lineup__filter[aria-pressed="true"] {
	background: var(--msw-lineup-accent);
	border-color: var(--msw-lineup-accent);
	color: #fff;
}

.msw-lineup__filter:focus-visible,
.msw-lineup-modal__close:focus-visible,
.msw-lineup-modal a:focus-visible {
	outline: 2px solid var(--msw-lineup-accent);
	outline-offset: 3px;
}

.msw-lineup .msw-lineup__trigger:focus,
.msw-lineup .msw-lineup__trigger:focus-visible,
.msw-lineup .msw-lineup__trigger:active {
	border: 0;
	outline: 0;
}

.msw-lineup__filter--clear {
	color: var(--msw-lineup-muted);
}

.msw-lineup__status {
	color: var(--msw-lineup-muted);
	font-size: .9rem;
	margin-block: -.65rem 1rem;
	position: relative;
	z-index: 6;
}

.msw-lineup__empty {
	color: var(--msw-lineup-muted);
	margin: 0;
}

.msw-lineup__sr-only {
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.msw-lineup__list {
	display: grid;
	gap: 0;
	grid-template-columns: 1fr;
	list-style: none !important;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 3;
}

.msw-lineup ul,
.msw-lineup ol,
.msw-lineup li {
	list-style: none !important;
}

.msw-lineup li::marker {
	content: "" !important;
	display: none !important;
}

.msw-lineup__label {
	color: var(--msw-lineup-accent);
	font-size: clamp(1.15rem, 2.7vw, 3.2rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: .9;
	margin-block-end: clamp(.75rem, 2vw, 1.2rem);
	position: relative;
	text-align: center;
	text-transform: uppercase;
	z-index: 4;
}

.msw-lineup--layout-interactive {
	--msw-lineup-hover-size: clamp(170px, 20vw, 360px);
	left: auto;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	overflow: visible;
	padding: clamp(2.5rem, 6vw, 6.5rem) clamp(.75rem, 2vw, 2.25rem);
	text-align: center;
	width: 100vw;
}

.msw-lineup--layout-interactive.msw-lineup--contained {
	--msw-lineup-hover-size: clamp(88px, 10vw, 160px);
	margin-left: 0;
	margin-right: 0;
	max-width: 100%;
	padding: clamp(1.4rem, 3vw, 2.5rem) clamp(.5rem, 1.5vw, 1rem);
	width: 100%;
}

.msw-lineup--layout-interactive .msw-lineup__filters {
	justify-content: center;
}

.msw-lineup--layout-interactive .msw-lineup__list {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	justify-content: center;
	margin-inline: auto;
	max-width: none;
	row-gap: clamp(.2rem, 1vw, .55rem);
	text-align: center;
	width: 100%;
}

.msw-lineup--layout-interactive .msw-lineup__item {
	align-items: baseline;
	border: 0;
	display: inline-flex;
	flex: 0 0 var(--msw-lineup-row-basis, auto);
	max-width: 100%;
	position: relative;
}

.msw-lineup--layout-interactive .msw-lineup__item.is-poster-wide {
	flex-basis: 100%;
	justify-content: center;
}

.msw-lineup--layout-interactive .msw-lineup__item.is-poster-wide::after {
	display: none;
}

.msw-lineup--layout-interactive .msw-lineup__item.has-poster-separator::after,
.msw-lineup--layout-days .msw-lineup__item.has-poster-separator::after,
.msw-lineup--layout-days-stacked .msw-lineup__item.has-poster-separator::after {
	color: var(--msw-lineup-line);
	content: "\2022";
	font-size: clamp(.8rem, 1.55vw, 1.8rem);
	font-weight: 900;
	line-height: 1;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
	z-index: 4;
}

.msw-lineup--layout-interactive .msw-lineup__item:last-child {
	border-block-end: 0;
}

.msw-lineup--layout-interactive .msw-lineup__trigger {
	display: inline-flex;
	justify-content: center;
	min-height: 0;
	padding: 0;
	width: 100%;
}

.msw-lineup--layout-interactive .msw-lineup__text {
	display: inline-grid;
	justify-items: center;
	max-width: 100%;
	row-gap: .04em;
	text-align: center;
	width: auto;
}

.msw-lineup--layout-interactive .msw-lineup__name {
	color: var(--msw-lineup-text);
	display: inline-block;
	font-size: var(--msw-lineup-name-size-standard);
	font-weight: 950;
	letter-spacing: 0;
	line-height: .94;
	overflow-wrap: anywhere;
	text-transform: uppercase;
	text-wrap: balance;
	transform: scaleX(var(--msw-lineup-name-scale-x, 1));
	transform-origin: center;
	transition: color 180ms ease, opacity 180ms ease, transform 220ms ease;
	white-space: nowrap;
}

.msw-lineup--layout-interactive .msw-lineup__item.is-poster-row-first .msw-lineup__name,
.msw-lineup--layout-days .msw-lineup__item.is-poster-row-first .msw-lineup__name,
.msw-lineup--layout-days-stacked .msw-lineup__item.is-poster-row-first .msw-lineup__name {
	transform-origin: left center;
}

.msw-lineup--layout-interactive .msw-lineup__item.is-poster-row-last .msw-lineup__name,
.msw-lineup--layout-days .msw-lineup__item.is-poster-row-last .msw-lineup__name,
.msw-lineup--layout-days-stacked .msw-lineup__item.is-poster-row-last .msw-lineup__name {
	transform-origin: right center;
}

.msw-lineup--layout-interactive .msw-lineup__item.is-poster-fitted .msw-lineup__name {
	font-size: var(--msw-lineup-fitted-size);
}

.msw-lineup--layout-interactive .msw-lineup__item.is-featured .msw-lineup__name {
	font-size: clamp(2.35rem, 6.6vw, 7rem);
	font-size: var(--msw-lineup-name-size-featured);
}

.msw-lineup--layout-interactive .msw-lineup__item.is-headliner .msw-lineup__name {
	font-size: clamp(2.8rem, 7.8vw, 8.4rem);
	font-size: var(--msw-lineup-name-size-headliner);
}

.msw-lineup--layout-interactive .msw-lineup__item.is-poster-fitted .msw-lineup__name,
.msw-lineup--layout-interactive .msw-lineup__item.is-featured.is-poster-fitted .msw-lineup__name,
.msw-lineup--layout-interactive .msw-lineup__item.is-headliner.is-poster-fitted .msw-lineup__name {
	font-size: var(--msw-lineup-fitted-size);
}

.msw-lineup--layout-interactive .msw-lineup__trigger:hover .msw-lineup__name,
.msw-lineup--layout-interactive .msw-lineup__trigger:focus-visible .msw-lineup__name {
	color: var(--msw-lineup-accent);
	opacity: .82;
}

.msw-lineup--layout-interactive .msw-lineup__subtitle,
.msw-lineup--layout-days .msw-lineup__subtitle,
.msw-lineup--layout-days-stacked .msw-lineup__subtitle {
	color: var(--msw-lineup-subtitle-color);
	display: block;
	font-size: clamp(1.15rem, 2.65vw, 3.3rem);
	font-weight: 850;
	letter-spacing: .02em;
	line-height: .9;
	margin-inline: auto;
	margin-top: 0;
	max-width: 100%;
	overflow-wrap: normal;
	text-align: center;
	text-transform: uppercase;
	transform: scaleX(1.05);
	transform-origin: center;
	white-space: normal;
	width: 100%;
}

.msw-lineup--layout-interactive .msw-lineup__item.is-headliner .msw-lineup__subtitle,
.msw-lineup--layout-days .msw-lineup__item.is-headliner .msw-lineup__subtitle,
.msw-lineup--layout-days-stacked .msw-lineup__item.is-headliner .msw-lineup__subtitle {
	font-size: clamp(1.45rem, 3.9vw, 4.9rem);
}

.msw-lineup--layout-interactive .msw-lineup__text[data-artist-subtitle]:not([data-artist-subtitle=""]):not(:has(.msw-lineup__subtitle))::after,
.msw-lineup--layout-days .msw-lineup__text[data-artist-subtitle]:not([data-artist-subtitle=""]):not(:has(.msw-lineup__subtitle))::after,
.msw-lineup--layout-days-stacked .msw-lineup__text[data-artist-subtitle]:not([data-artist-subtitle=""]):not(:has(.msw-lineup__subtitle))::after {
	color: var(--msw-lineup-subtitle-color);
	content: attr(data-artist-subtitle);
	display: block;
	font-size: clamp(1.15rem, 2.65vw, 3.3rem);
	font-weight: 850;
	letter-spacing: .02em;
	line-height: .9;
	margin-inline: auto;
	margin-top: 0;
	max-width: 100%;
	overflow-wrap: normal;
	text-align: center;
	text-transform: uppercase;
	white-space: normal;
	width: 100%;
}

.msw-lineup--layout-days {
	--msw-lineup-border: color-mix(in srgb, var(--msw-lineup-line) 42%, transparent);
	--msw-lineup-hover-size: clamp(150px, 18vw, 320px);
	left: auto;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	overflow: visible;
	padding: clamp(2.25rem, 5vw, 5.5rem) clamp(.85rem, 3vw, 3.5rem);
	text-align: center;
	width: 100vw;
}

.msw-lineup--layout-days .msw-lineup__label {
	color: var(--msw-lineup-accent);
	font-size: clamp(1.35rem, 3.1vw, 4.2rem);
	letter-spacing: 0;
	margin-block-end: clamp(1.1rem, 3vw, 2rem);
}

.msw-lineup--layout-days .msw-lineup__filters {
	justify-content: center;
}

.msw-lineup-days {
	display: grid;
	gap: clamp(1rem, 2.5vw, 2rem);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-inline: auto;
	max-width: min(100%, 82rem);
	position: relative;
	z-index: 3;
}

.msw-lineup-days__column {
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
	position: relative;
}

.msw-lineup-days__list {
	align-content: start;
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(.1rem, .45vw, .35rem) 0;
	justify-content: center;
	list-style: none !important;
	margin: 0;
	padding: 0;
}

.msw-lineup--layout-days .msw-lineup__item,
.msw-lineup--layout-days .msw-lineup__item:last-child {
	border: 0;
	flex: 0 0 var(--msw-lineup-row-basis, 100%);
	min-width: 0;
}

.msw-lineup--layout-days .msw-lineup__trigger {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	min-height: 0;
	padding: clamp(.08rem, .34vw, .24rem) 0;
	text-align: center;
	width: 100%;
}

.msw-lineup--layout-days .msw-lineup__text {
	display: grid;
	gap: .08rem;
	justify-items: center;
	max-width: 100%;
	width: min(100%, var(--msw-lineup-rendered-name-width, 100%));
}

.msw-lineup--layout-days .msw-lineup__name {
	color: var(--msw-lineup-text);
	display: block;
	font-size: clamp(1.55rem, 3vw, 3rem);
	font-weight: 950;
	letter-spacing: 0;
	line-height: .92;
	overflow-wrap: normal;
	text-transform: uppercase;
	transform: scaleX(var(--msw-lineup-name-scale-x, 1));
	transform-origin: center;
	transition: color 180ms ease, opacity 180ms ease, transform 220ms ease;
	white-space: nowrap;
}

.msw-lineup--layout-days .msw-lineup__item.is-featured .msw-lineup__name {
	font-size: clamp(1.85rem, 3.55vw, 3.6rem);
	font-size: var(--msw-lineup-name-size-featured);
}

.msw-lineup--layout-days .msw-lineup__item.is-headliner .msw-lineup__name {
	font-size: clamp(2.05rem, 4.2vw, 4.2rem);
	font-size: var(--msw-lineup-name-size-headliner);
}

.msw-lineup--layout-days .msw-lineup__item.is-poster-fitted .msw-lineup__name {
	font-size: var(--msw-lineup-fitted-size);
}

.msw-lineup--layout-days .msw-lineup__trigger:hover .msw-lineup__name,
.msw-lineup--layout-days .msw-lineup__trigger:focus-visible .msw-lineup__name {
	color: var(--msw-lineup-accent);
	opacity: .94;
	transform: scaleX(var(--msw-lineup-name-scale-x, 1)) translateY(-1px);
}

.msw-lineup--layout-days-stacked {
	--msw-lineup-border: color-mix(in srgb, var(--msw-lineup-line) 35%, transparent);
	--msw-lineup-hover-size: clamp(170px, 22vw, 390px);
	left: auto;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: 100vw;
	overflow: visible;
	text-align: center;
	width: 100vw;
}

.msw-lineup--layout-days-stacked .msw-lineup__label {
	color: var(--msw-lineup-accent);
	font-size: clamp(1.2rem, 2.4vw, 3rem);
	left: 50%;
	margin: 0;
	padding-block-start: clamp(1.3rem, 3vw, 2.2rem);
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: min(92vw, 88rem);
	z-index: 5;
}

.msw-lineup--layout-days-stacked .msw-lineup-days {
	display: grid;
	gap: 0;
	grid-template-columns: 1fr;
	margin: 0;
	max-width: none;
	position: relative;
	z-index: 3;
}

.msw-lineup--layout-days-stacked .msw-lineup-days__column {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100svh;
	padding: clamp(3.2rem, 7vw, 5.5rem) clamp(.75rem, 4vw, 4rem) clamp(3rem, 8vw, 6rem);
	position: relative;
}

.msw-lineup--layout-days-stacked .msw-lineup-days__column.is-msw-reveal-ready {
	opacity: .18;
	transform: translateY(2.5rem) scale(.985);
	transition: opacity 680ms cubic-bezier(.16, 1, .3, 1), transform 780ms cubic-bezier(.16, 1, .3, 1);
}

.msw-lineup--layout-days-stacked .msw-lineup-days__column.is-msw-revealed {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.msw-lineup--layout-days-stacked .msw-lineup-days__list {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(.18rem, .7vw, .65rem);
	justify-content: center;
	list-style: none !important;
	margin: 0;
	padding: 0;
	width: min(96vw, 92rem);
}

.msw-lineup--layout-days-stacked .msw-lineup__item,
.msw-lineup--layout-days-stacked .msw-lineup__item:last-child {
	border: 0;
	flex: 0 0 var(--msw-lineup-row-basis, 100%);
	min-width: 0;
}

.msw-lineup--layout-days-stacked .msw-lineup__trigger {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 0;
	padding: clamp(.05rem, .22vw, .16rem) 0;
	text-align: center;
	width: 100%;
}

.msw-lineup--layout-days-stacked .msw-lineup__text {
	display: grid;
	gap: .1rem;
	justify-items: center;
	max-width: 100%;
	width: min(100%, var(--msw-lineup-rendered-name-width, 100%));
}

.msw-lineup--layout-days-stacked .msw-lineup__name {
	color: var(--msw-lineup-text);
	display: block;
	font-size: var(--msw-lineup-name-size-standard);
	font-weight: 950;
	letter-spacing: 0;
	line-height: .88;
	overflow-wrap: normal;
	text-transform: uppercase;
	transform: scaleX(var(--msw-lineup-name-scale-x, 1));
	transform-origin: center;
	transition: color 180ms ease, opacity 180ms ease, transform 220ms ease;
	white-space: nowrap;
	width: max-content;
}

.msw-lineup--layout-days-stacked .msw-lineup__item.is-featured .msw-lineup__name {
	font-size: var(--msw-lineup-name-size-featured);
}

.msw-lineup--layout-days-stacked .msw-lineup__item.is-headliner .msw-lineup__name {
	font-size: var(--msw-lineup-name-size-headliner);
}

.msw-lineup--layout-days-stacked .msw-lineup__item.is-poster-fitted .msw-lineup__name {
	font-size: var(--msw-lineup-fitted-size);
}

.msw-lineup--layout-days-stacked .msw-lineup__trigger:hover .msw-lineup__name,
.msw-lineup--layout-days-stacked .msw-lineup__trigger:focus-visible .msw-lineup__name {
	color: var(--msw-lineup-accent);
	opacity: .96;
	transform: scaleX(var(--msw-lineup-name-scale-x, 1)) translateY(-1px);
}

.msw-lineup__item {
	border-block-start: 1px solid var(--msw-lineup-border);
}

.msw-lineup__item:last-child {
	border-block-end: 1px solid var(--msw-lineup-border);
}

.msw-lineup__trigger {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	display: flex;
	font: inherit;
	gap: 1rem;
	justify-content: space-between;
	line-height: 1.08;
	min-height: clamp(4.25rem, 7vw, 7rem);
	padding: clamp(.85rem, 2vw, 1.2rem) 0;
	text-align: left;
	text-decoration: none;
	width: 100%;
}

.msw-lineup__trigger:hover .msw-lineup__name,
.msw-lineup__trigger:focus-visible .msw-lineup__name {
	color: var(--msw-lineup-accent);
}

.msw-lineup__item.is-interaction-disabled .msw-lineup__trigger {
	cursor: default;
}

.msw-lineup__text {
	display: grid;
	gap: .3rem;
	min-width: 0;
}

.msw-lineup__name {
	font-size: clamp(1.55rem, 4.2vw, 4rem);
	font-weight: 800;
	letter-spacing: 0;
	overflow-wrap: anywhere;
	transition: color var(--msw-lineup-transition);
}

.msw-lineup__subtitle {
	color: var(--msw-lineup-subtitle-color);
	display: block;
	font-size: clamp(.82rem, 1.1vw, 1rem);
	font-weight: 750;
	letter-spacing: .04em;
	line-height: 1.1;
	text-transform: uppercase;
}

.msw-lineup__fallback-link {
	display: inline-block;
	margin-block-end: .8rem;
}

.msw-lineup-hover {
	--msw-lineup-hover-shine-x: 38%;
	--msw-lineup-hover-shine-y: 22%;
	--msw-lineup-hover-tilt-x: 0deg;
	--msw-lineup-hover-tilt-y: 0deg;
	aspect-ratio: 1;
	border-radius: var(--msw-lineup-radius, 999px);
	clip-path: circle(48% at 50% 50%);
	filter: saturate(1.05) contrast(1.04);
	isolation: isolate;
	left: 50%;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: fixed;
	top: 50%;
	transform: translate3d(-50%, -50%, 0) scale(.88) rotateX(var(--msw-lineup-hover-tilt-x)) rotateY(var(--msw-lineup-hover-tilt-y));
	transform-style: preserve-3d;
	transition: opacity 190ms ease, transform 320ms cubic-bezier(.16, 1, .3, 1), filter 420ms ease;
	width: var(--msw-lineup-hover-size, clamp(120px, 16vw, 240px));
	z-index: 50;
}

.msw-lineup--hover-layer-behind .msw-lineup-hover {
	z-index: 1;
}

.msw-lineup--hover-layer-front .msw-lineup-hover {
	z-index: 50;
}

.msw-lineup--hover-layer-behind .msw-lineup__filters,
.msw-lineup--hover-layer-behind .msw-lineup__list,
.msw-lineup--hover-layer-behind .msw-lineup-days {
	position: relative;
	z-index: 5;
}

.msw-lineup--hover-layer-front .msw-lineup__filters,
.msw-lineup--hover-layer-front .msw-lineup__list,
.msw-lineup--hover-layer-front .msw-lineup-days {
	position: relative;
	z-index: 3;
}

.msw-lineup-hover::before {
	background: radial-gradient(circle at 55% 45%, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 58%), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 68%);
	content: "";
	inset: -16%;
	opacity: .78;
	position: absolute;
	transform: translateZ(1px);
	z-index: 2;
}

.msw-lineup-hover::after {
	background: radial-gradient(circle at var(--msw-lineup-hover-shine-x) var(--msw-lineup-hover-shine-y), rgba(255, 255, 255, .52), rgba(255, 255, 255, .12) 18%, rgba(255, 255, 255, 0) 42%), linear-gradient(145deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0) 44%);
	content: "";
	inset: 0;
	mix-blend-mode: screen;
	position: absolute;
	transform: translateZ(2px);
	z-index: 3;
}

.msw-lineup-hover__image {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0;
	position: absolute;
	transform: scale(1.16);
	transition: opacity 640ms cubic-bezier(.16, 1, .3, 1), transform 900ms cubic-bezier(.16, 1, .3, 1), filter 760ms cubic-bezier(.16, 1, .3, 1);
	width: 100%;
	will-change: opacity, transform, filter;
	z-index: 1;
}

.msw-lineup-hover__image.is-active {
	opacity: 1;
	transform: scale(1.025);
	z-index: 2;
}

.msw-lineup-hover__image.is-previous {
	filter: blur(1.2px) saturate(1.12) contrast(1.04);
	opacity: .42;
	transform: scale(1.08);
	z-index: 1;
}

.msw-lineup-hover.is-blending .msw-lineup-hover__image.is-active {
	filter: saturate(1.08) contrast(1.04);
}

.msw-lineup-hover.is-visible {
	opacity: 1;
	transform: translate3d(-50%, -50%, 0) scale(1) rotateX(var(--msw-lineup-hover-tilt-x)) rotateY(var(--msw-lineup-hover-tilt-y));
}

.msw-lineup-hover.is-visible .msw-lineup-hover__image.is-active {
	transform: scale(1.015);
}

.msw-lineup-modal[hidden] {
	display: none;
}

.msw-lineup-modal {
	align-items: center;
	background: rgba(0, 0, 0, .62);
	display: flex;
	height: 100dvh;
	inset: 0;
	justify-content: center;
	opacity: 0;
	padding: clamp(1rem, 3vw, 2rem);
	position: fixed;
	transition: opacity var(--msw-lineup-transition);
	width: 100vw;
	z-index: 100000;
}

.msw-lineup-modal.is-open {
	opacity: 1;
}

.msw-lineup-modal__panel {
	background: canvas;
	border-radius: var(--msw-lineup-modal-radius);
	color: canvastext;
	display: grid;
	grid-template-columns: minmax(15rem, .9fr) minmax(0, 1.1fr);
	margin: auto;
	max-height: min(88vh, 56rem);
	max-width: min(92vw, 68rem);
	overflow: hidden;
	position: relative;
	transform: translateY(12px) scale(.98);
	transition: transform var(--msw-lineup-transition);
	width: 100%;
}

.msw-lineup-modal.is-open .msw-lineup-modal__panel {
	transform: translateY(0) scale(1);
}

.msw-lineup-modal__close {
	align-items: center;
	appearance: none;
	background: rgba(255, 255, 255, .94);
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 999px;
	color: #111;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 1.5rem;
	height: 2.5rem;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: .8rem;
	top: .8rem;
	width: 2.5rem;
	z-index: 2;
}

.msw-lineup-modal__media {
	background: #141414;
	min-height: 100%;
	position: relative;
}

.msw-lineup-modal__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.msw-lineup-modal__image-placeholder {
	align-items: center;
	aspect-ratio: 1;
	color: rgba(255, 255, 255, .88);
	display: flex;
	font-size: clamp(5rem, 14vw, 12rem);
	font-weight: 800;
	height: 100%;
	justify-content: center;
	min-height: 24rem;
	width: 100%;
}

.msw-lineup-modal__content {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	overflow: auto;
	padding: clamp(1.25rem, 4vw, 3rem);
}

.msw-lineup-modal__header {
	padding-inline-end: 2.5rem;
}

.msw-lineup-modal__title {
	color: var(--msw-lineup-modal-title-color);
	font-size: var(--msw-lineup-modal-title-size, clamp(2rem, 5vw, 4.5rem));
	letter-spacing: 0;
	line-height: .95;
	margin: 0;
	max-width: 100%;
	overflow-wrap: normal;
	text-transform: uppercase;
	white-space: nowrap;
}

.msw-lineup-modal__subtitle,
.msw-lineup-modal__meta {
	color: color-mix(in srgb, canvastext 62%, transparent);
	line-height: 1.4;
	margin: .65rem 0 0;
}

.msw-lineup-modal__bio {
	line-height: 1.65;
}

.msw-lineup-modal__bio > :first-child {
	margin-block-start: 0;
}

.msw-lineup-modal__bio > :last-child {
	margin-block-end: 0;
}

.msw-lineup-modal__video {
	aspect-ratio: 16 / 9;
	border-radius: min(16px, var(--msw-lineup-modal-radius));
	margin-block-start: clamp(.9rem, 2vw, 1.25rem);
	overflow: hidden;
	width: 100%;
}

.msw-lineup-modal__video iframe {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

.msw-lineup-modal__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
	margin-block-start: auto;
}

.msw-lineup-modal__cta,
.msw-lineup-modal__link {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
}

.msw-lineup-modal__cta {
	background: var(--msw-lineup-accent);
	color: #fff;
	padding: .85rem 1.05rem;
}

.msw-lineup-modal__link {
	border: 1px solid color-mix(in srgb, canvastext 18%, transparent);
	color: inherit;
	padding: .75rem .92rem;
}

.msw-lineup-modal__link--spotify {
	aspect-ratio: 1;
	background: #1ed760;
	border-color: #1ed760;
	color: #050505;
	padding: .72rem;
	width: 2.85rem;
}

.msw-lineup-modal__spotify-icon {
	display: inline-flex;
	height: 1.45rem;
	width: 1.45rem;
}

.msw-lineup-modal__spotify-icon img {
	display: block;
	height: 100%;
	width: 100%;
}

body.msw-lineup-modal-open {
	overflow: hidden;
}

@media (max-width: 760px) {
	.msw-lineup--layout-interactive {
		padding: clamp(.65rem, 4vw, 1.15rem) clamp(.5rem, 3vw, 1rem);
	}

	.wpb_row:has(.msw-lineup--layout-interactive.msw-lineup--width-full) {
		padding-bottom: clamp(.85rem, 5vw, 1.4rem) !important;
		padding-top: clamp(.85rem, 5vw, 1.4rem) !important;
	}

	.msw-lineup--layout-days {
		padding: clamp(2rem, 8vw, 3.6rem) clamp(.65rem, 4vw, 1rem);
	}

	.msw-lineup--layout-days-stacked .msw-lineup__label {
		font-size: clamp(1rem, 5.5vw, 1.6rem);
		padding-block-start: .5rem;
	}

	.msw-lineup--layout-days-stacked .msw-lineup-days__column {
		justify-content: flex-start;
		min-height: 0;
		padding: clamp(1.15rem, 5vw, 1.8rem) clamp(.65rem, 4vw, 1rem) clamp(1.05rem, 4.5vw, 1.6rem);
	}

	.msw-lineup--layout-days-stacked .msw-lineup-days__list {
		width: min(94vw, 40rem);
	}

	.msw-lineup-days {
		gap: clamp(1.45rem, 8vw, 2.4rem);
		grid-template-columns: 1fr;
		max-width: min(100%, 34rem);
	}

	.msw-lineup--layout-days .msw-lineup__name,
	.msw-lineup--layout-days .msw-lineup__item.is-featured .msw-lineup__name,
	.msw-lineup--layout-days .msw-lineup__item.is-headliner .msw-lineup__name {
		font-size: clamp(1.65rem, 10vw, 3.6rem);
		font-size: var(--msw-lineup-name-size-mobile);
	}

	.msw-lineup--layout-interactive .msw-lineup__list {
		row-gap: .1rem;
	}

	.msw-lineup--layout-interactive .msw-lineup__item,
	.msw-lineup--layout-interactive .msw-lineup__item.is-poster-row-first,
	.msw-lineup--layout-interactive .msw-lineup__item.is-poster-row-last {
		flex-basis: 100% !important;
		justify-content: center;
	}

	.msw-lineup--layout-interactive .msw-lineup__item.has-poster-separator::after,
	.msw-lineup--layout-days .msw-lineup__item.has-poster-separator::after,
	.msw-lineup--layout-days-stacked .msw-lineup__item.has-poster-separator::after {
		display: none;
	}

	.msw-lineup--layout-interactive .msw-lineup__name,
	.msw-lineup--layout-interactive .msw-lineup__item.is-featured .msw-lineup__name,
	.msw-lineup--layout-interactive .msw-lineup__item.is-headliner .msw-lineup__name {
		font-size: clamp(2.2rem, 13.6vw, 5rem);
		font-size: var(--msw-lineup-name-size-mobile);
		line-height: .92;
	}

	.msw-lineup--layout-interactive .msw-lineup__item.is-poster-fitted .msw-lineup__name,
	.msw-lineup--layout-days .msw-lineup__item.is-poster-fitted .msw-lineup__name,
	.msw-lineup--layout-days-stacked .msw-lineup__item.is-poster-fitted .msw-lineup__name {
		font-size: var(--msw-lineup-fitted-size);
	}

	.msw-lineup--layout-interactive .msw-lineup__item.is-poster-row-first .msw-lineup__name,
	.msw-lineup--layout-interactive .msw-lineup__item.is-poster-row-last .msw-lineup__name {
		transform-origin: center;
	}

	.msw-lineup--layout-interactive .msw-lineup__subtitle,
	.msw-lineup--layout-days .msw-lineup__subtitle,
	.msw-lineup--layout-days-stacked .msw-lineup__subtitle {
		font-size: clamp(1rem, 6vw, 2rem);
		line-height: .92;
		margin-top: .02em;
		transform: none;
	}

	.msw-lineup__trigger {
		align-items: flex-start;
		flex-direction: column;
		gap: .65rem;
	}

	.msw-lineup--layout-interactive .msw-lineup__trigger {
		align-items: baseline;
		flex-direction: row;
		gap: 0;
	}

	.msw-lineup--layout-days-stacked .msw-lineup__trigger {
		align-items: center;
		flex-direction: row;
		gap: 0;
	}

	.msw-lineup-modal {
		align-items: flex-end;
		padding: 0;
	}

	.msw-lineup-modal__panel {
		border-radius: 0;
		grid-template-rows: auto minmax(0, 1fr);
		grid-template-columns: 1fr;
		height: 100dvh;
		max-height: none;
		max-width: 100%;
		width: 100vw;
	}

	.msw-lineup-modal__media {
		min-height: 14rem;
	}

	.msw-lineup-modal__image,
	.msw-lineup-modal__image-placeholder {
		height: min(34vh, 18rem);
		min-height: 14rem;
	}

	.msw-lineup-modal__content {
		min-height: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: clamp(1.35rem, 6vw, 2rem) clamp(1.2rem, 5vw, 1.6rem) calc(1.25rem + env(safe-area-inset-bottom));
	}

	.msw-lineup-modal__actions {
		background: canvas;
		bottom: 0;
		margin-inline: calc(clamp(1.2rem, 5vw, 1.6rem) * -1);
		padding: .8rem clamp(1.2rem, 5vw, 1.6rem) calc(.8rem + env(safe-area-inset-bottom));
		position: sticky;
		z-index: 2;
	}

	.msw-lineup-modal__video {
		margin-block-end: .25rem;
	}
}

@media (hover: none), (pointer: coarse) {
	.msw-lineup-hover {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.msw-lineup-hover,
	.msw-lineup-hover img,
	.msw-lineup-days__column,
	.msw-lineup-modal,
	.msw-lineup-modal *,
	.msw-lineup__filter,
	.msw-lineup__name {
		animation-duration: 1ms !important;
		transition-duration: 1ms !important;
	}
}
