#top #wrap_all .hurricanes-footer-menu {
	--hfm-red: #ce2e26;
	--hfm-surface-border: rgba(255, 255, 255, 0.1);
	--hfm-card-border: rgba(255, 255, 255, 0.08);
	--hfm-link-color: rgba(236, 242, 251, 0.88);
	--hfm-link-color-hover: #ffffff;
	position: relative;
	overflow: hidden;
	padding: clamp(26px, 4vw, 42px);
	border: 1px solid var(--hfm-surface-border);
	border-radius: 30px;
	background:
		radial-gradient(56% 80% at 100% 0%, rgba(206, 46, 38, 0.16) 0%, rgba(206, 46, 38, 0) 72%),
		radial-gradient(40% 56% at 0% 100%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 78%),
		linear-gradient(145deg, #1a2230 0%, #101721 56%, #0b1017 100%);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

#top #wrap_all .hurricanes-footer-menu::before {
	content: none;
}

#top #wrap_all .hurricanes-footer-menu::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.04) 54%, transparent 100%);
	pointer-events: none;
}

#top #wrap_all .hurricanes-footer-menu__nav {
	position: relative;
	z-index: 1;
}

#top #wrap_all .hurricanes-footer-menu__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: clamp(16px, 2.6vw, 24px);
}

#top #wrap_all .hurricanes-footer-menu__group {
	position: relative;
	overflow: hidden;
	padding: 22px 22px 20px;
	border: 1px solid var(--hfm-card-border);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.03),
		0 16px 32px rgba(0, 0, 0, 0.22);
}

#top #wrap_all .hurricanes-footer-menu__group::after {
	content: "";
	position: absolute;
	left: -10%;
	right: -10%;
	bottom: -30%;
	height: 48%;
	pointer-events: none;
	background:
		radial-gradient(56% 94% at 14% 100%, rgba(206, 46, 38, 0.42) 0%, rgba(206, 46, 38, 0.14) 42%, rgba(206, 46, 38, 0) 72%),
		radial-gradient(48% 84% at 84% 100%, rgba(206, 46, 38, 0.28) 0%, rgba(206, 46, 38, 0.08) 38%, rgba(206, 46, 38, 0) 74%);
	opacity: 0.95;
}

@media (hover: hover) {
	#top #wrap_all .hurricanes-footer-menu__group {
		transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	}

	#top #wrap_all .hurricanes-footer-menu__group:hover {
		transform: translateY(-3px);
		border-color: rgba(206, 46, 38, 0.3);
		box-shadow:
			inset 0 0 0 1px rgba(255, 255, 255, 0.04),
			0 20px 40px rgba(0, 0, 0, 0.28);
	}
}

#top #wrap_all .hurricanes-footer-menu__title {
	position: relative;
	z-index: 1;
	margin: 0 0 16px;
	font-family: "Barlow Condensed", "Barlow", "Arial Narrow", sans-serif;
	font-style: italic;
	font-size: clamp(1.7rem, 2vw, 2.15rem);
	font-weight: 700;
	letter-spacing: 0.015em;
	line-height: 0.98;
	text-transform: uppercase;
}

#top #wrap_all .hurricanes-footer-menu__title a,
#top #wrap_all .hurricanes-footer-menu__title span {
	color: #ffffff;
	text-decoration: none;
}

#top #wrap_all .hurricanes-footer-menu__title a:hover,
#top #wrap_all .hurricanes-footer-menu__title a:focus-visible {
	color: #f3d2d0;
}

#top #wrap_all .hurricanes-footer-menu__list {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

#top #wrap_all .hurricanes-footer-menu__item {
	margin: 0;
	padding: 0;
}

#top #wrap_all .hurricanes-footer-menu__item + .hurricanes-footer-menu__item {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#top #wrap_all .hurricanes-footer-menu__link {
	display: inline-flex;
	align-items: center;
	width: 100%;
	padding: 12px 0;
	color: var(--hfm-link-color);
	font-size: 1.03rem;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
	transition: color 150ms ease, transform 150ms ease;
}

#top #wrap_all .hurricanes-footer-menu__link:hover,
#top #wrap_all .hurricanes-footer-menu__link:focus-visible {
	color: var(--hfm-link-color-hover);
	transform: translateX(4px);
}

#top #wrap_all .hurricanes-footer-menu__title a:focus-visible,
#top #wrap_all .hurricanes-footer-menu__link:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.86);
	outline-offset: 3px;
}

#top #wrap_all .hurricanes-footer-menu--notice {
	padding-top: clamp(22px, 3vw, 30px);
}

#top #wrap_all .hurricanes-footer-menu__notice {
	position: relative;
	z-index: 1;
	margin: 0;
	color: #ffffff;
	font-size: 1rem;
	line-height: 1.55;
}

@media (max-width: 989px) {
	#top #wrap_all .hurricanes-footer-menu {
		padding: 24px;
		border-radius: 26px;
	}

	#top #wrap_all .hurricanes-footer-menu__group {
		padding: 20px 20px 18px;
		border-radius: 22px;
	}
}

@media (max-width: 767px) {
	#top #wrap_all .hurricanes-footer-menu {
		padding: 20px 18px;
		border-radius: 22px;
	}

	#top #wrap_all .hurricanes-footer-menu__grid {
		grid-template-columns: 1fr;
	}

	#top #wrap_all .hurricanes-footer-menu__group {
		padding: 18px 18px 16px;
		border-radius: 20px;
	}

	#top #wrap_all .hurricanes-footer-menu__title {
		margin-bottom: 12px;
		font-size: 1.7rem;
	}

	#top #wrap_all .hurricanes-footer-menu__link {
		padding: 11px 0;
		font-size: 1rem;
	}
}
