:root {
	--green: #ffffff;
	--paper: #000000;
	--line: rgba(255, 255, 255, 0.18);
	--pad: clamp(18px, 4vw, 56px);
	--max: 1320px;
	--section-gap: 60px;
	--heading-gap: 20px;
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--green);
	font-family: 'Inter', sans-serif;
	opacity: 1;
	transition: opacity 0.18s ease;
}

.page {
	width: min(var(--max), 100%);
	margin: 0 auto;
	padding: 0 var(--pad);
	opacity: 1;
	transition: opacity 0.35s ease;
}


a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}


/* ─── HEADER ─── */


.site-header {

	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 0 clamp(10px, 2vw, 20px);
	position: relative;

}

.subpage-hero {
	display: block;
	padding-bottom: clamp(10px, 2vw, 24px);
}

.hero-title.subpage-title {
	font-size: clamp(2rem, 6vw, 5rem);
	line-height: 0.9;
}


.logo-text,
.nav a,
.kicker,
.button,
.footer-text {
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
}

.card-title,
.date,
.city,
.hero-title {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
}


.logo-text {
	font-size: clamp(1rem, 1.4vw, 1.5rem);
	font-weight: 700;
	z-index: 100;
}

#new-album h1 {
	margin: 0 0 1px 0;
}

#new-album .album-art {
	display: block;
	width: 100%;
	max-width: 700px;
	margin-top: -70px;
	margin-bottom: -40px;
	margin-left: -60px;
}



#tour {
	padding-top: 10px;
}


/* ─── NAV ─── */

.nav {
	display: none;
	flex-direction: column;
	position: fixed;
	inset: 0;
	background: var(--paper);
	z-index: 150;
	justify-content: center;
	align-items: center;
	gap: 36px;
	font-size: 1.1rem;
	font-weight: 600;
}

.nav.open {
	display: flex;
	position: fixed;
	inset: 0;
	z-index: 150;
}



.nav a.active {
	border-bottom: 2px solid var(--green);
	padding-bottom: 6px;
}

/* Hamburger button — visible on all screen sizes */



.nav-toggle {
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: repeat(3, auto);
	align-items: center;
	column-gap: 10px;
	row-gap: 4px;

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

	color: var(--green);
	align-self: flex-start;
	flex-shrink: 0;
	z-index: 1000;
}

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

	font-family: Oswald, sans-serif;
	font-size: clamp(18px, 2.5vw, 28px);
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--green);
	line-height: 1;
}

.nav-toggle span {
	grid-column: 2;
	display: block;
	width: clamp(22px, 3vw, 34px);
	height: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.nav-toggle.open span:nth-child(1),
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2),
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.open span:nth-child(3),
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}


/* ─── CONTACT PAGE ─── */

.contact-page {
	width: 100%;
	max-width: none;
}

.contact-entry {
	padding-bottom: 32px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--line);
}

.contact-entry:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-entry p {
	margin: 8px 0 0;
}

.contact-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	margin-top: 14px;
	padding: 12px 20px;

	border: 1px solid var(--green);
	color: var(--green);

	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	text-decoration: none;

	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease;
}

.contact-button:hover,
.contact-button:focus-visible {
	background: var(--green);
	color: var(--paper);
	transform: translateY(-2px);
}

.contact-entry p {
	margin: 12px 0 0;
	font-size: 1rem;
	line-height: 1.5;
}

.contact-entry strong {
	display: block;
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 2px;
}

.contact-label {
	margin: 0;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: clamp(1.4rem, 2vw, 2.2rem);
	font-weight: 700;
	line-height: 1;
}

.contact-directory {
	width: 100%;
	max-width: none;
	padding-top: 2rem;
}

.contact-show {
	width: 100%;
	text-decoration: none;
}

.contact-show .date {
	font-size: clamp(1rem, 1.5vw, 2rem);
}


@media (max-width: 850px) {
	.contact-page {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-directory {
		grid-template-columns: 1fr;
	}
}



.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-field label {
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 700;
}

.form-field input,
.form-field textarea {
	width: 100%;
	background: transparent;
	border: 1px solid var(--line);
	padding: 14px 16px;
	font: inherit;
	color: var(--green);
	resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--green);
}

