.oceana-hero,
.oceana-hero * {
	box-sizing: border-box;
}

.oceana-hero {
	--ohb-accent: #38b7c9;
	--ohb-overlay: rgba(0, 25, 39, 0.48);
	--ohb-title-color: #fff;
	--ohb-text-color: #fff;
	--ohb-button-text: #fff;
	--ohb-gradient-start: #009dc8;
	--ohb-gradient-end: #004f73;
	--ohb-title-desktop: 64px;
	--ohb-title-tablet: 46px;
	--ohb-title-mobile: 24px;
	--ohb-text-desktop: 20px;
	--ohb-text-tablet: 18px;
	--ohb-text-mobile: 17px;
	--ohb-button-size: 17px;
	--ohb-transition: 620ms cubic-bezier(0.22, 1, 0.36, 1);
	position: relative;
	isolation: isolate;
	width: 100vw;
	max-width: none;
	min-height: clamp(620px, 74vh, 840px);
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	background: #062330;
	color: #fff;
	font-family: "Roboto", Arial, sans-serif;
	font-weight: 400;
}

.oceana-hero__background,
.oceana-hero__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.oceana-hero__background {
	z-index: -3;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transform: scale(1.025);
	transition: opacity var(--ohb-transition), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.oceana-hero__background.is-active {
	opacity: 1;
	transform: scale(1);
}

.oceana-hero__overlay {
	z-index: -2;
	background-color: var(--ohb-overlay);
	background-image: linear-gradient(90deg, rgba(1, 20, 30, 0.5) 0%, transparent 62%);
	transition: background-color var(--ohb-transition);
}

.oceana-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
	align-items: center;
	gap: clamp(40px, 5vw, 72px);
	width: 100%;
	max-width: 1440px;
	min-height: inherit;
	margin-inline: auto;
	padding: 100px 60px 50px;
}

.oceana-hero__copy {
	max-width: 780px;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.oceana-hero__copy.is-changing {
	opacity: 0;
	transform: translateY(16px);
}

.oceana-hero__title {
	max-width: none;
	margin: 0;
	color: var(--ohb-title-color);
	font-size: var(--ohb-title-desktop);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: -0.035em;
	text-wrap: balance;
	white-space: pre-line;
}

.oceana-hero__text {
	max-width: 680px;
	margin: 28px 0 0;
	color: var(--ohb-text-color);
	font-size: var(--ohb-text-desktop);
	font-weight: 400;
	line-height: 1.55;
	text-wrap: pretty;
}

.oceana-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 52px;
	margin-top: 34px;
	padding: 14px 22px;
	border: 0;
	border-radius: 6px;
	background-color: var(--ohb-gradient-start);
	background-image: linear-gradient(90deg, var(--ohb-gradient-start) 0%, var(--ohb-gradient-end) 50%, var(--ohb-gradient-start) 100%);
	background-position: left center;
	background-size: 200% 100%;
	box-shadow: 0 12px 32px rgba(0, 20, 30, 0.18);
	color: var(--ohb-button-text);
	font-size: var(--ohb-button-size);
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	transition: background-position 460ms cubic-bezier(0.22, 1, 0.36, 1), transform 180ms ease, box-shadow 180ms ease;
}

.oceana-hero__button-icon {
	display: grid;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	place-items: center;
}

.oceana-hero__button-icon > * {
	grid-area: 1 / 1;
}

.oceana-hero__button-arrow {
	width: 21px;
	height: 21px;
	transition: transform 180ms ease;
}

.oceana-hero__button-brand-icon {
	display: none;
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.oceana-hero__button.has-brand-icon .oceana-hero__button-arrow {
	display: none;
}

.oceana-hero__button.has-brand-icon .oceana-hero__button-brand-icon {
	display: block;
}

.oceana-hero__button:hover {
	background-position: right center;
	box-shadow: 0 14px 34px rgba(0, 20, 30, 0.26);
	color: var(--ohb-button-text);
	transform: translateY(-2px);
}

.oceana-hero__button:hover .oceana-hero__button-arrow {
	transform: translateX(3px);
}

.oceana-hero a.oceana-hero__button,
.oceana-hero a.oceana-hero__button:visited,
.oceana-hero a.oceana-hero__button:hover,
.oceana-hero a.oceana-hero__button:focus,
.oceana-hero a.oceana-hero__button:active {
	color: var(--ohb-button-text) !important;
	-webkit-text-fill-color: var(--ohb-button-text);
	text-decoration: none !important;
}

.oceana-hero a.oceana-hero__button > * {
	color: inherit !important;
}

.oceana-hero__navigation {
	min-width: 0;
	width: 100%;
	transform: translateY(var(--ohb-navigation-offset, 0px));
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.oceana-hero__thumbs {
	display: flex;
	gap: 10px;
	max-height: none;
	margin: 0;
	padding: 4px 4px 10px;
	overflow-x: auto;
	overflow-y: hidden;
	list-style: none;
	overscroll-behavior: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
	scrollbar-width: thin;
}

.oceana-hero__thumbs::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

.oceana-hero__thumbs::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.5);
}

