/* VIS Header & Footer — design tokens and components ported from Vis_Design (styles.css, SiteHeader.tsx, SiteFooter.tsx). */

:root {
	--vis-navy: #007ac3;
	--vis-navy-2: #006aa8;
	--vis-blue-deep: #085a8a;
	--vis-yellow: oklch(0.85 0.16 90);
	--vis-yellow-foreground: oklch(0.24 0.08 258);
	--vis-ink: oklch(0.31 0.08 255);
	--vis-sky: #b9dbee;
	--vis-paper-blue: oklch(0.98 0.01 240);
	--sec-about: oklch(0.62 0.16 155);
	--sec-people: oklch(0.55 0.16 250);
	--sec-learning: oklch(0.72 0.16 70);
	--sec-admissions: oklch(0.62 0.2 28);
	--sec-parents: oklch(0.6 0.2 0);
	--vis-gradient-footer: linear-gradient(122deg, #003b63 0%, #005b94 22%, #007ac3 56%, #3ca9ea 100%);
	--vis-font-display: "Cormorant Garamond", "Times New Roman", serif;
	--vis-font-sans: "Inter", system-ui, -apple-system, sans-serif;
	--vis-header-h: 64px;
	--vis-site-gutter: 1rem;
	--vis-site-max: 80rem;
}

@media (min-width: 640px) {
	:root {
		--vis-site-gutter: 1.5rem;
	}
}

@media (min-width: 1024px) {
	:root {
		--vis-site-gutter: 2rem;
	}
}

@media (min-width: 1280px) {
	:root {
		--vis-site-gutter: 3rem;
	}
}

@media (min-width: 1024px) {
	:root {
		--vis-header-h: 80px;
	}
}

/* Accent per section (set on any ancestor with class sec-*) */
.sec-about { --vis-accent: var(--sec-about); --vis-accent-soft: #7ee4b0; }
.sec-people { --vis-accent: var(--sec-people); --vis-accent-soft: #d3ecff; }
.sec-learning { --vis-accent: var(--sec-learning); --vis-accent-soft: #ffd85a; }
.sec-admissions { --vis-accent: var(--sec-admissions); --vis-accent-soft: #ff9d8a; }
.sec-parents { --vis-accent: var(--sec-parents); --vis-accent-soft: #ff8ccb; }

/* Inner pages: solid header bar. Hero sections handle their own top padding (no body offset). */

.vis-icon {
	width: 1em;
	height: 1em;
	flex-shrink: 0;
}

.vis-icon--yellow {
	color: var(--vis-yellow);
}

/* Header accents: white (not yellow/pink) */
.vis-header .vis-icon--yellow,
.vis-header__cta,
.vis-header__contact a,
.vis-header__contact a span {
	color: #fff !important;
}

.vis-header__cta:hover,
.vis-header__contact a:hover {
	color: rgba(255, 255, 255, 0.88) !important;
}

/* Never show Elementor/hello duplicate header when it slips in */
#site-header.site-header {
	display: none !important;
}

#site-footer.site-footer {
	display: none !important;
}

/* ============ HEADER ============ */

.vis-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 9999;
	font-family: var(--vis-font-sans);
	color: #fff;
	background: rgba(0, 0, 0, 0.16);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s;
}

.vis-header.is-scrolled,
body.vis-hf-solid .vis-header {
	background: color-mix(in srgb, var(--vis-navy) 92%, transparent);
	border-bottom-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 14px 34px rgba(4, 29, 54, 0.18);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}

.vis-header__inner {
	margin: 0 auto;
	display: flex;
	height: var(--vis-header-h);
	max-width: 92rem;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 0 var(--vis-site-gutter);
}

@media (min-width: 640px) {
	.vis-header__inner { padding: 0 var(--vis-site-gutter); }
}

@media (min-width: 1024px) {
	.vis-header__inner { padding: 0 var(--vis-site-gutter); }
}

@media (min-width: 1280px) {
	.vis-header__inner { padding: 0 var(--vis-site-gutter); }
}

.vis-header__left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.vis-header__logo img {
	display: block;
	width: 130px;
	height: auto;
}

@media (min-width: 1024px) {
	.vis-header__logo img { width: 146px; }
}

.vis-header__contact {
	display: none;
	align-items: center;
	gap: 1.5rem;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 1280px) {
	.vis-header__contact { display: flex; }
}

.vis-header__contact a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.vis-header__contact a:hover { color: #fff; }
.vis-header__contact .vis-icon { width: 0.875rem; height: 0.875rem; }

/* Desktop nav */
.vis-nav {
	display: none;
	flex: 1;
	justify-content: center;
}

@media (min-width: 1024px) {
	.vis-nav { display: flex; }
}

.vis-nav__list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 1280px) {
	.vis-nav__list { gap: 2rem; }
}

.vis-nav__item { position: relative; }

.vis-nav__link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
	padding: 0.25rem 0;
}

.vis-nav__link:hover { color: rgba(255, 255, 255, 0.85); }

.vis-nav__underline {
	position: absolute;
	bottom: -0.25rem;
	left: 0;
	height: 1px;
	width: 0;
	background: var(--vis-yellow);
	transition: width 0.3s;
}

.vis-nav__link:hover .vis-nav__underline { width: 100%; }

.vis-icon--chevron {
	width: 0.875rem;
	height: 0.875rem;
	transition: transform 0.3s;
}

.vis-nav__item--dropdown:hover .vis-icon--chevron,
.vis-nav__item--dropdown:focus-within .vis-icon--chevron {
	transform: rotate(180deg);
}

/* Dropdown card */
.vis-dropdown {
	position: absolute;
	left: 0;
	top: 100%;
	padding-top: 1rem;
	opacity: 0;
	transform: translateY(-0.5rem);
	pointer-events: none;
	transition: opacity 0.3s, transform 0.3s;
	z-index: 50;
}

.vis-nav__item--dropdown:hover .vis-dropdown,
.vis-nav__item--dropdown:focus-within .vis-dropdown {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.vis-dropdown__card {
	min-width: 300px;
	overflow: hidden;
	border-radius: 1.1rem;
	border: 1px solid color-mix(in srgb, var(--vis-sky) 55%, #fff);
	background: #fff;
	box-shadow: 0 24px 60px -12px rgba(4, 29, 54, 0.24);
}

.vis-dropdown__accent {
	height: 4px;
	width: 100%;
	background: var(--vis-accent, var(--vis-navy));
}

.vis-dropdown__kicker {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1.25rem 1.5rem 0;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	color: var(--vis-blue-deep);
}

.vis-dropdown__dot {
	height: 0.375rem;
	width: 0.375rem;
	border-radius: 999px;
	background: var(--vis-yellow);
}

.vis-dropdown__list {
	list-style: none;
	margin: 0;
	padding: 0.625rem 1.5rem 1.25rem;
	font-size: 0.875rem;
}

.vis-dropdown__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 0.125rem -0.5rem;
	padding: 0.625rem 0.75rem;
	border-radius: 0.55rem;
	color: color-mix(in srgb, var(--vis-ink) 76%, transparent);
	text-decoration: none;
	transition: color 0.2s, background-color 0.2s;
	white-space: nowrap;
}

.vis-dropdown__list a::after {
	content: "";
	width: 0.4rem;
	height: 0.4rem;
	flex-shrink: 0;
	border-right: 1.5px solid currentColor;
	border-top: 1.5px solid currentColor;
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s, transform 0.2s;
}

.vis-dropdown__list a:hover {
	color: var(--vis-blue-deep);
	background: color-mix(in srgb, var(--vis-paper-blue) 72%, transparent);
}

.vis-dropdown__list a:hover::after {
	opacity: 0.55;
	transform: rotate(45deg) translate(1px, -1px);
}

.vis-dropdown__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid color-mix(in srgb, var(--vis-sky) 55%, #fff);
	background: color-mix(in srgb, var(--vis-paper-blue) 55%, transparent);
	padding: 0.875rem 1.5rem;
	text-decoration: none;
	transition: background 0.2s;
}

.vis-dropdown__footer:hover { background: var(--vis-paper-blue); }

.vis-dropdown__footer span {
	font-family: var(--vis-font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--vis-blue-deep);
}

.vis-dropdown__footer .vis-icon {
	color: var(--vis-blue-deep);
	transition: transform 0.2s;
}

.vis-dropdown__footer:hover .vis-icon { transform: translateX(4px); }

/* Right side */
.vis-header__right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.vis-header__right { gap: 1rem; }
}

.vis-header__cta {
	display: none;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	text-decoration: none;
	transition: color 0.2s;
}

@media (min-width: 640px) {
	.vis-header__cta { display: inline-block; }
}

.vis-header__cta:hover { color: #fff; }

.vis-header__icon-btn {
	height: 2.25rem;
	width: 2.25rem;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	background: transparent !important;
	color: #fff !important;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
	padding: 0;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	box-shadow: none;
}

.vis-header__icon-btn:hover {
	border-color: rgba(255, 255, 255, 0.28) !important;
	background: rgba(255, 255, 255, 0.08) !important;
	color: #fff !important;
}

.vis-header__icon-btn:focus,
.vis-header__icon-btn:focus-visible {
	outline: none !important;
	box-shadow: none !important;
	border-color: rgba(255, 255, 255, 0.28) !important;
}

.vis-header__icon-btn .vis-icon { width: 1rem; height: 1rem; color: #fff; }

/* Burger: mobile only — beat .vis-header__icon-btn { display: grid } and Elementor button styles */
.vis-header__icon-btn.vis-header__burger {
	display: none !important;
}
.vis-header__icon-btn.vis-header__burger .vis-icon--close { display: none; }
.vis-header.is-open .vis-header__icon-btn.vis-header__burger .vis-icon--open { display: none; }
.vis-header.is-open .vis-header__icon-btn.vis-header__burger .vis-icon--close { display: block; }

@media (max-width: 1023px) {
	.vis-header__icon-btn.vis-header__burger { display: grid !important; }
}

/* Mobile nav */
.vis-mobile {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	background: color-mix(in srgb, var(--vis-navy) 96%, transparent);
	transition: max-height 0.3s, opacity 0.3s;
}

.vis-header.is-open .vis-mobile {
	max-height: 80vh;
	opacity: 1;
	overflow-y: auto;
}

@media (min-width: 1024px) {
	.vis-mobile { display: none; }
}

.vis-mobile__inner {
	padding: 0 1rem 1.25rem;
	color: #fff;
}

.vis-mobile__contact {
	display: grid;
	gap: 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	padding: 0.5rem 0 1rem;
	margin-bottom: 0.75rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.86);
}

.vis-mobile__contact a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: inherit;
	text-decoration: none;
}

.vis-mobile__top-link {
	display: block;
	padding: 0.5rem 0;
	font-size: 0.875rem;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
}

.vis-mobile__group {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding: 0.5rem 0;
}

.vis-mobile__group:first-of-type { border-top: 0; }

.vis-mobile__group summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	list-style: none;
}

.vis-mobile__group summary::-webkit-details-marker { display: none; }

.vis-mobile__group summary a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
	text-decoration: none;
}