.form-button {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	background: transparent;
	border: 1px solid var(--green);
	color: var(--green);
	padding: 16px 24px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background-color 0.25s ease,
		color 0.25s ease;
}

.form-button:hover {
	background: var(--green);
	color: var(--paper);
}


/* ─── HERO ─── */

.hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) clamp(150px, 22vw, 320px);
	gap: 24px;
	align-items: end;
	padding: 20px 0;
	overflow: visible;
}

.hero-divider {
	border-bottom: 1px solid var(--line);
	margin: 15px 0 0;
}

.hero-title {
	font-size: clamp(4rem, 13vw, 12rem);
	line-height: 0.82;
	letter-spacing: -0.03em;
	margin: 0;
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke: 2px var(--green);
	text-stroke: 2px var(--green);
	position: relative;
	z-index: 1;
}

.hero-image-wrap {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 0;
	margin-top: clamp(-24px, -4vw, -60px);
}

.subpage-hero {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 20px 0;
	gap: 20px;
}

.subpage-hero .hero-title {
	margin: 0;
}

.subpage-hero .section-title {
	margin: 0;
	text-align: right;
}

.band-photo-crop {
	width: 100%;
	aspect-ratio: 11 / 5;
	height: auto;
	margin-top: clamp(-80px, -12vw, -220px);
	margin-left: clamp(-50px, -3vw, 0px);
	overflow: hidden;
	position: relative;
	z-index: 5;
}

.band-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: grayscale(1);
}

.hero-composite {
	display: block;
	width: 100%;
	max-width: 500px;
	height: auto;
	margin-top: -60px;
	margin-bottom: -40px;
}

.hero-side {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(18px, 3vw, 36px);
}

.kicker {
	font-size: clamp(0.9rem, 1.1vw, 1.2rem);
	line-height: 1.7;
	letter-spacing: 0.22em;
	margin: clamp(26px, 4vw, 60px) 0 0;
	max-width: 28rem;
}

.button {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	border: 1px solid var(--green);
	padding: 16px 24px;
	margin-top: 22px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}


.hero-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: start;
	width: 100%;
	column-gap: clamp(16px, 3vw, 48px);
}

.hero-left-wrap {
	min-width: 0;
	justify-self: start;
}

.hero-left,
.hero-right {
	height: clamp(90px, 20vw, 320px);
	width: auto;
	max-width: 100%;
}

.hero-left {
	justify-self: start;
}

.hero-split .nav-toggle {
	justify-self: center;
	margin: 0;
}

.hero-right {
	justify-self: end;
	margin-left: auto;
}


#new-album .album-show:hover,
#new-album .album-show:focus-visible {
	background: var(--green);
	color: var(--paper);
	padding-inline: 0;
}


#new-album .album-show {
	padding-top: 10px;
	padding-bottom: 40px;
}

#tour .section-head {
	margin-bottom: 20px;
	margin-top: -20px;
}

.home-list {
	padding: 0 0 0;
}


/* ------ latest news ------ */

.latest-news {
	padding-top: 20px;
	padding-bottom: var(--section-gap);
}

.latest-news .section-head {
	margin-bottom: var(--heading-gap);
}

.show .right-photo {
	width: 150px;
	justify-self: end;
}

.show .right-photo img {
	width: 100%;
	height: auto;
	display: block;
}

.home-list .show:last-child {

	border-bottom: none;

}

/* --- DISCOGRAPHY --- */

.discography-item {
	display: block;
	color: inherit;
	text-decoration: none;
}

.discography-cover {
	position: relative;
}


.discography-overlay {

	position: absolute;
	inset: 0;
	background: rgba(15, 15, 15, 0.65);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	opacity: 0;
	transition: opacity .2s ease;

}

.discography-overlay a {
	color: var(--paper);
	text-decoration: none;
	font-family: 'Oswald', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 0;
	transition: opacity 0.2s ease;
}

.discography-overlay a:hover {
	opacity: 0.7;
	text-decoration: none;
}

.discography-divider {
	width: 60%;
	height: 1px;
	background: rgba(238,231,219,0.4);
	margin: 6px 0;
}


.discography-item:hover .discography-overlay {
	opacity: 1;
}

	.discography-page {
		padding: 20px 0 60px;
	}

