/*!
Theme Name: GHETTO TRAXX Fresh
Theme URI: https://ghettotraxx.com/
Author: GHETTO TRAXX
Description: GHETTO TRAXX theme for ghettotraxx.com with original pages, Cookiebanner and Loveexpress integration.
Version: 1.0.17
Requires at least: 5.0
Tested up to: 6.6
Text Domain: ghettotraxx-fresh
*/

:root {
	--gt-bg: #050505;
	--gt-ink: #f3f3f3;
	--gt-muted: #b9b9b9;
	--gt-line: rgba(255, 255, 255, .78);
	--gt-line-soft: rgba(255, 255, 255, .18);
	--gt-acid: #d6ff1a;
	--gt-acid-rgb: 214, 255, 26;
	--gt-paper: #f4f4f0;
	--gt-black: #000;
	--gt-header-h: 82px;
	--gt-pixel: "Press Start 2P", ui-monospace, monospace;
	--gt-serif: "Rokkitt", Georgia, serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--gt-bg);
}

body {
	margin: 0;
	color: var(--gt-ink);
	background:
		linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 84px 84px,
		linear-gradient(0deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 84px 84px,
		#050505;
	font-family: var(--gt-serif);
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: -60%;
	pointer-events: none;
	z-index: 50;
	opacity: .17;
	background-image:
		radial-gradient(circle at 20% 20%, rgba(255,255,255,.55) 0 1px, transparent 1px),
		radial-gradient(circle at 80% 60%, rgba(255,255,255,.36) 0 1px, transparent 1px);
	background-size: 8px 8px, 13px 13px;
	animation: gt-grain 7s steps(8) infinite;
	mix-blend-mode: screen;
}

@keyframes gt-grain {
	0%, 100% { transform: translate3d(0, 0, 0); }
	10% { transform: translate3d(-4%, -7%, 0); }
	20% { transform: translate3d(-10%, 4%, 0); }
	30% { transform: translate3d(6%, -13%, 0); }
	40% { transform: translate3d(-3%, 12%, 0); }
	50% { transform: translate3d(-11%, 6%, 0); }
	60% { transform: translate3d(11%, 0, 0); }
	70% { transform: translate3d(0, 9%, 0); }
	80% { transform: translate3d(2%, 18%, 0); }
	90% { transform: translate3d(-8%, 5%, 0); }
}

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

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

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

::selection {
	background: var(--gt-acid);
	color: var(--gt-black);
}

.gt-outline {
	color: transparent;
	-webkit-text-stroke: 2px var(--gt-acid);
	text-stroke: 2px var(--gt-acid);
	text-shadow: 5px 5px 0 rgba(var(--gt-acid-rgb), .13);
}

.gt-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 40;
	min-height: var(--gt-header-h);
	display: grid;
	grid-template-columns: minmax(240px, 1.2fr) auto minmax(150px, .6fr);
	align-items: stretch;
	border-bottom: 1px solid var(--gt-line);
	background: rgba(5, 5, 5, .88);
	backdrop-filter: blur(12px);
}

.admin-bar .gt-header {
	top: 32px;
}

.gt-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 26px;
	border-right: 1px solid var(--gt-line-soft);
}

.gt-brand__logo {
	display: block;
	width: 52px;
	height: 52px;
	object-fit: contain;
	flex: 0 0 auto;
	filter: drop-shadow(0 0 8px rgba(255,255,255,.28));
	image-rendering: pixelated;
	animation: gt-spin-y 10s linear infinite;
}

.gt-mark {
	width: 48px;
	height: 48px;
	color: var(--gt-ink);
	flex: 0 0 auto;
	animation: gt-spin-y 10s linear infinite;
}

.gt-mark svg {
	width: 100%;
	height: 100%;
	display: block;
	fill: currentColor;
	shape-rendering: crispEdges;
}

@keyframes gt-spin-y {
	from { transform: rotateY(0); }
	to { transform: rotateY(360deg); }
}

.gt-brand__word {
	font-family: var(--gt-pixel);
	font-size: clamp(16px, 1.7vw, 24px);
	line-height: .95;
	letter-spacing: 0;
}