.vis-mobile__dot {
	height: 0.5rem;
	width: 0.5rem;
	border-radius: 999px;
	background: var(--vis-accent, var(--vis-yellow));
}

.vis-mobile__group[open] summary .vis-icon--chevron { transform: rotate(180deg); }

.vis-mobile__group ul {
	list-style: none;
	margin: 0;
	padding: 0 0 0.5rem 1rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.72);
}

.vis-mobile__group ul a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.5rem 0.25rem;
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}

.vis-mobile__group ul a::after {
	content: "";
	width: 0.35rem;
	height: 0.35rem;
	flex-shrink: 0;
	border-right: 1.5px solid currentColor;
	border-top: 1.5px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.35;
}

.vis-mobile__group ul a:hover { color: #fff; }

/* Search overlay */
.vis-search {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding: 18vh 1rem 0;
	background: rgba(3, 24, 43, 0.6);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.vis-search.is-open { display: flex; }

.vis-search__panel {
	width: min(560px, 100%);
	border-radius: 1rem;
	background: #fff;
	box-shadow: 0 30px 60px -20px rgba(4, 29, 54, 0.4);
	overflow: hidden;
}

.vis-search__panel form {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	padding: 1rem 1.25rem;
}

.vis-search__panel .vis-icon {
	width: 1.125rem;
	height: 1.125rem;
	color: var(--vis-blue-deep);
}

.vis-search__panel input {
	flex: 1;
	border: 0;
	outline: 0;
	font-family: var(--vis-font-sans);
	font-size: 1rem;
	color: var(--vis-ink);
	background: transparent;
}

.vis-search__panel button {
	border: 0;
	border-radius: 999px;
	background: var(--vis-yellow);
	color: var(--vis-yellow-foreground);
	font-family: var(--vis-font-sans);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	padding: 0.5rem 1.1rem;
	cursor: pointer;
}

/* ============ FOOTER ============ */

.vis-footer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-image: var(--vis-gradient-footer);
	color: #fff;
	font-family: var(--vis-font-sans);
}

.vis-footer__glow {
	position: absolute;
	z-index: -1;
	border-radius: 999px;
	filter: blur(64px);
	pointer-events: none;
}

.vis-footer__glow--left {
	top: -7rem;
	left: 22%;
	height: 20rem;
	width: 34rem;
	background: rgba(255, 255, 255, 0.1);
}

.vis-footer__glow--right {
	top: 2.5rem;
	right: -5rem;
	height: 24rem;
	width: 34rem;
	background: color-mix(in srgb, var(--vis-sky) 20%, transparent);
}

.vis-footer__inner {
	margin: 0 auto;
	max-width: var(--vis-site-max);
	padding: 5rem var(--vis-site-gutter);
}

/* CTA strip */
.vis-footer__cta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 4rem;
	padding-bottom: 3rem;
}

