.outdoors-entertainment-component {
	position: relative;
	width: 100%;
	background-color: #000000;
	color: #ffffff;
	overflow: hidden;
}

.simple-page .outdoors-entertainment-component {
	left: 50%;
	transform: translateX(-50%);
	width: 100dvw;
}

.outdoors-entertainment-inner {
	position: relative;
	z-index: 1;
}

.outdoors-entertainment-layout {
	width: 100%;
	min-height: 100vh;
}

.outdoors-entertainment-layout::before {
	background: linear-gradient(to bottom,  rgba(0,0,0,0.6) 0%,rgba(0,0,0,0) 100%);
	content: '';
	display: block;
	height: 5rem;
	left: 0;
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 15;
}

@media (max-width: 1023px) {
	.outdoors-entertainment-layout {
		min-height: 100vh;
	}
}

.oe-season-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 1.5rem;
	position: absolute;
	left: 0;
	top: 100px;
	z-index: 16;
	padding: 2rem 0.4rem;
	transform: rotate(270deg);
}

.oe-season-toggle__list {
	display: flex;
	flex-direction: row-reverse;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 120px;
	align-items: baseline;
}
.oe-season-toggle__item{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.oe-season-toggle__item::after{
	content: "";
	width: 90px;
	height: 1px;
	border: 1px dashed #ffffff;
	opacity: 0.75;
	display: block;
	position: relative;
}

.oe-season-toggle__item:last-child::after{
	display: none;
}

.oe-season-toggle__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 100px;
	background-color: transparent;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
}

.oe-season-toggle__button:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.oe-season-toggle__button.is-active {
	background: rgba(0, 0, 0, 0.8);
}

/* Mobile: horizontal text-based toggle */
@media (max-width: 1023px) {
	.oe-season-toggle {
		padding: 0.8rem;
		justify-content: flex-start;
		transform: unset;
		top: unset;
		left: unset;
		width: 100%;
		position: relative;
		margin-bottom: -60px;
	}

	.oe-season-toggle__list {
		flex-direction: row;
		justify-content: flex-start;
		gap: 4px;
		align-items: center;
		width: 100%;
		justify-content: space-between;
	}

	.oe-season-toggle__item {
		display: flex;
		align-items: center;
		flex-direction: row;
		gap: 4px;
		justify-content: space-around;
		flex: 1;
	}

	.oe-season-toggle__item:last-child{
		justify-content: space-between;
		flex: 0;
		padding-left: 10px;
	}

	.oe-season-toggle__item:not(:last-child)::after {
		content: "";
		width: 12vw;
		height: 0;
		margin: 0 0.1rem;
		border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
	}
	.oe-season-toggle__button-wrap{
		width: fit-content;
	}

	.oe-season-toggle__button {
		padding: 0.375rem 1rem;
		border: none;
		border-radius: 0;
		background: transparent;
		font-size: 0.9375rem;
		font-weight: 500;
		color: #ffffff;
	}

	.oe-season-toggle__button.is-active {
		color: #ffffff;
		font-weight: 600;
		border: none;
		border-radius: 100px;
	}
}

@media (max-width: 1023px) {
	.oe-season-toggle__button {
		padding: 0.375rem 1rem;
		width: 12vw;
		font-size: 14px;
	}
}
@media (max-width: 600px) {
	.oe-season-toggle__button {
		padding: 0.375rem 0.6rem;
		width: unset;
	}
	.oe-season-toggle__item:not(:last-child)::after{
		width: 6vw;
	}
	.oe-season-toggle__item:last-child{
		padding-left: 0;
	}
}