.gt-nav,
.gt-nav__list {
	display: flex;
	align-items: stretch;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gt-nav li {
	display: flex;
	margin: 0;
}

.gt-nav a {
	display: grid;
	place-items: center;
	min-width: 118px;
	padding: 0 20px;
	border-right: 1px solid var(--gt-line-soft);
	font-family: var(--gt-pixel);
	font-size: 11px;
	transition: background .18s ease, color .18s ease;
}

.gt-nav a:first-child,
.gt-nav li:first-child a {
	border-left: 1px solid var(--gt-line-soft);
}

.gt-nav a:hover,
.gt-nav a:focus-visible,
.gt-nav .current-menu-item > a {
	color: var(--gt-black);
	background: var(--gt-acid);
}

.gt-header-cta {
	display: grid;
	place-items: center;
	margin: 16px 26px;
	min-height: 48px;
	background: var(--gt-acid);
	color: var(--gt-black);
	font-family: var(--gt-pixel);
	font-size: 11px;
	box-shadow: 5px 5px 0 var(--gt-ink);
	transition: transform .18s ease, box-shadow .18s ease;
}

.gt-header-cta:hover,
.gt-header-cta:focus-visible {
	transform: translate(3px, 3px);
	box-shadow: 2px 2px 0 var(--gt-ink);
}

.gt-menu-toggle {
	display: none;
	color: var(--gt-ink);
	background: transparent;
	border: 0;
	width: 64px;
	height: 64px;
	margin-left: auto;
}

.gt-menu-toggle span,
.gt-menu-toggle::before,
.gt-menu-toggle::after {
	content: "";
	display: block;
	height: 2px;
	width: 28px;
	margin: 7px auto;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

body.gt-menu-open .gt-menu-toggle::before {
	transform: translateY(9px) rotate(45deg);
}

body.gt-menu-open .gt-menu-toggle::after {
	transform: translateY(-9px) rotate(-45deg);
}

body.gt-menu-open .gt-menu-toggle span {
	opacity: 0;
}

.gt-side-rail {
	position: fixed;
	top: var(--gt-header-h);
	bottom: 0;
	left: 0;
	z-index: 22;
	width: 56px;
	border-right: 1px solid var(--gt-line);
	background: rgba(5,5,5,.78);
	display: flex;
	align-items: center;
	justify-content: center;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-family: var(--gt-pixel);
	font-size: 10px;
	color: var(--gt-ink);
}

.admin-bar .gt-side-rail {
	top: calc(var(--gt-header-h) + 32px);
}

.gt-side-rail span {
	display: inline-flex;
	gap: 16px;
	white-space: nowrap;
}

.gt-main {
	position: relative;
	z-index: 1;
	padding-left: 56px;
	padding-top: var(--gt-header-h);
}

.gt-hero {
	min-height: calc(100vh - var(--gt-header-h));
	display: grid;
	grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.1fr);
	border-bottom: 1px solid var(--gt-line);
}

.gt-hero__copy {
	position: relative;
	display: flex;
	min-height: 650px;
	flex-direction: column;
	justify-content: center;
	padding: clamp(38px, 6vw, 80px) clamp(38px, 6vw, 80px) clamp(132px, 11vw, 170px);
	border-right: 1px solid var(--gt-line);
	background:
		linear-gradient(135deg, rgba(var(--gt-acid-rgb), .08), transparent 32%),
		radial-gradient(circle at 12% 20%, rgba(255,255,255,.12), transparent 0 1px, transparent 1px),
		#080808;
	background-size: auto, 12px 12px, auto;
}

.gt-hero h1 {
	margin: 0 0 22px;
	font-family: var(--gt-pixel);
	font-size: clamp(40px, 6vw, 86px);
	line-height: .95;
	text-transform: uppercase;
	letter-spacing: 0;
}

.gt-hero__sub {
	margin: 0 0 22px;
	font-family: var(--gt-pixel);
	font-size: clamp(12px, 2vw, 23px);
	line-height: 1.55;
	text-transform: uppercase;
}

.gt-acid-rule {
	width: 92px;
	height: 8px;
	background: var(--gt-acid);
	margin: 0 0 26px;
}

.gt-hero p {
	max-width: 560px;
	margin: 0 0 30px;
	font-size: clamp(20px, 2.1vw, 27px);
	line-height: 1.08;
}

.gt-action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: 26px;
}

.gt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 54px;
	padding: 0 22px;
	border: 1px solid var(--gt-ink);
	background: var(--gt-ink);
	color: var(--gt-black);
	font-family: var(--gt-pixel);
	font-size: 11px;
	transition: transform .18s ease, background .18s ease, color .18s ease;
}

.gt-btn:hover,
.gt-btn:focus-visible {
	transform: translateY(-3px);
	background: var(--gt-acid);
	color: var(--gt-black);
}

.gt-btn--ghost {
	background: transparent;
	color: var(--gt-ink);
}

.gt-btn--ghost:hover,
.gt-btn--ghost:focus-visible {
	background: var(--gt-ink);
	color: var(--gt-black);
}

.gt-hero__media {
	position: relative;
	min-height: 650px;
	overflow: hidden;
	background: #111;
	isolation: isolate;
	perspective: 920px;
	transform-style: preserve-3d;
}

.gt-hero__media img,
.gt-panel--image img,
.gt-catalog-image img,
.gt-wide-media img,
.gt-entry__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.28);
}

.gt-hero__media img {
	position: relative;
	z-index: 0;
	filter:
		grayscale(1)
		contrast(1.32)
		brightness(var(--gt-holo-brightness, .7))
		drop-shadow(0 0 var(--gt-head-pop-glow, 0px) rgba(var(--gt-acid-rgb), .42));
	transform:
		translate3d(var(--gt-holo-x, 0), var(--gt-holo-y, 0), var(--gt-head-pop-z, 0px))
		scale(var(--gt-head-pop-scale, 1.035))
		rotateX(var(--gt-holo-rx, 0deg))
		rotateY(var(--gt-holo-ry, 0deg));
	transform-origin: 52% 42%;
	will-change: transform, filter;
	transition: filter .18s ease;
}

.gt-hero__media::before {
	content: "";
	position: absolute;
	inset: -10%;
	z-index: 1;
	opacity: var(--gt-holo-opacity, .18);
	background:
		linear-gradient(112deg, transparent 0 22%, rgba(255,255,255,.2) 28%, rgba(77,245,255,.35) 33%, rgba(var(--gt-acid-rgb), .36) 39%, rgba(255,80,255,.22) 44%, transparent 58%),
		repeating-linear-gradient(0deg, rgba(255,255,255,.18) 0 1px, transparent 1px 7px);
	background-size: 190% 100%, 100% 8px;
	background-position: var(--gt-holo-shift, -45%) 0, 0 0;
	mix-blend-mode: screen;
	pointer-events: none;
	transform: translate3d(var(--gt-holo-layer-x, 0), 0, 0) skewY(-3deg);
	will-change: transform, opacity, background-position;
	animation: gt-holo-scan 5.6s linear infinite;
}

@keyframes gt-holo-scan {
	0% { background-position: -70% 0, 0 0; }
	50% { background-position: 120% 0, 0 2px; }
	100% { background-position: -70% 0, 0 0; }
}

.gt-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(90deg, rgba(5,5,5,.9) 0, rgba(5,5,5,.18) 32%, rgba(5,5,5,.08)),
		repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 8px);
	pointer-events: none;
	mix-blend-mode: multiply;
}

.gt-round-stamp {
	position: absolute;
	right: 8%;
	top: 24%;
	width: clamp(172px, 14vw, 224px);
	height: clamp(172px, 14vw, 224px);
	border: 2px solid var(--gt-acid);
	border-radius: 50%;
	color: var(--gt-acid);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-family: var(--gt-pixel);
	text-align: center;
	text-transform: uppercase;
	transform: rotate(15deg);
	z-index: 4;
	background: rgba(0,0,0,.46);
	backdrop-filter: blur(5px);
	box-shadow:
		0 0 0 1px rgba(var(--gt-acid-rgb), .24) inset,
		0 0 24px rgba(var(--gt-acid-rgb), .22);
}