@media (min-width: 768px) {
	.vis-footer__cta {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
}

.vis-footer__cta-text { max-width: 36rem; }

.vis-footer__kicker {
	margin: 0 0 0.75rem;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--vis-yellow);
}

.vis-footer__headline {
	margin: 0;
	font-family: var(--vis-font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 2.25rem;
	line-height: 1.15;
	color: #fff;
}

@media (min-width: 768px) {
	.vis-footer__headline { font-size: 3rem; }
}

.vis-footer__headline-strong {
	font-family: var(--vis-font-sans);
	font-style: normal;
	font-weight: 700;
}

.vis-footer__apply {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	border-radius: 999px;
	background: var(--vis-yellow);
	padding: 0.75rem 0.75rem 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--vis-yellow-foreground);
	text-decoration: none;
	transition: transform 0.2s;
}

.vis-footer__apply:hover { transform: translateY(-2px); }

.vis-footer__apply-icon {
	display: grid;
	height: 2.25rem;
	width: 2.25rem;
	place-items: center;
	border-radius: 999px;
	background: var(--vis-yellow-foreground);
	color: var(--vis-yellow);
}

/* Columns */
.vis-footer__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem;
}

@media (min-width: 640px) {
	.vis-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
	.vis-footer__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

.vis-footer__brand { grid-column: span 2; }

@media (min-width: 1024px) {
	.vis-footer__brand { grid-column: span 2; }
}

.vis-footer__brand img {
	width: 210px;
	height: auto;
}

.vis-footer__brand p {
	margin: 1.25rem 0 0;
	max-width: 24rem;
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
}

.vis-footer__contact {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.625rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
}

.vis-footer__contact li {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.vis-footer__contact .vis-icon { width: 1rem; height: 1rem; }

.vis-footer__col-title {
	margin-bottom: 1rem;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	color: var(--vis-accent-soft, #fff);
	text-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}

.vis-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
	font-size: 0.875rem;
}

.vis-footer__col a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.2s;
}

.vis-footer__col a:hover { color: #fff; }

.vis-footer__view-all {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9) !important;
}

.vis-footer__view-all:hover { color: var(--vis-yellow) !important; }

/* Bottom bar */
.vis-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 4rem;
	padding-top: 2rem;
}

