/* ===================================================== */
/* JAYHAWKS LAUNCH OVERRIDES                             */
/* DESKTOP/TABLET ONLY — IPHONE LEFT TO MAIN.CSS         */
/* ===================================================== */

@media (min-width: 521px) {

	:root {
		--max: none;
	}


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

	.hero-left,
	.hero-right {
		height: 20vw;
		width: auto;
		max-width: none;
	}


	/* ===================================================== */
	/* MENU — shared desktop/tablet appearance               */
	/* ===================================================== */

	.nav-toggle {
		display: grid;
		grid-template-columns: auto;
		grid-template-rows: auto auto auto auto;
		justify-items: center;
		align-items: start;
		row-gap: clamp(5px, 0.8vw, 10px);

		background: none;
		border: none;
		cursor: pointer;
		padding: 0;

		color: var(--green);
		flex-shrink: 0;
		z-index: 1000;

		text-align: center;
	}

	.nav-toggle::before {
		content: "MENU";
		grid-column: 1;
		grid-row: 1;

		display: block;
		width: 8.5vw;

		font-family: Oswald, sans-serif;
		font-size: 3.6vw;
		font-weight: 700;
		letter-spacing: 0;
		line-height: 0.85;
		text-align: center;

		color: var(--green);
	}

	.nav-toggle span {
		grid-column: 1;
		display: block;
		width: 8.5vw;
		height: 0.45vw;

		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	.nav-toggle span:nth-child(1) {
		grid-row: 2;
		background: #32A5CA;
	}

	.nav-toggle span:nth-child(2) {
		grid-row: 3;
		background: #F7C53A;
	}

	.nav-toggle span:nth-child(3) {
		grid-row: 4;
		background: #07BE5E;
	}


/* ===================================================== */
/* HOME PAGE MENU POSITION                               */
/* ===================================================== */

.hero-split .nav-toggle {
	position: absolute;
	top: 25px;
	left: 43%;
	margin: 0;
	padding: 0;
	width: 8.5vw;
	min-width: 8.5vw;
	max-width: none;
	overflow: visible;
	transform: translateX(-50%);
	transform-origin: top center;
	z-index: 1000;
}

.hero-split .nav-toggle::before {
	width: 8.5vw;
	font-size: 3.6vw;
}

.hero-split .nav-toggle span {
	width: 8.5vw;
	height: 0.45vw;
}


	/* ===================================================== */
	/* SUBPAGE HERO                                           */
	/* ===================================================== */

	.subpage-hero {
		position: relative;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		width: 100%;
	}

	.subpage-hero .nav-toggle {
		position: absolute !important;
		top: 25px !important;
		left: 43% !important;

		width: 8.5vw !important;
		min-width: 8.5vw !important;
		max-width: none !important;
		overflow: visible !important;

		margin: 0;
		transform: translateX(-50%) !important;
		transform-origin: top center !important;
		z-index: 1000;
	}

	.subpage-hero .nav-toggle::before {
		width: 8.5vw !important;
		font-size: 3.6vw !important;
	}

	.subpage-hero .nav-toggle span {
		width: 8.5vw !important;
		height: 0.45vw !important;
	}


	/* ===================================================== */
	/* SUBPAGE LOGO IMAGE (desktop/tablet)                    */
	/* Mirrors the old .hero-title.subpage-title text scale  */
	/* ===================================================== */

	.subpage-logo {
		display: block;
		height: 20vw;
		width: auto;
		max-width: none;
	}


	/* ===================================================== */
	/* HOME PAGE NEWS BANNERS                                */
	/* ===================================================== */

	.show.show-news-top .date {
		font-size: clamp(3rem, 4vw, 4.5rem);
		font-weight: 900;
		line-height: 0.85;
		}



}






/* ===================================================== */
/* SUBPAGE LOGO IMAGE (phone, ≤520px)                     */
/* ===================================================== */

@media (max-width: 520px) {
	.subpage-logo {
		display: block;
		width: 100%;
		height: auto;
		max-width: 100%;
		margin: 0;
	}


	/* ===================================================== */
	/* SUBPAGE HERO — phone (matches index .hero-split stack) */
	/* ===================================================== */

	.subpage-hero {
		position: relative;
		display: block;
		padding: 8px 0 14px;
	}

	.subpage-hero .hero-title.subpage-title {
		display: block;
		width: 100%;
		margin: 0;
	}

	.subpage-hero .nav-toggle {
		position: absolute;
		top: 14px;
		right: 0;
		left: auto;
		transform: scale(1.75);
		transform-origin: top right;
		z-index: 1000;
	}

	.subpage-hero .section-title {
		display: block;
		width: 60%;
		margin: 22px auto 6px;
		text-align: center;
	}
}