.gt-round-stamp__text {
	display: grid;
	gap: 5px;
	max-width: 138px;
	font-size: clamp(8px, .72vw, 10px);
	line-height: 1.35;
}

.gt-bassbox {
	display: block;
	width: clamp(40px, 3.7vw, 56px);
	height: clamp(40px, 3.7vw, 56px);
	color: var(--gt-acid);
	filter: drop-shadow(0 0 8px rgba(var(--gt-acid-rgb), .42));
}

.gt-bassbox svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
	shape-rendering: crispEdges;
}

.gt-bassbox .gt-bassbox__cut {
	fill: var(--gt-black);
}

.gt-ticker {
	grid-column: 1 / -1;
	overflow: hidden;
	border-top: 1px solid var(--gt-line);
	background: var(--gt-acid);
	color: var(--gt-black);
	font-family: var(--gt-pixel);
	font-size: clamp(13px, 2vw, 20px);
	white-space: nowrap;
}

.gt-ticker__track {
	display: inline-flex;
	gap: 36px;
	padding: 16px 0;
	animation: gt-marquee 18s linear infinite;
}

@keyframes gt-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.gt-section-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr .65fr .8fr;
	border-bottom: 1px solid var(--gt-line);
}

.gt-panel {
	min-height: 270px;
	border-right: 1px solid var(--gt-line);
	padding: 24px;
	position: relative;
	overflow: hidden;
	background: #070707;
}

.gt-panel:last-child {
	border-right: 0;
}

.gt-panel--image {
	padding: 0;
	background: #111;
}

.gt-panel--light {
	background: var(--gt-paper);
	color: var(--gt-black);
}

.gt-panel--acid {
	background: var(--gt-acid);
	color: var(--gt-black);
}

.gt-kicker {
	display: inline-block;
	margin-bottom: 18px;
	padding: 4px 7px;
	background: var(--gt-ink);
	color: var(--gt-black);
	font-family: var(--gt-pixel);
	font-size: 9px;
}

.gt-panel--light .gt-kicker,
.gt-panel--acid .gt-kicker {
	background: var(--gt-black);
	color: var(--gt-ink);
}

.gt-panel h2,
.gt-panel h3,
.gt-wide-section h2,
.gt-loveexpress__copy h2,
.gt-list-panel h2,
.gt-entry__title,
.gt-entry h1,
.gt-entry h2,
.gt-plugin-note h2 {
	margin: 0;
	font-family: var(--gt-pixel);
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
}

.gt-panel h2 {
	font-size: clamp(24px, 2.8vw, 42px);
}

.gt-panel h3 {
	font-size: clamp(16px, 1.6vw, 24px);
}

.gt-panel p {
	margin: 18px 0 0;
	font-size: 21px;
	line-height: 1.08;
}

.gt-panel--music {
	background:
		linear-gradient(135deg, rgba(var(--gt-acid-rgb), .14), transparent 38%),
		#070707;
}

.gt-music-embeds {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.gt-music-picker {
	position: relative;
	z-index: 6;
}

.gt-music-toggle {
	appearance: none;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: center;
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 10px 12px;
	color: var(--gt-acid);
	background: var(--gt-black);
	border: 2px solid var(--gt-line);
	border-radius: 0;
	font-family: var(--gt-pixel);
	font-size: 9px;
	line-height: 1.5;
	text-align: left;
	text-transform: uppercase;
	box-shadow: 5px 5px 0 rgba(var(--gt-acid-rgb), .82);
	cursor: pointer;
}

.gt-music-toggle:hover,
.gt-music-toggle:focus-visible,
.gt-music-picker.is-open .gt-music-toggle {
	color: var(--gt-black);
	background: var(--gt-acid);
	border-color: var(--gt-ink);
}

.gt-music-toggle:focus-visible {
	outline: 3px solid var(--gt-acid);
	outline-offset: 3px;
}

.gt-music-toggle__mark {
	display: block;
	width: 11px;
	height: 11px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translate(-2px, -2px);
	transform-origin: center;
}

.gt-music-picker.is-open .gt-music-toggle__mark {
	transform: rotate(225deg) translate(-1px, -1px);
}

.gt-music-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	display: grid;
	gap: 4px;
	padding: 8px;
	background:
		linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 18px 18px,
		var(--gt-black);
	border: 2px solid var(--gt-ink);
	box-shadow: 7px 7px 0 rgba(var(--gt-acid-rgb), .88);
}

.gt-music-menu[hidden] {
	display: none;
}

.gt-music-option {
	appearance: none;
	width: 100%;
	margin: 0;
	padding: 12px 10px;
	color: var(--gt-ink);
	background: rgba(255, 255, 255, .04);
	border: 1px solid var(--gt-line-soft);
	border-radius: 0;
	font-family: var(--gt-pixel);
	font-size: 8px;
	line-height: 1.5;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
}

.gt-music-option:hover,
.gt-music-option:focus-visible,
.gt-music-option.is-active {
	color: var(--gt-black);
	background: var(--gt-acid);
	border-color: var(--gt-acid);
	outline: 0;
}

.gt-bandcamp-player {
	display: block;
	width: 100%;
	height: 120px;
	border: 2px solid var(--gt-line);
	background: var(--gt-black);
	box-shadow: 5px 5px 0 rgba(var(--gt-acid-rgb), .82);
}

.gt-bandcamp-fallback {
	display: inline-block;
	margin: -4px 0 6px;
	color: var(--gt-acid);
	font-family: var(--gt-pixel);
	font-size: 8px;
	line-height: 1.5;
	text-transform: uppercase;
}

.gt-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	font-family: var(--gt-pixel);
	font-size: 10px;
	color: var(--gt-acid);
	text-transform: uppercase;
}

.gt-panel--light .gt-link-arrow,
.gt-panel--acid .gt-link-arrow {
	color: var(--gt-black);
}

.gt-catalog {
	display: grid;
	grid-template-columns: .72fr 1fr .8fr;
	border-bottom: 1px solid var(--gt-line);
}

.gt-list-panel {
	padding: 28px;
	border-right: 1px solid var(--gt-line);
	background: #050505;
	min-height: 360px;
}