@media (min-width: 768px) {
	.vis-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.vis-footer__copy {
	margin: 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
}

.vis-footer__utils {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
	font-size: 0.75rem;
}

.vis-footer__utils a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.3s, color 0.2s;
}

.vis-footer__utils a:hover {
	color: #fff;
	background-size: 100% 1px;
}

.vis-footer__socials {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.vis-footer__socials a {
	display: grid;
	height: 2.25rem;
	width: 2.25rem;
	place-items: center;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	transition: border-color 0.2s, color 0.2s;
}

.vis-footer__socials a:hover {
	border-color: var(--vis-yellow);
	color: var(--vis-yellow);
}

.vis-footer__socials .vis-icon { width: 1rem; height: 1rem; }

/* ============ 404 PAGE (NotFoundComponent from Vis_Design) ============ */

body.vis-404-page {
	padding-top: 0;
	background: var(--vis-paper-blue, oklch(0.98 0.01 240));
}

body.vis-404-page .vis-header {
	position: relative;
	background: color-mix(in srgb, var(--vis-navy) 92%, transparent);
	border-bottom-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 14px 34px rgba(4, 29, 54, 0.18);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}

.vis-404 {
	display: flex;
	min-height: calc(100vh - var(--vis-header-h));
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem 3rem;
	font-family: var(--vis-font-sans);
}

.vis-404__card {
	max-width: 28rem;
	width: 100%;
	text-align: center;
}

.vis-404__code {
	margin: 0;
	font-family: var(--vis-font-display);
	font-style: italic;
	font-size: clamp(4rem, 15vw, 6rem);
	font-weight: 500;
	line-height: 1;
	color: var(--vis-blue-deep);
}

.vis-404__title {
	margin: 1rem 0 0;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--vis-ink);
}

.vis-404__text {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--vis-ink) 65%, transparent);
}

.vis-404__actions {
	margin-top: 1.5rem;
}

.vis-404__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--vis-yellow);
	padding: 0.625rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--vis-yellow-foreground);
	text-decoration: none;
	transition: filter 0.2s;
}

.vis-404__button:hover {
	filter: brightness(1.08);
}
