@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

body:has(.auraeb-hero) {
	overflow-x: hidden;
}

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

.auraeb-hero {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	overflow: hidden;
	font-family: Montserrat, Arial, sans-serif;
}

.auraeb-link {
	display: block;
	position: relative;
	color: inherit;
	text-decoration: none;
}

.auraeb-picture,
.auraeb-image {
	display: block;
	width: 100%;
	height: auto;
}

.auraeb-overlay {
	position: absolute;
	z-index: 2;
	display: flex;
	flex-direction: column;
	line-height: 1.08;
	letter-spacing: 0;
	white-space: nowrap;
	max-width: 100%;
	max-height: 100%;
	overflow: hidden;
	visibility: hidden;
	pointer-events: none;
	text-wrap: nowrap;
}

.auraeb-overlay.is-ready {
	visibility: visible;
}

.auraeb-line {
	display: block;
	max-width: 100%;
}

.auraeb-overlay-tablet,
.auraeb-overlay-mobile {
	display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.auraeb-overlay-desktop {
		display: none;
	}

	.auraeb-overlay-tablet {
		display: flex;
	}
}

@media (max-width: 767px) {
	.auraeb-overlay-desktop,
	.auraeb-overlay-tablet {
		display: none;
	}

	.auraeb-overlay-mobile {
		display: flex;
	}
}

@media (min-width: 768px) {
	.auraeb-mobile-only-hero {
		display: none !important;
		height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
	}
}

.auraeb-category-hero {
	margin: 0 !important;
	padding: 0 !important;
}

.auraeb-message-bar {
	position: fixed;
	left: 50%;
	bottom: 0;
	z-index: 99990;
	width: min(92vw, 500px);
	max-width: 500px;
	padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
	border-radius: 18px 18px 0 0;
	background: var(--auraeb-message-bg, #a6350b);
	color: #fff;
	box-shadow: 0 -10px 34px rgba(32, 20, 24, 0.2);
	font-family: Montserrat, Arial, sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0;
	text-align: center;
	overflow-wrap: anywhere;
	white-space: normal;
	transform: translateX(-50%);
	animation: auraebMessageFade 220ms ease forwards;
	pointer-events: none;
}

@keyframes auraebMessageFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@media (max-width: 767px) {
	.auraeb-message-bar {
		width: 92%;
		padding-right: 16px;
		padding-left: 16px;
		font-size: 14px;
	}
}