.gt-list-panel h2 {
	margin: 0 0 24px;
	color: var(--gt-acid);
	font-size: 18px;
}

.gt-artist-list,
.gt-event-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gt-artist-list li,
.gt-event-list li {
	border-top: 1px solid var(--gt-line-soft);
	padding: 11px 0;
	font-family: var(--gt-pixel);
	font-size: 10px;
	line-height: 1.55;
	text-transform: uppercase;
}

.gt-event-list time {
	display: block;
	color: var(--gt-acid);
}

.gt-catalog-image {
	position: relative;
	min-height: 360px;
	margin: 0;
	border-right: 1px solid var(--gt-line);
	background: #111;
	overflow: hidden;
}

.gt-catalog-image::after {
	content: "ALL KILLER / NO FILLER";
	position: absolute;
	left: 22px;
	bottom: 20px;
	font-family: var(--gt-pixel);
	font-size: 10px;
	color: var(--gt-acid);
	background: #000;
	padding: 8px 10px;
}

.gt-wide-section {
	display: grid;
	grid-template-columns: .96fr 1.04fr;
	border-bottom: 1px solid var(--gt-line);
	min-height: 560px;
	background: var(--gt-paper);
	color: var(--gt-black);
}

.gt-wide-copy {
	padding: clamp(34px, 6vw, 76px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid #000;
}

.gt-wide-section h2 {
	font-size: clamp(34px, 5.8vw, 86px);
	color: transparent;
	-webkit-text-stroke: 2px var(--gt-acid);
	text-stroke: 2px var(--gt-acid);
	text-shadow: 4px 4px 0 rgba(0,0,0,.16);
}

.gt-wide-copy p {
	margin: 24px 0 0;
	max-width: 660px;
	font-size: clamp(24px, 3.1vw, 42px);
	line-height: .98;
}

.gt-wide-media {
	min-height: 560px;
	margin: 0;
	background: #111;
	overflow: hidden;
}

.gt-wide-section--dark {
	background: #050505;
	color: var(--gt-ink);
}

.gt-wide-section--dark .gt-wide-copy {
	border-right: 0;
	border-left: 1px solid var(--gt-line);
}

.gt-wide-section--dark h2 {
	color: transparent;
	-webkit-text-stroke: 2px var(--gt-acid);
	text-stroke: 2px var(--gt-acid);
}

.gt-wide-section--dark .gt-btn {
	border-color: var(--gt-ink);
}

.gt-original-text {
	margin: 0 0 18px;
	font-size: clamp(21px, 2.2vw, 30px);
	line-height: 1.08;
}

.gt-news-strip {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	border-bottom: 1px solid var(--gt-line);
}

.gt-news-card {
	min-height: 260px;
	padding: 18px;
	border-right: 1px solid #000;
	background: var(--gt-acid);
	color: var(--gt-black);
}

.gt-news-card:last-child {
	border-right: 0;
}

.gt-news-card__media {
	display: block;
	aspect-ratio: 1 / 1;
	margin: 0 0 16px;
	overflow: hidden;
	background: #000;
	border: 1px solid #000;
}

.gt-news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.18);
}

.gt-news-card h3 {
	margin: 0;
	font-family: var(--gt-pixel);
	font-size: 10px;
	line-height: 1.5;
	text-transform: uppercase;
}

.gt-news-card a:hover {
	color: var(--gt-black);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.gt-content-shell--wide {
	width: min(1320px, calc(100% - 36px));
}

.gt-archive-intro {
	max-width: 760px;
	margin: 24px 0 0;
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1;
}

.gt-news-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 38px;
}

.gt-news-column {
	min-width: 0;
}

.gt-news-column h2 {
	margin: 0 0 22px;
	font-family: var(--gt-pixel);
	font-size: clamp(22px, 3vw, 44px);
	color: var(--gt-acid);
	text-transform: uppercase;
}

.gt-entry--compact {
	padding: 20px 0;
}

.gt-entry--compact .gt-entry__title {
	font-size: clamp(17px, 2vw, 30px);
}

.gt-entry--compact .gt-entry__media {
	aspect-ratio: 16 / 10;
	margin: 0 0 18px;
}

.gt-artist-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--gt-line);
	border-left: 1px solid var(--gt-line);
}

.gt-artist-card {
	min-height: 320px;
	border-right: 1px solid var(--gt-line);
	border-bottom: 1px solid var(--gt-line);
	background: #050505;
}

.gt-artist-card a {
	display: grid;
	min-height: 100%;
	grid-template-rows: minmax(240px, 1fr) auto;
	color: var(--gt-ink);
}

.gt-artist-card__media {
	display: block;
	min-height: 240px;
	background: #111;
	overflow: hidden;
}

.gt-artist-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1) contrast(1.18);
}

.gt-artist-card strong {
	display: block;
	padding: 16px;
	font-family: var(--gt-pixel);
	font-size: 11px;
	line-height: 1.5;
	text-transform: uppercase;
}

.gt-artist-card a:hover strong {
	color: var(--gt-acid);
}

.gt-artist-card--text a {
	grid-template-rows: 1fr;
	align-items: end;
}

.gt-original-page {
	border-top: 0;
}

.gt-original-page .gt-entry__content {
	font-size: clamp(25px, 3.6vw, 54px);
	line-height: .98;
}

.gt-privacy-note {
	margin-top: 34px;
	border: 1px solid var(--gt-line);
	background: rgba(214, 255, 26, 0.08);
}

.gt-privacy-note .gt-entry__content {
	font-size: clamp(22px, 2.5vw, 34px);
	line-height: 1.08;
}

.gt-privacy-note strong {
	color: var(--gt-acid);
}

.gt-original-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--gt-line);
	border-left: 1px solid var(--gt-line);
}

.gt-original-gallery img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-right: 1px solid var(--gt-line);
	border-bottom: 1px solid var(--gt-line);
	filter: grayscale(1) contrast(1.15);
}

.gt-social-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-bottom: 1px solid var(--gt-line);
	background: var(--gt-acid);
	color: #000;
}

.gt-social-strip--inline {
	margin-top: 42px;
	border: 1px solid #000;
}