.oceana-hero__thumb-item {
	flex: 0 0 calc((100% - 20px) / 3);
	min-width: 0;
	scroll-snap-align: center;
}

.oceana-hero__thumb {
	position: relative;
	display: block;
	width: 100%;
	height: 96px;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 15px;
	background: #0b3745;
	box-shadow: 0 14px 36px rgba(0, 16, 24, 0.2);
	color: #fff;
	cursor: pointer;
	font: inherit;
	text-align: left;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.oceana-hero__thumb-image,
.oceana-hero__thumb-shade {
	position: absolute;
	inset: 0;
}

.oceana-hero__thumb-image {
	background-position: center;
	background-size: cover;
	transform: scale(1.001);
	transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.oceana-hero__thumb-shade {
	background: linear-gradient(180deg, transparent 25%, rgba(0, 24, 35, 0.86) 100%);
}

.oceana-hero__thumb-label {
	position: absolute;
	right: 11px;
	bottom: 10px;
	left: 11px;
	z-index: 1;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.oceana-hero__thumb:hover {
	border-color: rgba(255, 255, 255, 0.88);
	transform: translateY(-2px);
}

.oceana-hero__thumb:hover .oceana-hero__thumb-image,
.oceana-hero__thumb.is-active .oceana-hero__thumb-image {
	transform: scale(1.055);
}

.oceana-hero__thumb.is-active {
	border-color: #fff;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.94), 0 16px 38px rgba(0, 16, 24, 0.34);
}

.oceana-hero__thumb.is-active::after {
	position: absolute;
	right: 16px;
	bottom: 0;
	left: 16px;
	z-index: 2;
	height: 4px;
	border-radius: 4px 4px 0 0;
	background: var(--ohb-accent);
	content: "";
}

.oceana-hero__arrows {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 15px;
}

.oceana-hero__arrows[hidden] {
	display: none !important;
}

.oceana-hero__arrow {
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 50%;
	background: rgba(4, 38, 50, 0.38);
	color: #fff;
	cursor: pointer;
	place-items: center;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.oceana-hero__arrow svg {
	width: 22px;
	height: 22px;
}

.oceana-hero__arrow:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.16);
	transform: scale(1.04);
}

.oceana-hero :is(a, button):focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

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

@media (max-width: 1024px) {
	.oceana-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
		gap: 28px;
		padding: 100px 40px 50px;
	}

	.oceana-hero__title {
		font-size: var(--ohb-title-tablet);
	}

	.oceana-hero__text {
		font-size: var(--ohb-text-tablet);
	}

	.oceana-hero__thumb {
		height: 78px;
	}
}

@media (max-width: 767px) {
	.oceana-hero {
		min-height: 0;
	}

	.oceana-hero__overlay {
		background-image: linear-gradient(180deg, rgba(0, 24, 35, 0.5) 0%, rgba(0, 24, 35, 0.18) 48%, rgba(0, 24, 35, 0.5) 100%);
	}

	.oceana-hero__inner {
		display: flex;
		width: 100%;
		min-height: inherit;
		padding: 100px 20px 40px;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 24px;
	}

	.oceana-hero__copy {
		max-width: 600px;
	}

	.oceana-hero__navigation {
		transform: none;
	}

	.oceana-hero__title {
		max-width: none;
		font-size: var(--ohb-title-mobile);
		line-height: 1.12;
		letter-spacing: -0.02em;
	}

	.oceana-hero__text {
		max-width: 560px;
		margin-top: 18px;
		font-size: var(--ohb-text-mobile);
		line-height: 1.48;
	}

	.oceana-hero__button {
		min-height: 48px;
		margin-top: 24px;
		padding: 12px 18px;
		font-size: var(--ohb-button-size);
	}

	.oceana-hero__thumbs {
		display: flex;
		gap: 12px;
		max-height: none;
		margin-inline: -20px;
		padding: 4px 20px 10px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-padding-inline: 20px;
		scroll-snap-type: x mandatory;
	}

	.oceana-hero__thumb-item {
		flex: 0 0 min(74vw, 270px);
		scroll-snap-align: start;
	}

	.oceana-hero__thumb {
		height: 104px;
		border-radius: 13px;
	}

	.oceana-hero__thumb-label {
		right: 15px;
		bottom: 13px;
		left: 15px;
		font-size: 16px;
	}

	.oceana-hero__arrows {
		justify-content: center;
		margin-top: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.oceana-hero,
	.oceana-hero * {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