.discography-intro {
	font-size: clamp(1rem, 1.25vw, 1.2rem);
	line-height: 1.7;
	margin: 0 0 36px;
}

	.discography-grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));		gap: 2rem;
		padding-bottom: 2rem;
	}


	.discography-item:hover {
		transform: translateY(-8px);
	}


	.discography-cover img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.35s ease, opacity 0.35s ease;
	}

	.discography-item:hover .discography-cover img {
		transform: scale(1.05);
		opacity: 0.9;
	}

	.discography-year {
		font-size: 0.72rem;
		letter-spacing: 0.22em;
		text-transform: uppercase;
		font-weight: 700;
		opacity: 0.65;
		margin-bottom: 0.25rem;
	}

	.discography-title {
		font-family: 'Oswald', sans-serif;
		font-size: clamp(1.2rem, 2vw, 2rem);
		font-weight: 800;
		line-height: 1;
		text-transform: uppercase;
		margin-bottom: 0.4rem;
	}

	.discography-note {
		font-size: 0.8rem;
		letter-spacing: 0.08em;
		line-height: 1.45;
		text-transform: uppercase;
		opacity: 0.75;
	}

	.discography-links {
		display: flex;
		flex-wrap: wrap;
		gap: 0.75rem;
		margin-top: 2rem;
		padding-top: 2rem;
		border-top: 1px solid var(--line);
	}

	@media (max-width: 480px) {
		.discography-grid {
			grid-template-columns: repeat(2, 1fr);
			gap: 1rem;
		}

		.discography-title {
			font-size: 1.15rem;
		}
	}

/* ─── menu ─── */

.menu-title {

	margin: 0 0 40px;
	text-align: center;

}

/* ─── TOUR ─── */

.tour {
	padding: var(--section-gap) 0;
}


.section-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	margin-bottom: clamp(30px, 5vw, 70px);
}

.section-title {
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 0.9;
	margin: 0;
}

.view-link {
	letter-spacing: 0.25em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--green);
	padding-bottom: 10px;
	font-weight: 700;
	white-space: nowrap;
}



.show {
	display: grid;
	grid-template-columns: clamp(140px, 28vw, 420px) 1fr 48px;
	align-items: center;
	gap: clamp(8px, 1.5vw, 32px);
	padding: clamp(18px, 2vw, 28px) 0;
	border-bottom: 1px solid rgba(0, 64, 45, 0.35);
	color: var(--green);
	text-decoration: none;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		padding-inline 0.25s ease;
}



.date {
	width: 100%;
	text-align: left;
	font-size: clamp(1.25rem, 1.7vw, 2.5rem);
	font-weight: 700;
}

.city {
	font-size: clamp(1.45rem, 2.1vw, 2.9rem);
	font-weight: 900;
}

.venue {
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-size: clamp(0.62rem, 0.75vw, 1rem);
	margin-top: 8px;
}

.show:hover,
.show:focus-visible {
	background: var(--green);
	color: var(--paper);
	padding-inline: clamp(12px, 2.5vw, 36px);
}

.show.show-small .date {
	font-size: clamp(2rem, 3vw, 3.5rem);
	font-weight: 900;
	line-height: 0.9;
}

.arrow {
	font-size: clamp(1.5rem, 3vw, 4rem);
	text-align: right;
}


.show .date i {
	font-size: clamp(2rem, 4vw, 5rem);
	line-height: 1;
	transition: color 0.25s ease;
	
}

/* Normal icon colours */
.show-news .date i {
	color: #d4a017;
}

.show-tour .date i {
	color: #003f28;
}

.show-feature .date i {
	color: #e53935;
}

.show.show-news-top {
	color: #e53935;
	column-gap: clamp(4px, 0.8vw, 12px);
}

.show.show-news-top .date,
.show.show-news-top .city,
.show.show-news-top .venue,
.show.show-news-top .arrow {
	color: #e53935;
}

.show.show-news-top:hover,
.show.show-news-top:focus-visible {
	background: #e53935;
	color: #000;
	padding-inline: clamp(12px, 2.5vw, 36px);
}

.show.show-news-top:hover .date,
.show.show-news-top:hover .city,
.show.show-news-top:hover .venue,
.show.show-news-top:hover .arrow,
.show.show-news-top:focus-visible .date,
.show.show-news-top:focus-visible .city,
.show.show-news-top:focus-visible .venue,
.show.show-news-top:focus-visible .arrow {
	color: #000;
}