.gt-social-strip a {
	display: grid;
	place-items: center;
	min-height: 88px;
	padding: 18px;
	border-right: 1px solid #000;
	font-family: var(--gt-pixel);
	font-size: 11px;
	text-align: center;
	text-transform: uppercase;
}

.gt-social-strip a:last-child {
	border-right: 0;
}

.gt-social-strip a:hover,
.gt-social-strip a:focus-visible {
	background: #000;
	color: var(--gt-acid);
}

.gt-entry__media--portrait {
	aspect-ratio: 4 / 5;
}

.gt-loveexpress__lineup {
	margin-top: 20px !important;
	font-size: clamp(18px, 2vw, 28px) !important;
	line-height: 1.12 !important;
}

.gt-loveexpress {
	display: grid;
	grid-template-columns: .7fr 1.3fr;
	border-bottom: 1px solid var(--gt-line);
	background: var(--gt-acid);
	color: var(--gt-black);
}

.gt-loveexpress__date {
	display: grid;
	place-items: center;
	min-height: 310px;
	border-right: 1px solid #000;
	padding: 28px;
	text-align: center;
	font-family: var(--gt-pixel);
}

.gt-loveexpress__date strong {
	display: block;
	font-size: clamp(48px, 8vw, 102px);
	line-height: 1;
}

.gt-loveexpress__date span {
	display: block;
	margin-top: 16px;
	font-size: 12px;
	line-height: 1.45;
}

.gt-loveexpress__copy {
	padding: clamp(28px, 5vw, 58px);
	align-self: center;
}

.gt-loveexpress__copy h1,
.gt-loveexpress__copy h2 {
	margin: 0 0 18px;
	font-size: clamp(24px, 3vw, 46px);
}

.gt-loveexpress__copy p {
	max-width: 880px;
	margin: 0;
	font-size: clamp(23px, 2.8vw, 38px);
	line-height: 1;
}

.gt-loveexpress .gt-btn,
.gt-loveexpress-list .gt-btn,
.gt-wide-section .gt-btn {
	border-color: #000;
}

.gt-loveexpress .gt-btn--ghost {
	color: #000;
}

.gt-loveexpress-list {
	padding: 0;
	background: #050505;
}

.gt-main--loveexpress {
	padding-top: var(--gt-header-h);
}

.gt-loveexpress--page {
	border-top: 1px solid var(--gt-line);
	min-height: min(760px, calc(100vh - var(--gt-header-h)));
}

.gt-loveexpress--page .gt-loveexpress__date {
	min-height: 420px;
}

.gt-loveexpress--page .gt-loveexpress__copy {
	display: grid;
	gap: 18px;
}

.gt-loveexpress--page .gt-loveexpress__copy h1 {
	max-width: 880px;
	line-height: .9;
	text-transform: uppercase;
}

.gt-loveexpress-list--page {
	padding: clamp(28px, 5vw, 72px) 0;
	border-top: 1px solid var(--gt-line);
}

.gt-loveexpress-list--direct {
	padding-top: clamp(14px, 3vw, 34px);
}

.gt-loveexpress-list--page .glle-loveexpress {
	margin-top: 0;
	margin-bottom: 0;
}

.gt-plugin-note {
	padding: clamp(36px, 6vw, 80px);
	border-bottom: 1px solid var(--gt-line);
}

.gt-plugin-note h2 {
	color: var(--gt-acid);
	font-size: clamp(24px, 4vw, 52px);
}

.gt-plugin-note p {
	max-width: 760px;
	font-size: clamp(22px, 3vw, 34px);
	line-height: 1.02;
}

.gt-main--content {
	min-height: 80vh;
	padding-bottom: 64px;
}

.gt-content-shell {
	width: min(980px, calc(100% - 36px));
	margin: 0 auto;
	padding: clamp(72px, 10vw, 150px) 0 40px;
}

.gt-archive-header {
	margin-bottom: 44px;
}

.gt-archive-header .gt-outline {
	margin: 0;
	font-family: var(--gt-pixel);
	font-size: clamp(34px, 7vw, 86px);
	line-height: .98;
	text-transform: uppercase;
}

.gt-entry-list {
	display: grid;
	gap: 34px;
}

.gt-entry {
	padding: 28px 0;
	border-top: 1px solid var(--gt-line);
}

.gt-entry__title {
	font-size: clamp(24px, 4vw, 52px);
	color: var(--gt-acid);
}

.gt-entry__title a:hover {
	color: var(--gt-acid);
}

.gt-entry__media {
	margin: 24px 0;
	background: #111;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.gt-entry__content {
	font-size: clamp(20px, 2.4vw, 29px);
	line-height: 1.12;
}

.gt-entry__content a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.gt-entry__content p {
	margin: 0 0 20px;
}

.gt-entry__content ul,
.gt-entry__content ol {
	margin: 24px 0;
	padding-left: 1.2em;
}

.gt-entry__content li {
	margin: 8px 0;
}

.gt-entry__content blockquote {
	margin: 36px 0;
	padding: 0 0 0 22px;
	border-left: 8px solid var(--gt-acid);
	font-size: 1.24em;
}

.gt-pagination {
	margin-top: 42px;
	font-family: var(--gt-pixel);
	font-size: 10px;
}

.gt-pagination a,
.gt-pagination span {
	display: inline-flex;
	margin: 0 7px 7px 0;
	padding: 10px 12px;
	border: 1px solid var(--gt-line);
}

.gt-pagination .current {
	background: var(--gt-acid);
	color: #000;
}

body.gt-comeback-open {
	overflow: hidden;
}

body.gt-comeback-open .gt-header,
body.gt-comeback-open .gt-main,
body.gt-comeback-open .gt-footer,
body.gt-comeback-open .gt-side-rail,
body.gt-comeback-open .gt-cookie-banner,
body.gt-comeback-open .gt-cookie-settings,
body.gt-comeback-open .gt-cookie-reopen {
	filter: blur(3px) brightness(.78) saturate(1.18);
	transition: filter .36s ease;
}

.gt-comeback[hidden] {
	display: none;
}

.gt-comeback {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: grid;
	place-items: center;
	padding: clamp(18px, 4vw, 48px);
	perspective: 1100px;
}

