/* WMW overflow / layout lock — load last */
html {
	overflow-x: hidden;
	max-width: 100%;
}
body {
	overflow-x: hidden;
	max-width: 100%;
	position: relative;
}
.wmw-header,
.wmw-header__inner,
.wmw-main,
.wmw-footer,
.wmw-section,
.wmw-container,
.wmw-hero-slider,
.wmw-promo-band,
.wmw-unlock,
.wmw-featured,
.wmw-latest {
	max-width: 100%;
	box-sizing: border-box;
}
.wmw-container,
.wmw-header__inner {
	width: 100%;
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
	box-sizing: border-box;
}

/* Hero: full viewport (fixed header overlays) */
.wmw-hero-slider {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 100vh;
	height: 100dvh;
	min-height: 420px;
	max-height: none;
	overflow: hidden;
	background: #0f0f0f;
}
.wmw-hero-slider.is-fullwidth {
	width: 100%;
	max-width: 100%;
}
.wmw-hero-slider.is-contained {
	border-radius: 0;
	max-width: 100%;
	height: 100vh;
	height: 100dvh;
}
@media (max-width: 900px) {
	.wmw-hero-slider {
		height: 100vh;
		height: 100dvh;
		min-height: 360px;
	}
}
@media (max-width: 560px) {
	.wmw-hero-slider {
		height: 100svh;
		min-height: 320px;
	}
}
.wmw-hero-slider__track {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.wmw-hero-slide {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	margin: 0;
	align-items: flex-end;
	box-sizing: border-box;
}
.wmw-hero-slide.is-active {
	display: flex;
}
.wmw-hero-slide__media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.wmw-hero-slide__img,
.wmw-hero-slide__video,
.wmw-hero-slide__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.wmw-hero-slide__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 2.5rem var(--gutter) 3.25rem;
	box-sizing: border-box;
}
.wmw-hero-slide__title,
.wmw-hero-slide__title--sub {
	max-width: none;
	width: 100%;
	overflow-wrap: anywhere;
}
.wmw-hero-slide__text {
	max-width: 48ch;
}

/* Header: prevent nav from expanding page */
.wmw-header {
	width: 100%;
	max-width: 100%;
	overflow: visible;
}
.wmw-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}
.wmw-header__brand {
	min-width: 0;
}
.wmw-header__nav,
.wmw-header__actions,
.wmw-nav {
	min-width: 0;
}
.wmw-header__actions {
	flex-shrink: 0;
}
.wmw-nav {
	flex-wrap: wrap;
}
.wmw-nav .sub-menu {
	white-space: normal;
}

/* Brands grid: never force page wider */
.wmw-brand-cloud-wrap {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}
.wmw-brand-cloud {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
.wmw-brand-cloud li,
.wmw-brand-cloud a {
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.wmw-brand-cloud-wrap:not(.is-expanded) .wmw-brand-cloud {
	max-height: 200px;
	overflow: hidden;
}

.wmw-watch-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
}
.wmw-card,
.wmw-card__link,
.wmw-card__media,
.wmw-card__img {
	max-width: 100%;
	min-width: 0;
}

.wmw-unlock__head {
	gap: 1rem;
	width: 100%;
}
.wmw-unlock__head h2 {
	min-width: 0;
	flex: 1 1 auto;
}

.wmw-promo-band {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	min-height: 260px;
}

.wmw-footer__grid,
.wmw-footer__grid--grailzee {
	width: 100%;
	max-width: 100%;
}

img, video, iframe {
	max-width: 100%;
	height: auto;
}
.wmw-hero-slide__img,
.wmw-hero-slide__video,
.wmw-promo-band__media img,
.wmw-promo-band__video {
	height: 100%;
	width: 100%;
}

@media (max-width: 1100px) {
	.wmw-brand-cloud { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.wmw-watch-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
	.wmw-brand-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wmw-watch-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wmw-hero-slider {
		height: 100vh !important;
		height: 100dvh !important;
		min-height: 360px;
	}
}
@media (max-width: 560px) {
	.wmw-brand-cloud { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wmw-hero-slider {
		height: 100svh !important;
		min-height: 320px;
	}
}

.wmw-hero-contained {
	padding-top: 1rem;
	padding-bottom: 0;
}
.wmw-hero-slide__video {
	object-fit: cover;
	object-position: center;
	background: #0a0a0a;
}