.show.show-news-top:hover .date i,
.show.show-news-top:focus-visible .date i {
	color: #000;
}

/* On row hover, icon reverses like text */
.show:hover .date i,
.show:focus-visible .date i {
	color: var(--paper);
}











/* - NEWS - */	

.news-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

		.news-item {
			display: grid;
			grid-template-columns: 80px 1fr auto;
			align-items: center;
			gap: clamp(16px, 3vw, 32px);
			padding: clamp(18px, 3vw, 32px) 0;
			border-bottom: 1px solid var(--line);
			transition: background-color 0.25s ease, padding-inline 0.25s ease, color 0.25s ease;
			cursor: pointer;
		}


		.news-item a {
			display: contents;
			color: inherit;
			text-decoration: none;
		}

		.news-item:hover {
			background: var(--green);
			color: var(--paper);
			padding-inline: clamp(12px, 2.5vw, 36px);
		}

		.news-item.landing-news {
			background: rgba(126, 211, 33, 0.1);
			border-color: rgba(126, 211, 33, 0.25);
		}

		.news-item.landing-news .news-title {
			color: var(--green);
		}

		.news-item.landing-news .news-date {
			opacity: 0.85;
			color: #d4f9c8;
		}

		.news-item.landing-news .news-thumb-placeholder {
			background: rgba(126, 211, 33, 0.2);
		}

		.news-thumb {
			width: 80px;
			height: 80px;
			object-fit: cover;
			object-position: center top;
			display: block;
			filter: grayscale(1);
			flex-shrink: 0;
		}

		.news-thumb-placeholder {
			width: 80px;
			height: 80px;
			background: var(--line);
			flex-shrink: 0;
		}

		.news-title {
			font-family: 'Oswald', sans-serif;
			font-size: clamp(1rem, 2vw, 1.6rem);
			font-weight: 700;
			text-transform: uppercase;
			margin: 0 0 6px;
		}

		.news-date {
			font-size: 0.72rem;
			letter-spacing: 0.22em;
			text-transform: uppercase;
			font-weight: 600;
			opacity: 0.6;
		}

		.news-arrow {
			font-size: clamp(1.2rem, 2vw, 2rem);
		}

		.news-status {
			font-size: 0.85rem;
			letter-spacing: 0.15em;
			text-transform: uppercase;
			opacity: 0.5;
			padding: 40px 0;
		}

		.news-more {
			display: inline-flex;
			align-items: center;
			gap: 14px;
			border-bottom: 1px solid var(--green);
			padding-bottom: 8px;
			margin-top: clamp(30px, 5vw, 50px);
			font-size: 0.72rem;
			font-weight: 700;
			letter-spacing: 0.22em;
			text-transform: uppercase;
			color: var(--green);
			text-decoration: none;
		}

		@media (max-width: 520px) {
			.news-item {
				grid-template-columns: 64px 1fr auto;
			}
			.news-thumb,
			.news-thumb-placeholder {
				width: 64px;
				height: 64px;
			}
		}

/* ----- INDEX ----- */
#new-album .album-show {
	align-items: center;
	cursor: default;
}

#new-album .album-photo {
	width: 150px;
	min-width: 150px;
}

#new-album .album-art {
	display: block;
	width: 100%;
	max-width: 150px;
	height: auto;
	margin: 0;
}

#new-album .album-info .city {
	margin-bottom: 6px;
}

#new-album .album-info .venue {
	line-height: 1.45;
}

@media (max-width: 600px) {
	#new-album .album-photo {
		width: 110px;
		min-width: 110px;
	}

	#new-album .album-art {
		max-width: 110px;
	}
}



/* --- MERCH --- */

.merch-store-links {
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			gap: 0.75rem;
			margin-bottom: 2.5rem;
		}
		.store-btn {
			display: inline-block;
			font-family: 'Oswald', sans-serif;
			font-size: 0.85rem;
			font-weight: 600;
			letter-spacing: 0.1em;
			text-decoration: none;
			text-transform: uppercase;
			padding: 0.65rem 1.4rem;
			border: 2px solid currentColor;
			transition: filter 0.18s ease;
		}
		.store-btn:hover { filter: invert(1); }
		@media (max-width: 600px) {
			.merch-store-links { flex-direction: column; align-items: center; }
			.store-btn { width: 100%; max-width: 320px; text-align: center; }
		}