.gt-comeback__backdrop {
	appearance: none;
	position: absolute;
	inset: 0;
	margin: 0;
	padding: 0;
	border: 0;
	background:
		repeating-linear-gradient(0deg, rgba(var(--gt-acid-rgb), .08) 0 1px, transparent 1px 8px),
		rgba(0, 0, 0, .52);
	backdrop-filter: blur(5px) brightness(.72) saturate(1.35);
	cursor: pointer;
	opacity: 0;
	transition: opacity .35s ease;
}

.gt-comeback.is-active .gt-comeback__backdrop {
	opacity: 1;
}

.gt-comeback__panel {
	position: relative;
	z-index: 2;
	width: min(700px, calc(100vw - 34px));
	padding: clamp(26px, 5vw, 54px);
	color: var(--gt-ink);
	background:
		linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 24px 24px,
		linear-gradient(0deg, rgba(255,255,255,.07) 1px, transparent 1px) 0 0 / 24px 24px,
		radial-gradient(circle at 78% 12%, rgba(var(--gt-acid-rgb), .2), transparent 36%),
		var(--gt-black);
	border: 2px solid var(--gt-ink);
	box-shadow:
		14px 14px 0 var(--gt-acid),
		0 0 48px rgba(var(--gt-acid-rgb), .26);
	transform: translate3d(-120vw, 9vh, -260px) rotateZ(-12deg) rotateY(24deg) scale(.58);
	opacity: 0;
	overflow: hidden;
}

.gt-comeback__panel::before,
.gt-comeback__panel::after {
	content: "";
	position: absolute;
	pointer-events: none;
}

.gt-comeback__panel::before {
	inset: 0;
	background:
		linear-gradient(90deg, rgba(214,255,26,.18), transparent 19%, rgba(255,255,255,.12) 22%, transparent 26%),
		repeating-linear-gradient(0deg, transparent 0 7px, rgba(255,255,255,.12) 7px 8px);
	mix-blend-mode: screen;
	opacity: .26;
	animation: gt-comeback-scan 1.15s linear infinite;
}

.gt-comeback__panel::after {
	top: 18px;
	right: 18px;
	width: 54px;
	height: 54px;
	border: 2px solid var(--gt-acid);
	box-shadow: -8px 8px 0 rgba(var(--gt-acid-rgb), .22);
	transform: rotate(12deg);
}

.gt-comeback.is-active .gt-comeback__panel {
	animation: gt-comeback-in .92s cubic-bezier(.12, .86, .16, 1) forwards;
}

.gt-comeback.is-leaving .gt-comeback__panel {
	animation: gt-comeback-out .72s cubic-bezier(.74, 0, .78, .34) forwards;
}

.gt-comeback__close {
	appearance: none;
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	color: var(--gt-black);
	background: var(--gt-acid);
	border: 2px solid var(--gt-ink);
	border-radius: 0;
	font-family: var(--gt-pixel);
	font-size: 13px;
	cursor: pointer;
	box-shadow: 5px 5px 0 var(--gt-ink);
}

.gt-comeback__close:hover,
.gt-comeback__close:focus-visible {
	color: var(--gt-acid);
	background: var(--gt-black);
	outline: 3px solid var(--gt-acid);
	outline-offset: 3px;
}

.gt-comeback__eyebrow {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0 0 18px;
	padding: 6px 8px;
	color: var(--gt-black);
	background: var(--gt-acid);
	font-family: var(--gt-pixel);
	font-size: clamp(9px, 1.3vw, 12px);
	line-height: 1.4;
	text-transform: uppercase;
}

.gt-comeback h2 {
	position: relative;
	z-index: 1;
	max-width: 620px;
	margin: 0;
	color: transparent;
	-webkit-text-stroke: 1.4px var(--gt-ink);
	text-stroke: 1.4px var(--gt-ink);
	font-family: var(--gt-pixel);
	font-size: clamp(31px, 7vw, 76px);
	line-height: .98;
	text-transform: uppercase;
}

.gt-comeback__panel > p:not(.gt-comeback__eyebrow) {
	position: relative;
	z-index: 1;
	max-width: 620px;
	margin: 24px 0 0;
	font-size: clamp(26px, 4.4vw, 44px);
	font-weight: 700;
	line-height: .96;
}

.gt-comeback__meter {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 7px;
	width: min(360px, 100%);
	height: 54px;
	margin-top: 28px;
	align-items: end;
}

.gt-comeback__meter span {
	display: block;
	min-height: 9px;
	background: var(--gt-acid);
	box-shadow: 0 0 14px rgba(var(--gt-acid-rgb), .38);
	animation: gt-comeback-meter .72s steps(4) infinite;
}

.gt-comeback__meter span:nth-child(2) { animation-delay: -.12s; }
.gt-comeback__meter span:nth-child(3) { animation-delay: -.28s; }
.gt-comeback__meter span:nth-child(4) { animation-delay: -.05s; }
.gt-comeback__meter span:nth-child(5) { animation-delay: -.34s; }
.gt-comeback__meter span:nth-child(6) { animation-delay: -.18s; }