.oe-main {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.oe-header {
	left: 18%;
	max-width: 37.5rem;
	position: absolute;
	top: 35%;
	transform: translateY(-40%);
	transition: transform 0.3s ease;
	z-index: 10;
}

.outdoors-entertainment-component--customizer .oe-header {
	left: 50%;
	margin: 0 0 0 calc((100% - (var(--content-gutter)) * 2) / -2);
	max-width: 37.5rem;
}

.oe-preheadline {
	color: #fff;
	font-family: var(--font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 0.5rem;
	text-shadow: 0 0 1rem rgb(0 0 0 / 0.75);
}

.oe-headline {
	color: #fff;
	font-family: var(--font-heading);
	font-size: 5rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1em;
	text-shadow: 0 0 1rem rgb(0 0 0 / 0.75);
}

@media (width <= 1023px) {
	.oe-header,
	.outdoors-entertainment-component--customizer .oe-header {
		left: 0;
		margin: 0;
		padding: 0 var(--content-gutter);
		width: 100%;
	}
	.oe-preheadline {
		font-size: 1rem;
	}
	.oe-headline{
		font-size: 2.875rem;
	}
}

@media (width <= 1023px) {
	.oe-hero-overlay {
		display: none;
	}

	.oe-hero-overlay__headline {
		margin: 0 0 0.5rem;
		font-size: clamp(1.875rem, 5.5vw, 2.5rem);
		font-weight: 700;
		line-height: 1.15;
		color: #ffffff;
		text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	}

	.oe-hero-overlay__callout {
		color: #ffffff;
		text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
	}

	.oe-hero-overlay__callout .oe-callout__location {
		margin: 0;
		font-size: 1rem;
		font-weight: 600;
	}

	.oe-hero-overlay__callout .oe-callout__city {
		margin: 0;
		font-size: 0.875rem;
		opacity: 0.9;
	}
}

.oe-seasons {
	position: relative;
}

.oe-season {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.oe-season.is-active {
	opacity: 1;
	pointer-events: auto;
	position: relative;
}

.oe-season[hidden] {
	display: none;
}

@media (max-width: 1023px) {
	.oe-season {
		position: relative;
		flex: 1;
		min-height: 0;
	}

	.oe-season.is-active {
		display: flex;
	}
}

.oe-background {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.oe-background__tag {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 66px;
	right: 8%;
	transform: translate(-10%, 0);
	z-index: 3;
	padding: 12px 16px;
	border-left: 3px solid #E0B346;
	background: rgba(0, 0, 0, 0.50);
	backdrop-filter: blur(6px);
	color: #ffffff;
	font-size: 1rem;
	font-family: var(--font-sans);
	font-weight: 700;
	border-radius: 0 6px 6px 0;
	line-height: 1.4em;
	width: fit-content;
}
.oe-background__tag p{
	font-weight: 400;
}

@media (width <= 1023px) {
	.oe-background__tag {
		bottom: 17.5rem;
		top: unset;
		left: var(--content-gutter);
		transform: translateY(-36%);
		padding: .375rem .75rem .375rem .75rem;
		font-size: 0.75rem;
		border-left: none;
	}
}
@media (width <= 1023px) and (height <= 720px) {
  .oe-background__tag {
    top: 54%;
	bottom: unset;
    left: var(--content-gutter);
    transform: translateY(-54%);
    padding: .375rem .75rem .375rem .75rem;
    font-size: 0.75rem;
    border-left: none;
  }
}

.oe-background::after {
	content: "";
	position: absolute;
	inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 40%, rgba(0, 0, 0, 1) 100%);
	pointer-events: none;
	z-index: 2;
}
.oe-background::before{
	content: "";
	position: absolute;
	background: linear-gradient(to right,rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.00) 30%);
	pointer-events: none;
	inset: 0;
}

.oe-background__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.oe-callout {
	position: absolute;
	right: 2.5rem;
	top: 2.5rem;
	padding: 0.625rem 1.5rem;
	border-radius: 999px;
	background: rgba(28, 28, 28, 0.88);
	backdrop-filter: blur(8px);
	color: #ffffff;
	max-width: 280px;
	z-index: 10;
}

.oe-callout__location {
	margin: 0;
	font-weight: 700;
	font-size: 1.0625rem;
	line-height: 1.3;
}

.oe-callout__city {
	margin: 0;
	font-size: 0.9375rem;
	opacity: 0.85;
	line-height: 1.4;
}

@media (max-width: 1023px) {
	.oe-background>.oe-callout {
		display: none;
	}
}

.oe-cards {
	bottom: 0;
	box-sizing: border-box;
	padding: 0 0 2.5rem 18%;
	position: absolute;
	width: 100%;
	z-index: 15;
}

.outdoors-entertainment-component--customizer .oe-cards {
	left: auto;
	margin: 0 auto;
	max-width: calc(var(--content-max-width) + var(--content-gutter) + (100% - var(--content-max-width)) / 2);
	overflow: hidden;
	padding: 0 0 2.5rem var(--content-gutter);
	right: 0;
	width: 100%;
}

@media (max-width: 1023px) {
	.oe-cards {
		position: relative;
		margin-top: -280px;
		padding: 1rem 0 1.5rem;
		flex-shrink: 0;
	}
	.outdoors-entertainment-component--customizer .oe-cards {
		margin-top: -280px;
		padding: 1rem 0 1.5rem;
	}
}

.oe-cards__viewport {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	margin-left: var(--content-gutter);
}

@media (min-width: 1024px) {
	.outdoors-entertainment-component--customizer .oe-cards__viewport {
		max-width: 100%;
	}
	.oe-cards__viewport{
		margin-left: 0;
	}
}

.oe-cards__track {
	display: flex;
	flex-wrap: nowrap;
	gap: 1rem;
	overflow-x: visible;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	box-sizing: border-box;
	align-items: stretch;
}

.oe-cards__track.is-scrollable {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

.oe-cards__track::-webkit-scrollbar {
	display: none;
}

@media (max-width: 1023px) {
	.oe-cards__track,
	.oe-cards__track.is-scrollable {
		gap: 0.75rem;
		padding: 0 var(--content-gutter) 1rem 0;
		scroll-snap-type: x proximity;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
	}
}

@media (min-width: 1024px) {
	.outdoors-entertainment-component--customizer .oe-cards__track {
		padding: .25rem 0 0;
	}
}

/* Cards - fixed size for consistent layout; no shrink/grow when scrolling */
.oe-card {
	--oe-card-width: 200px;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	background-color: #1a1a1a;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex: 0 0 var(--oe-card-width);
	min-width: var(--oe-card-width);
	max-width: var(--oe-card-width);
	width: var(--oe-card-width);
	scroll-snap-align: start;
}

.oe-card:hover {
	transform: translateY(-4px);
}

@media (max-width: 1023px) {
	.oe-card {
		--oe-card-width: 180px;
		flex: 0 0 var(--oe-card-width);
		min-width: var(--oe-card-width);
		max-width: var(--oe-card-width);
		width: var(--oe-card-width);
	}

	.oe-card:hover {
		transform: none;
		box-shadow: none;
	}
}

.oe-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.oe-card__link:focus-visible {
	outline: 3px solid #ffd700;
	outline-offset: 3px;
	border-radius: 14px;
}

.oe-card__image-wrapper {
	position: relative;
	overflow: hidden;
}

.oe-card__image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {

	.oe-card__link:hover .oe-card__image,
	.oe-card__link:focus .oe-card__image {
		transform: scale(1.08);
	}
}

.oe-card__gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.oe-card__content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.25rem;
	z-index: 2;
}

@media (max-width: 1023px) {
	.oe-card__content {
		padding: 1rem;
	}
}

.oe-card__headline {
    font-family: var(--font-sans);
	font-size: 1rem;
	font-style: normal;
	font-weight: 700;
	line-height: 18px;
	max-width: 70%;
}
.outdoors-entertainment-component[data-active-season='fall'] .oe-card,
.outdoors-entertainment-component[data-active-season='spring'] .oe-card {
	background-color: #fff;
}
.outdoors-entertainment-component[data-active-season='winter'] .oe-card,
.outdoors-entertainment-component[data-active-season='summer'] .oe-card {
	background-color: #000;
}
.outdoors-entertainment-component[data-active-season='fall'] .oe-card__headline,
.outdoors-entertainment-component[data-active-season='spring'] .oe-card__headline {
	color: #000;
}
.outdoors-entertainment-component[data-active-season='winter'] .oe-card__headline, 
.outdoors-entertainment-component[data-active-season='summer'] .oe-card__headline {
	color: #fff;
}

@media (max-width: 1023px) {
	.oe-card__headline {
		font-size: 0.9375rem;
	}
}

.oe-cards__arrows {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.oe-cards__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 53px;
	height: 53px;
	border: none;
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.oe-cards__arrow svg {
	width: 53px;
	height: 53px;
	display: block;
}

.oe-cards__arrow:hover {
	opacity: 0.85;
	transform: scale(1.08);
}

.oe-cards__arrow:focus-visible {
	outline: 3px solid #ffd700;
	outline-offset: 3px;
	border-radius: 50%;
}

.oe-cards__arrow.is-hidden {
	display: none !important;
}

@media (max-width: 1023px) {
	.oe-cards__arrows {
		display: none !important;
	}
}

.oe-cards__pagination--mobile {
	display: none;
}

@media (max-width: 1023px) {
	.oe-cards__pagination--mobile {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		padding: 0.875rem 0 0;
	}

	.oe-cards__dot {
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.3);
		flex-shrink: 0;
		cursor: pointer;
		transition: all 0.25s ease;
	}

	.oe-cards__dot.is-active {
		width: 1.5rem;
		height: 7px;
		border-radius: 4px;
		background-color: #e8a735;
	}

	/* Hide last dot (removes extra scroll point) */
	.oe-cards__pagination--mobile .oe-cards__dot:last-child {
		display: none;
	}
}

@media (width >= 1200px) {
	.oe-season-toggle {
		left: 1rem;
	}
}

.outdoors-entertainment-component[data-active-season='summer'] .oe-card__gradient {
	background:
		linear-gradient(
			180deg,
			rgba(0, 128, 34, 0) 30%,
			rgba(0, 128, 34, 1) 100%
		);
}

.outdoors-entertainment-component[data-active-season='winter'] .oe-card__gradient {
	background:
		linear-gradient(
			180deg,
			rgba(60, 181, 253, 0) 30%,
			rgba(60, 181, 253, 1) 100%
		);
}
.outdoors-entertainment-component[data-active-season='spring'] .oe-card__gradient {
	background:
		linear-gradient(
			180deg,
			rgba(232, 38, 135, 0) 30%,
			rgba(232, 38, 135, 1) 100%
		);
}

.outdoors-entertainment-component[data-active-season='fall'] .oe-card__gradient {
	background: linear-gradient(
		180deg,
		rgba(225, 111, 5, 0) 30%,
		rgba(225, 111, 5, 1) 100%
		);
}

/* Customizer: override Featured Cards overlay gradient + card readability */
.outdoors-entertainment-component--customizer[data-overlay-color='green'] .oe-card__gradient,
.outdoors-entertainment-component--customizer[data-overlay-color='blue'] .oe-card__gradient,
.outdoors-entertainment-component--customizer[data-overlay-color='pink'] .oe-card__gradient,
.outdoors-entertainment-component--customizer[data-overlay-color='yellow'] .oe-card__gradient {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.outdoors-entertainment-component--customizer[data-overlay-color='green'] .oe-card__gradient {
	background: linear-gradient(
		180deg,
		rgba(0, 128, 34, 0) 30%,
		rgba(0, 128, 34, 1) 100%
	);
}

.outdoors-entertainment-component--customizer[data-overlay-color='blue'] .oe-card__gradient {
	background: linear-gradient(
		180deg,
		rgba(60, 181, 253, 0) 30%,
		rgba(60, 181, 253, 1) 100%
	);
}

.outdoors-entertainment-component--customizer[data-overlay-color='pink'] .oe-card__gradient {
	background: linear-gradient(
		180deg,
		rgba(232, 38, 135, 0) 30%,
		rgba(232, 38, 135, 1) 100%
	);
}

.outdoors-entertainment-component--customizer[data-overlay-color='yellow'] .oe-card__gradient {
	background: linear-gradient(
		180deg,
		rgba(224, 179, 70, 0) 30%,
		rgba(224, 179, 70, 1) 100%
	);
}

/* Ensure card background/headline match overlay colors (data-active-season is fixed to "summer" in customizer mode). */
.outdoors-entertainment-component--customizer[data-overlay-color='green'] .oe-card,
.outdoors-entertainment-component--customizer[data-overlay-color='blue'] .oe-card {
	background-color: #000;
}

.outdoors-entertainment-component--customizer[data-overlay-color='yellow'] .oe-card,
.outdoors-entertainment-component--customizer[data-overlay-color='pink'] .oe-card {
	background-color: #fff;
}

.outdoors-entertainment-component--customizer[data-overlay-color='green'] .oe-card__headline,
.outdoors-entertainment-component--customizer[data-overlay-color='blue'] .oe-card__headline {
	color: #fff;
}

.outdoors-entertainment-component--customizer[data-overlay-color='yellow'] .oe-card__headline,
.outdoors-entertainment-component--customizer[data-overlay-color='pink'] .oe-card__headline {
	color: #000;
}

.outdoors-entertainment-component--preview {
	background-color: #f8f8f8;
	color: #333333;
	border: 2px dashed #cccccc;
	min-height: 400px;
}

@media screen and (min-width: 1024px) and (min-height: 600px) and (max-height: 800px) {
  .oe-season-toggle__item::after{
	width: 50px;
  }
  .oe-season-toggle__button{
	padding: 0.75rem 1.2rem;
  }
  .oe-season-toggle{
	top: 40px;
  }
  .oe-season-toggle__item{
	gap: 8px;
  }
  .oe-season-toggle__list{
	gap: 8px;
  }
  .oe-header{
	top: 25%;
  }
  .oe-headline{
	font-size: 4rem;
  }
}

@media (width >= 1742px) {
	.outdoors-entertainment-component--customizer .oe-header {
		margin: 0 0 0 calc(var(--content-max-width) / -2);
	}
}