.merch-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1.5rem;
}

		.merch-item a { display: block; text-decoration: none; }

		.merch-item img {
			width: 100%;
			aspect-ratio: 1 / 1;
			object-fit: cover;
			display: block;
			margin-bottom: 0.6rem;
			transition: opacity 0.2s ease;
		}
	
		
.merch-item {
	transition: transform 0.25s ease;
}

.merch-item:hover {
	transform: translateY(-8px);
}


		.merch-label {
			display: block;
			font-family: 'Oswald', sans-serif;
			font-size: 0.85rem;
			font-weight: 500;
			letter-spacing: 0.06em;
			text-transform: uppercase;
			line-height: 1.4;
		}
		.merch-new { display: block; font-style: normal; color: gold; font-size: 0.75rem; }
		.merch-view-all { text-align: center; padding: 1rem 0 2rem; }
		.merch-view-all a {
			font-family: 'Oswald', sans-serif;
			font-size: 1.1rem;
			font-weight: 600;
			letter-spacing: 0.08em;
			text-decoration: none;
		}
		.merch-view-all a:hover { text-decoration: underline; }
		@media (max-width: 480px) {
			.merch-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
		}


	.merch-store-image {
	aspect-ratio: 1 / 1;
	background: #ffffff;
	border: 1px solid rgba(0, 63, 40, 0.15);

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 0.6rem;
	transition: all 0.2s ease;
}

.merch-store-image i {
	font-size: 8rem;
	color: var(--green);
}

.merch-item:hover .merch-store-image {
	background: var(--green);
}

.merch-item:hover .merch-store-image i {
	color: var(--paper);
}


/* ─── FOOTER ─── */

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--line);
	padding: 28px 0;
}

.socials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.socials a {
	color: var(--green);
	font-size: 1.35rem;
	text-decoration: none;
	transition:
		color 0.2s ease,
		transform 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
	color: var(--green);
	transform: translateY(-3px);
	opacity: 0.7;
}

.footer-text {
	font-size: 0.7rem;
	white-space: nowrap;
}




/* ════════════════════════════════════════
   TABLET  (≤ 850px)
════════════════════════════════════════ */

@media (max-width: 850px) {
	.site-header {
		display: block;
	}

	.hero-split {
		gap: clamp(8px, 2vw, 24px);
	}

	.show {
		grid-template-columns: clamp(120px, 32vw, 260px) 1fr 48px;
		gap: clamp(8px, 1.5vw, 24px);
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.socials {
		gap: 18px;
	}
}


/* ════════════════════════════════════════
   PHONE  (≤ 520px)
════════════════════════════════════════ */

@media (max-width: 520px) {
	.section-title {
		font-size: 1.5rem;
	}
	.subpage-hero {
		padding-top: 50px;
	}
	.hero-split {
		position: relative;
		display: block;
		padding: 8px 0 14px;	
	}

	.hero-left-wrap {
		display: block;
		width: 100%;
	}

	.hero-left {
		display: block;
		width: 100%;
		height: auto;
		max-width: 100%;
		margin: 0;
	}

	.hero-right {
		display: block;
		width: 60%;
		height: auto;
		max-width: none;
		margin: 22px auto 6px;
	}

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


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

	.show {
		grid-template-columns: 1fr auto;
		row-gap: 4px;
		padding: 30px 0;
	}

	.arrow {
		grid-column: 2;
		grid-row: 1 / 3;
		align-self: center;
		font-size: 1.6rem;
	}

	.section-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: clamp(20px, 5vw, 40px);
	}

	.socials {
		gap: 16px;
	}

	.socials a {
		font-size: 1.2rem;
	}
	.show.show-news-top .date {
		font-size: 3rem;
		line-height: 0.85;
		font-weight: 900;
	}
	.show .date {
	font-size: 1.75rem;
	color: #5f6d64;
	}
	.show .city {
		font-size: 1.9rem;
	}
	.show .venue {
		font-size: 0.7rem;
	}
	.show .arrow {
		display: none;
	}
	.show {
		grid-template-columns: 1fr;
	}
}