.gt-comeback__actions {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.gt-comeback__sound,
.gt-comeback__link {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 15px;
	color: var(--gt-black);
	background: var(--gt-acid);
	border: 2px solid var(--gt-ink);
	border-radius: 0;
	font-family: var(--gt-pixel);
	font-size: 9px;
	line-height: 1.5;
	text-transform: uppercase;
	box-shadow: 5px 5px 0 var(--gt-ink);
	cursor: pointer;
}

.gt-comeback__link {
	color: var(--gt-ink);
	background: var(--gt-black);
}

.gt-comeback__sound:hover,
.gt-comeback__sound:focus-visible,
.gt-comeback__link:hover,
.gt-comeback__link:focus-visible {
	color: var(--gt-acid);
	background: var(--gt-black);
	outline: 3px solid var(--gt-acid);
	outline-offset: 3px;
}

.gt-comeback__link:hover,
.gt-comeback__link:focus-visible {
	color: var(--gt-black);
	background: var(--gt-ink);
}

.gt-comeback__audio {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

@keyframes gt-comeback-in {
	0% {
		opacity: 0;
		filter: blur(14px) saturate(1.7);
		transform: translate3d(-120vw, 9vh, -260px) rotateZ(-12deg) rotateY(24deg) scale(.58);
	}
	64% {
		opacity: 1;
		filter: blur(1px) saturate(1.25);
		transform: translate3d(3vw, -1vh, 0) rotateZ(2deg) rotateY(-4deg) scale(1.04);
	}
	100% {
		opacity: 1;
		filter: blur(0) saturate(1);
		transform: translate3d(0, 0, 0) rotateZ(0) rotateY(0) scale(1);
	}
}

@keyframes gt-comeback-out {
	0% {
		opacity: 1;
		filter: blur(0) saturate(1);
		transform: translate3d(0, 0, 0) rotateZ(0) rotateY(0) scale(1);
	}
	100% {
		opacity: 0;
		filter: blur(16px) saturate(1.8);
		transform: translate3d(96vw, -16vh, -240px) rotateZ(14deg) rotateY(-28deg) scale(.52);
	}
}

@keyframes gt-comeback-scan {
	from { transform: translateY(-18px); }
	to { transform: translateY(18px); }
}

@keyframes gt-comeback-meter {
	0%, 100% { height: 17%; }
	25% { height: 86%; }
	50% { height: 44%; }
	75% { height: 100%; }
}

.gt-footer {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: end;
	padding: 36px 40px 136px 96px;
	background: #050505;
	color: var(--gt-ink);
}

.gt-footer__word {
	margin: 0;
	font-family: var(--gt-pixel);
	font-size: clamp(32px, 7vw, 92px);
	line-height: .95;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--gt-ink);
	text-stroke: 1.5px var(--gt-ink);
}

.gt-footer__links,
.gt-footer__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: var(--gt-pixel);
	font-size: 10px;
}

.gt-footer__links li {
	margin: 0;
}

.gt-footer__links a:hover {
	color: var(--gt-acid);
}

.gt-cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	display: grid;
	grid-template-columns: auto minmax(260px, 1fr) auto;
	gap: 22px;
	align-items: center;
	padding: 18px 34px;
	border-top: 1px solid var(--gt-line);
	background: rgba(0,0,0,.94);
	color: var(--gt-ink);
	box-shadow: 0 -14px 40px rgba(0,0,0,.45);
}

.gt-cookie-banner.is-hidden {
	display: none;
}

.gt-cookie-copy strong {
	display: block;
	margin-bottom: 8px;
	font-family: var(--gt-pixel);
	font-size: 15px;
	text-transform: uppercase;
}

.gt-cookie-copy p {
	margin: 0;
	max-width: 760px;
	color: var(--gt-muted);
	font-family: var(--gt-pixel);
	font-size: 9px;
	line-height: 1.55;
	text-transform: uppercase;
}

.gt-cookie-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.gt-cookie-actions .gt-btn {
	min-height: 46px;
	font-size: 9px;
	white-space: nowrap;
}

.gt-cookie-settings {
	position: fixed;
	inset: auto 22px 112px auto;
	z-index: 62;
	width: min(440px, calc(100vw - 44px));
	background: var(--gt-paper);
	color: var(--gt-black);
	border: 1px solid #000;
	box-shadow: 10px 10px 0 var(--gt-acid);
	padding: 22px;
	transform: translateY(16px);
	opacity: 0;
	pointer-events: none;
	transition: transform .2s ease, opacity .2s ease;
}

.gt-cookie-settings.is-open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.gt-cookie-settings h2 {
	margin: 0 0 14px;
	font-family: var(--gt-pixel);
	font-size: 14px;
	line-height: 1.4;
	text-transform: uppercase;
}

.gt-cookie-settings p {
	margin: 0 0 18px;
	font-size: 19px;
	line-height: 1.1;
}

.gt-cookie-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-top: 1px solid #000;
}

.gt-cookie-row span {
	font-family: var(--gt-pixel);
	font-size: 10px;
	text-transform: uppercase;
}

.gt-switch {
	position: relative;
	width: 58px;
	height: 28px;
	flex: 0 0 auto;
}

.gt-switch input {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.gt-switch span {
	position: absolute;
	inset: 0;
	border: 1px solid #000;
	background: #fff;
	cursor: pointer;
}

.gt-switch span::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	left: 3px;
	top: 3px;
	background: #000;
	transition: transform .18s ease, background .18s ease;
}

.gt-switch input:checked + span {
	background: var(--gt-acid);
}

.gt-switch input:checked + span::before {
	transform: translateX(30px);
}

.gt-settings-actions {
	display: flex;
	gap: 10px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.gt-settings-actions .gt-btn {
	min-height: 44px;
	font-size: 9px;
	border-color: #000;
}

.gt-settings-actions .gt-btn--ghost {
	color: #000;
	background: transparent;
}

.gt-cookie-reopen {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 61;
	display: none;
	min-height: 42px;
	padding: 0 14px;
	border: 1px solid var(--gt-ink);
	background: #000;
	color: var(--gt-ink);
	box-shadow: 5px 5px 0 var(--gt-acid);
	font-family: var(--gt-pixel);
	font-size: 8px;
	text-transform: uppercase;
}

.gt-cookie-reopen.is-visible {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.gt-cookie-reopen:hover,
.gt-cookie-reopen:focus-visible {
	background: var(--gt-acid);
	color: #000;
	box-shadow: 5px 5px 0 var(--gt-ink);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}

	.gt-comeback.is-active .gt-comeback__panel,
	.gt-comeback.is-leaving .gt-comeback__panel {
		opacity: 1;
		filter: none;
		transform: none;
	}
}

@media (max-width: 1180px) {
	.gt-header {
		grid-template-columns: 1fr auto;
	}

	.gt-nav,
	.gt-nav__list {
		position: fixed;
		inset: var(--gt-header-h) 0 auto 0;
		display: none;
		flex-direction: column;
		background: rgba(5,5,5,.97);
		border-bottom: 1px solid var(--gt-line);
	}

	body.gt-menu-open .gt-nav,
	body.gt-menu-open .gt-nav__list {
		display: flex;
	}

	.gt-nav li {
		display: block;
	}

	.gt-nav a {
		justify-content: start;
		min-height: 58px;
		border: 0;
		border-top: 1px solid var(--gt-line-soft);
	}

	.gt-header-cta {
		display: none;
	}

	.gt-menu-toggle {
		display: block;
	}

	.gt-hero,
	.gt-wide-section,
	.gt-loveexpress {
		grid-template-columns: 1fr;
	}

	.gt-hero__copy,
	.gt-wide-copy,
	.gt-loveexpress__date {
		border-right: 0;
		border-bottom: 1px solid var(--gt-line);
	}

	.gt-hero__media,
	.gt-hero__copy {
		min-height: 520px;
	}

	.gt-section-grid,
	.gt-catalog {
		grid-template-columns: 1fr 1fr;
	}

	.gt-news-strip,
	.gt-artist-grid,
	.gt-original-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gt-news-columns {
		grid-template-columns: 1fr;
	}

	.gt-social-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gt-panel,
	.gt-list-panel,
	.gt-catalog-image {
		border-bottom: 1px solid var(--gt-line);
	}

	.gt-cookie-banner {
		grid-template-columns: auto 1fr;
	}

	.gt-cookie-actions {
		grid-column: 1 / -1;
		justify-content: stretch;
	}

	.gt-cookie-actions .gt-btn {
		flex: 1 1 180px;
	}
}

@media (max-width: 782px) {
	.admin-bar .gt-header {
		top: 46px;
	}
}

@media (max-width: 760px) {
	:root {
		--gt-header-h: 74px;
	}

	.gt-header {
		min-height: var(--gt-header-h);
	}

	.gt-brand {
		padding: 12px 16px;
	}

	.gt-brand__word {
		font-size: 15px;
	}

	.gt-brand__logo {
		width: 44px;
		height: 44px;
	}

	.gt-mark {
		width: 42px;
		height: 42px;
	}

	.gt-side-rail {
		display: none;
	}

	.gt-main {
		padding-left: 0;
	}

	.gt-hero {
		min-height: auto;
	}

	.gt-hero__copy {
		min-height: 560px;
		padding: 28px 18px 120px;
	}

	.gt-hero__media {
		min-height: 360px;
	}

	.gt-hero h1 {
		font-size: clamp(31px, 10vw, 43px);
	}

	.gt-hero__sub {
		font-size: clamp(10px, 4vw, 15px);
	}

	.gt-hero p {
		font-size: 21px;
	}

	.gt-round-stamp {
		width: 132px;
		height: 132px;
		right: 18px;
		top: 26px;
		gap: 8px;
	}

	.gt-round-stamp__text {
		max-width: 102px;
		font-size: 7px;
		line-height: 1.35;
	}

	.gt-bassbox {
		width: 34px;
		height: 34px;
	}

	.gt-section-grid,
	.gt-catalog {
		grid-template-columns: 1fr;
	}

	.gt-music-embeds {
		gap: 14px;
	}

	.gt-music-toggle {
		font-size: 8px;
		box-shadow: 4px 4px 0 rgba(var(--gt-acid-rgb), .82);
	}

	.gt-music-menu {
		box-shadow: 4px 4px 0 rgba(var(--gt-acid-rgb), .88);
	}

	.gt-music-option {
		font-size: 7px;
	}

	.gt-bandcamp-player {
		height: 112px;
		box-shadow: 4px 4px 0 rgba(var(--gt-acid-rgb), .82);
	}

	.gt-comeback {
		align-items: end;
		padding: 16px;
	}

	.gt-comeback__panel {
		width: 100%;
		max-height: calc(100vh - 32px);
		padding: 24px 18px;
		overflow-y: auto;
		box-shadow:
			7px 7px 0 var(--gt-acid),
			0 0 36px rgba(var(--gt-acid-rgb), .22);
	}

	.gt-comeback__panel::after {
		width: 34px;
		height: 34px;
		top: 15px;
		right: 72px;
	}

	.gt-comeback__close {
		width: 38px;
		height: 38px;
		top: 12px;
		right: 12px;
		box-shadow: 4px 4px 0 var(--gt-ink);
	}

	.gt-comeback h2 {
		font-size: clamp(27px, 10vw, 41px);
	}

	.gt-comeback__panel > p:not(.gt-comeback__eyebrow) {
		font-size: clamp(24px, 8vw, 33px);
	}

	.gt-comeback__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.gt-comeback__sound,
	.gt-comeback__link {
		width: 100%;
	}

	.gt-news-strip,
	.gt-artist-grid,
	.gt-original-gallery,
	.gt-social-strip {
		grid-template-columns: 1fr;
	}

	.gt-news-strip {
		gap: 14px;
		padding: 16px 0;
		background: #050505;
		border-top: 1px solid var(--gt-line);
	}

	.gt-news-card {
		min-height: auto;
		margin: 0 16px;
		padding: 18px;
		border: 1px solid var(--gt-ink);
		background: var(--gt-acid);
	}

	.gt-news-card:last-child {
		border-right: 1px solid var(--gt-ink);
	}

	.gt-news-card h3 {
		font-size: 12px;
		line-height: 1.65;
	}

	.gt-panel,
	.gt-list-panel,
	.gt-catalog-image,
	.gt-wide-media,
	.gt-loveexpress__date {
		min-height: 300px;
	}

	.gt-wide-copy,
	.gt-loveexpress__copy {
		padding: 30px 18px;
	}

	.gt-content-shell {
		width: calc(100% - 32px);
		padding-top: 58px;
	}

	.gt-footer {
		grid-template-columns: 1fr;
		padding: 34px 18px 188px;
	}

	.gt-footer__links,
	.gt-footer__list {
		justify-content: flex-start;
	}

	.gt-cookie-banner {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.gt-cookie-banner .gt-mark {
		display: none;
	}

	.gt-cookie-actions {
		flex-direction: column;
	}

	.gt-cookie-actions .gt-btn {
		width: 100%;
		flex: 0 0 auto;
	}

	.gt-cookie-settings {
		inset: auto 14px 168px 14px;
		width: auto;
	}

	.gt-cookie-reopen {
		right: 14px;
		bottom: 14px;
		left: 14px;
	}
}
