/*
Theme Name: UrbanTrackz V2 Enterprise
Theme URI: https://urbantrackz.fr/
Author: UrbanTrackz
Author URI: https://urbantrackz.fr/
Description: Theme WordPress premium, mobile-first et lecture seule pour UrbanTrackz.
Version: 2.0.0-sprint02
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: urbantrackz-v2-enterprise
Tags: news, entertainment, custom-logo, featured-images, custom-menu
*/

:root {
	--ut-black: #050607;
	--ut-black-soft: #0d1012;
	--ut-card: #15181b;
	--ut-card-hover: #1a1f23;
	--ut-text: #ffffff;
	--ut-muted: #a8adb3;
	--ut-green: #63e5b4;
	--ut-green-dark: #21b981;
	--ut-border: rgba(255, 255, 255, .08);
	--ut-radius: 12px;
	--ut-wrap: 1180px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; }
body {
	margin: 0;
	background: var(--ut-black);
	color: var(--ut-text);
	font-family: Inter, Arial, Helvetica, sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ut-green); }
img { max-width: 100%; height: auto; display: block; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}
.ut-wrap {
	width: min(100% - 32px, var(--ut-wrap));
	margin-inline: auto;
}
.ut-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(5, 6, 7, .94);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--ut-border);
}
.ut-header__inner {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.ut-brand {
	display: inline-flex;
	align-items: center;
	font-weight: 950;
	font-size: clamp(24px, 4vw, 38px);
	letter-spacing: 0;
	line-height: .9;
}
.ut-brand span { color: var(--ut-green); }
.ut-brand img,
.ut-brand .custom-logo {
	width: auto;
	max-width: 220px;
	max-height: 64px;
	object-fit: contain;
}
.ut-nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.ut-nav a {
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}
.ut-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--ut-border);
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	color: var(--ut-text);
	cursor: pointer;
}
.ut-menu-toggle i {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
	border-radius: 999px;
	transition: transform .2s ease, opacity .2s ease;
}
.ut-header.is-menu-open .ut-menu-toggle i:first-of-type {
	transform: translateY(3px) rotate(45deg);
}
.ut-header.is-menu-open .ut-menu-toggle i:last-of-type {
	transform: translateY(-3px) rotate(-45deg);
}
.ut-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.ut-social,
.ut-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.ut-social a,
.ut-share a {
	width: 38px;
	height: 38px;
	display: inline-grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .09);
	color: #ffffff;
	transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.ut-social a:hover,
.ut-share a:hover {
	background: rgba(99, 229, 180, .14);
	border-color: rgba(99, 229, 180, .55);
	color: var(--ut-green);
	transform: translateY(-1px);
}
.ut-social svg,
.ut-share svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}
.ut-share {
	margin: 18px 0 22px;
}
.ut-entry--entity .ut-share {
	margin-top: 0;
}
.ut-hero {
	padding: clamp(40px, 7vw, 86px) 0 34px;
}
.ut-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
	gap: 24px;
	align-items: stretch;
}
.ut-feature {
	min-height: 460px;
	position: relative;
	overflow: hidden;
	border-radius: var(--ut-radius);
	background: var(--ut-card);
	border: 1px solid var(--ut-border);
}
.ut-feature img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .62;
}
.ut-feature__body {
	position: absolute;
	inset: auto 0 0;
	padding: clamp(24px, 5vw, 52px);
	background: linear-gradient(0deg, rgba(5, 6, 7, .96), rgba(5, 6, 7, 0));
}
.ut-feature .ut-relation-strip {
	padding: 0;
	margin-top: 18px;
}
.ut-kicker {
	display: inline-flex;
	width: fit-content;
	padding: 6px 10px;
	background: var(--ut-green);
	color: #03100c;
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
}
.ut-button,
.ut-search-form button {
	display: inline-grid;
	place-items: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--ut-green);
	border-radius: 999px;
	background: var(--ut-green);
	color: #03100c;
	font: inherit;
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
	cursor: pointer;
}
.ut-button:hover,
.ut-search-form button:hover {
	background: transparent;
	color: var(--ut-green);
}
.ut-feature h1,
.ut-entry h1,
.ut-archive-title {
	margin: 14px 0;
	font-size: clamp(34px, 6vw, 72px);
	line-height: .95;
	letter-spacing: 0;
}
.ut-muted { color: var(--ut-muted); }
.ut-section {
	padding: 34px 0;
}
.ut-search-hero,
.ut-404,
.ut-archive-hero {
	padding: clamp(54px, 9vw, 110px) 0 34px;
	background:
		radial-gradient(circle at 18% 18%, rgba(99, 229, 180, .15), transparent 34%),
		linear-gradient(135deg, #050607, #111518);
	border-bottom: 1px solid var(--ut-border);
}
.ut-search-hero h1,
.ut-404 h1,
.ut-archive-hero h1 {
	max-width: 880px;
	margin: 16px 0 22px;
	font-size: clamp(40px, 8vw, 92px);
	line-height: .9;
	letter-spacing: 0;
}
.ut-404 p,
.ut-archive-hero p {
	max-width: 680px;
	color: var(--ut-muted);
	font-size: 18px;
}
.ut-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 760px;
	margin-top: 20px;
}
.ut-search-form input {
	flex: 1 1 280px;
	min-height: 44px;
	min-width: 0;
	padding: 0 16px;
	border: 1px solid var(--ut-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, .07);
	color: var(--ut-text);
	font: inherit;
}
.ut-search-form input::placeholder {
	color: var(--ut-muted);
}
.ut-404 .ut-button {
	margin-top: 18px;
}
.ut-search-group:first-child {
	padding-top: 42px;
}
.ut-home-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: start;
}
.ut-home-main {
	min-width: 0;
}
.ut-home-aside {
	position: sticky;
	top: 104px;
	min-width: 0;
}
.ut-home-section {
	padding-top: 24px;
}
.ut-section__head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 16px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--ut-border);
}
.ut-section__head h2 {
	margin: 0 0 12px;
	font-size: 18px;
	text-transform: uppercase;
}
.ut-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.ut-card,
.ut-side,
.ut-entry {
	background: var(--ut-card);
	border: 1px solid var(--ut-border);
	border-radius: var(--ut-radius);
}
.ut-card {
	overflow: hidden;
	transition: background .2s ease, transform .2s ease;
}
.ut-card:hover {
	background: var(--ut-card-hover);
	transform: translateY(-2px);
}
.ut-card__media {
	aspect-ratio: 16 / 10;
	background: #0b0d0f;
	overflow: hidden;
}
.ut-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ut-card__body { padding: 14px; }
.ut-card h3 {
	margin: 7px 0 4px;
	font-size: 17px;
	line-height: 1.2;
}
.ut-media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 120px;
	background:
		radial-gradient(circle at 28% 24%, rgba(99, 229, 180, .22), transparent 32%),
		linear-gradient(135deg, #0b0d0f, #15201d 58%, #090b0c);
}
.ut-relation-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 14px 14px;
}
.ut-entry > .ut-relation-strip {
	padding: 0;
	margin: 0 0 24px;
}
.ut-relation-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: 100%;
	min-height: 30px;
	padding: 6px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 850;
	line-height: 1.1;
	overflow: hidden;
}
.ut-relation-badge span {
	text-transform: uppercase;
	opacity: .72;
	white-space: nowrap;
}
.ut-relation-badge strong {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ut-relation-badge--artist {
	background: rgba(99, 229, 180, .2);
	color: var(--ut-green);
}
.ut-relation-badge--beatmaker {
	background: #ffffff;
	color: #050607;
}
.ut-relation-badge--director {
	background: #2a3035;
	color: #ffffff;
}
.ut-relation-badge--label {
	background: transparent;
	border: 1px solid rgba(99, 229, 180, .62);
	color: #ffffff;
}
.ut-entity-card {
	background: var(--ut-card);
	border: 1px solid var(--ut-border);
	border-radius: var(--ut-radius);
	transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.ut-entity-card:hover {
	background: var(--ut-card-hover);
	border-color: rgba(99, 229, 180, .32);
	transform: translateY(-2px);
}
.ut-entity-card a {
	display: grid;
	grid-template-columns: 68px minmax(0, 1fr) 28px;
	gap: 14px;
	align-items: center;
	padding: 14px;
}
.ut-entity-card__avatar {
	width: 68px;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	background: #0b0d0f;
	border: 1px solid rgba(255, 255, 255, .18);
}
.ut-entity-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ut-entity-card__body {
	min-width: 0;
	display: grid;
	gap: 2px;
}
.ut-entity-card__body strong {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ut-entity-card__body span {
	color: var(--ut-muted);
	font-size: 13px;
}
.ut-entity-card i {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	border: 1px solid rgba(99, 229, 180, .42);
	color: var(--ut-green);
	font-style: normal;
}
.ut-entity-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.ut-side { padding: 18px; }
.ut-side__item {
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--ut-border);
}
.ut-side__item:last-child { border-bottom: 0; }
.ut-side__thumb {
	aspect-ratio: 1;
	border-radius: 8px;
	overflow: hidden;
	background: #0b0d0f;
}
.ut-side__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ut-entity-rail {
	padding-top: 24px;
}
.ut-entity-rail__grid {
	display: grid;
	gap: 18px;
}
.ut-entity-rail__group {
	padding: 16px;
	background: var(--ut-card);
	border: 1px solid var(--ut-border);
	border-radius: var(--ut-radius);
}
.ut-entity-rail__group h3 {
	margin: 0 0 14px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0;
}
.ut-entity-rail__items {
	display: grid;
	gap: 10px;
}
.ut-entity-rail .ut-entity-card {
	background: rgba(255, 255, 255, .03);
}
.ut-entity-rail .ut-entity-card a {
	grid-template-columns: 54px minmax(0, 1fr) 28px;
	padding: 10px;
}
.ut-entity-rail .ut-entity-card__avatar {
	width: 54px;
}
.ut-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 28px;
	padding: 34px 0;
}
.ut-entry { padding: clamp(22px, 4vw, 48px); }
.ut-entry__media {
	margin: -48px -48px 30px;
	max-height: 560px;
	overflow: hidden;
}
.ut-entry--entity {
	padding-top: clamp(16px, 3vw, 28px);
}
.ut-entity-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	min-height: min(620px, 74vh);
	margin: calc(clamp(16px, 3vw, 28px) * -1) calc(clamp(22px, 4vw, 48px) * -1) 30px;
	overflow: hidden;
	border-radius: var(--ut-radius) var(--ut-radius) 0 0;
	background: #0b0d0f;
}
.ut-entity-hero__media {
	position: absolute;
	inset: 0;
}
.ut-entity-hero__media img,
.ut-entity-hero__media .ut-media-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ut-entity-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 6, 7, .96) 0%, rgba(5, 6, 7, .72) 42%, rgba(5, 6, 7, .2) 100%),
		linear-gradient(0deg, rgba(5, 6, 7, .92), rgba(5, 6, 7, 0) 55%);
}
.ut-entity-hero__body {
	position: relative;
	z-index: 1;
	align-self: end;
	max-width: 760px;
	padding: clamp(28px, 6vw, 62px);
}
.ut-entity-hero h1 {
	margin: 14px 0;
	font-size: clamp(44px, 8vw, 96px);
	line-height: .9;
	letter-spacing: 0;
}
.ut-entity-hero p {
	max-width: 620px;
	color: var(--ut-muted);
	font-size: 18px;
}
.ut-entity-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}
.ut-entity-stats span {
	min-width: 112px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .1);
	color: var(--ut-muted);
	font-size: 12px;
	text-transform: uppercase;
}
.ut-entity-stats strong {
	display: block;
	color: var(--ut-text);
	font-size: 20px;
	line-height: 1.1;
	text-transform: none;
}
.ut-entry__content :where(p, ul, ol, blockquote) {
	max-width: 760px;
}
.ut-entity-related {
	padding-bottom: 0;
}
.ut-entity-sidebar-modules {
	display: grid;
	gap: 18px;
	margin-bottom: 24px;
}
.ut-entity-side-module {
	padding-bottom: 18px;
	border-bottom: 1px solid var(--ut-border);
}
.ut-entity-side-module__items {
	display: grid;
	gap: 10px;
}
.ut-entity-side-module .ut-entity-card {
	background: rgba(255, 255, 255, .035);
}
.ut-entity-side-module .ut-entity-card a {
	grid-template-columns: 54px minmax(0, 1fr) 28px;
	padding: 10px;
}
.ut-entity-side-module .ut-entity-card__avatar {
	width: 54px;
}

/* Sprint 16: stronger header/search and content skin */
.ut-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
}
.ut-brand {
	align-self: center;
}
.ut-nav {
	min-width: 0;
}
.ut-nav > ul {
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: visible;
	scrollbar-width: thin;
}
.ut-nav > ul > li {
	flex: 0 0 auto;
}
.ut-nav .sub-menu {
	top: 100%;
}
.ut-search-toggle {
	flex: 0 0 auto;
}
.ut-header-search {
	box-shadow: 0 26px 42px rgba(0, 0, 0, .28);
}
.ut-header-search form {
	max-width: 1040px;
	margin-inline: auto;
}
.ut-header-search input {
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.ut-article-side-module {
	padding-bottom: 22px;
	margin-bottom: 22px;
	border-bottom: 1px solid var(--ut-border);
}
.ut-article-side-module:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}
.ut-article-side-module .ut-entity-card {
	margin-bottom: 10px;
	background: rgba(255, 255, 255, .035);
}
.ut-article-side-module .ut-entity-card a {
	grid-template-columns: 54px minmax(0, 1fr) 28px;
	padding: 10px;
}
.ut-article-side-module .ut-entity-card__avatar {
	width: 54px;
}
.ut-entry__content {
	color: #f3f6f6;
}
.ut-entry__content > :where(div, section, article) {
	max-width: 100%;
}
.ut-entry__content :where(h2, h3, h4) {
	color: var(--ut-text);
	line-height: 1.1;
}
.ut-entry__content :where(a) {
	color: var(--ut-green);
	font-weight: 850;
}
.ut-entry__content :where(ul, ol) {
	padding-left: 1.25rem;
}
.ut-entry__content :where(table) {
	width: 100%;
	border-collapse: collapse;
	background: rgba(255, 255, 255, .04);
	color: var(--ut-text);
}
.ut-entry__content :where(th, td) {
	padding: 12px;
	border-bottom: 1px solid var(--ut-border);
}
.ut-entry__content :where(.utcert-card, .ut-label-section, .ut-auto-related, [class*="cert"], [class*="relation"]) {
	border-radius: var(--ut-radius);
	background: rgba(255, 255, 255, .045) !important;
	color: var(--ut-text) !important;
	border: 1px solid var(--ut-border);
}
@media (max-width: 900px) {
	.ut-header__inner {
		grid-template-columns: minmax(0, 1fr) 44px;
	}
	.ut-nav > ul {
		overflow: visible;
	}
}
.ut-label-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 24px;
}
.ut-label-meta span {
	padding: 8px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .06);
	color: var(--ut-muted);
	font-size: 13px;
}
.ut-label-meta strong {
	color: var(--ut-text);
}
.navigation.pagination {
	margin-top: 28px;
}
.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.page-numbers {
	min-width: 36px;
	min-height: 36px;
	display: inline-grid;
	place-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--ut-card);
	border: 1px solid var(--ut-border);
}
.page-numbers.current {
	background: var(--ut-green);
	color: #03100c;
	border-color: var(--ut-green);
	font-weight: 950;
}
.ut-footer {
	margin-top: 48px;
	padding: clamp(48px, 8vw, 92px) 0 30px;
	background: #020303;
	border-top: 1px solid var(--ut-border);
	color: var(--ut-muted);
}
.ut-footer__grid {
	display: grid;
	grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(0, 1fr));
	gap: 26px;
	align-items: start;
}
.ut-footer__brand,
.ut-footer__block {
	min-width: 0;
	padding: 20px;
	border: 1px solid var(--ut-border);
	border-radius: var(--ut-radius);
	background: rgba(255, 255, 255, .035);
}
.ut-footer__brand {
	background:
		radial-gradient(circle at 18% 18%, rgba(99, 229, 180, .14), transparent 38%),
		rgba(255, 255, 255, .04);
}
.ut-footer .ut-brand {
	margin-bottom: 18px;
}
.ut-footer h2,
.ut-footer h3 {
	margin: 0 0 14px;
	color: var(--ut-text);
	text-transform: uppercase;
	letter-spacing: 0;
}
.ut-footer h2 {
	font-size: 15px;
}
.ut-footer h3 {
	font-size: 12px;
	color: var(--ut-green);
}
.ut-footer p {
	margin: 0 0 16px;
}
.ut-footer__links,
.ut-footer__mini {
	display: grid;
	gap: 9px;
}
.ut-footer__links a,
.ut-footer__mini a,
.ut-footer__block > a {
	color: var(--ut-muted);
	font-size: 14px;
}
.ut-footer__links a:hover,
.ut-footer__mini a:hover,
.ut-footer__block > a:hover {
	color: var(--ut-green);
}
.ut-footer__discover {
	display: grid;
	gap: 18px;
}
.ut-footer__newsletter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}
.ut-footer__newsletter input {
	flex: 1 1 170px;
	min-height: 42px;
	min-width: 0;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid var(--ut-border);
	background: rgba(255, 255, 255, .07);
	color: var(--ut-text);
}
.ut-footer__newsletter button {
	min-height: 42px;
	padding: 0 14px;
	border: 0;
	border-radius: 999px;
	background: var(--ut-green);
	color: #03100c;
	font-weight: 950;
	cursor: pointer;
}
.ut-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--ut-border);
	font-size: 13px;
}
@media (max-width: 900px) {
	.ut-header__inner {
		min-height: 72px;
		display: grid;
		grid-template-columns: minmax(0, 1fr) 44px;
		align-items: center;
		padding: 12px 0;
	}
	.ut-menu-toggle { display: block; }
	.ut-nav,
	.ut-header__actions {
		grid-column: 1 / -1;
		width: 100%;
		display: none;
	}
	.ut-header.is-menu-open .ut-nav,
	.ut-header.is-menu-open .ut-header__actions {
		display: block;
	}
	.ut-nav {
		padding: 14px 0 6px;
		border-top: 1px solid var(--ut-border);
	}
	.ut-nav ul {
		display: grid;
		gap: 0;
	}
	.ut-nav li {
		border-bottom: 1px solid var(--ut-border);
	}
	.ut-nav a {
		display: flex;
		min-height: 42px;
		align-items: center;
		font-size: 13px;
	}
	.ut-header__actions {
		padding-top: 14px;
	}
	.ut-social--header {
		justify-content: flex-start;
	}
	.ut-hero__grid,
	.ut-content-layout,
	.ut-home-layout { grid-template-columns: 1fr; }
	.ut-home-aside { position: static; }
	.ut-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ut-entity-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.ut-feature { min-height: 390px; }
	.ut-footer__grid { grid-template-columns: 1fr; }
	.ut-footer__bottom { flex-direction: column; }
}
@media (max-width: 560px) {
	.ut-wrap { width: min(100% - 22px, var(--ut-wrap)); }
	.ut-nav ul { gap: 12px; }
	.ut-grid { grid-template-columns: 1fr; }
	.ut-entity-archive-grid { grid-template-columns: 1fr; }
	.ut-side__item { grid-template-columns: 62px minmax(0, 1fr); }
	.ut-entry__media { margin: -22px -22px 22px; }
	.ut-entity-hero {
		min-height: 520px;
		margin: -22px -22px 24px;
	}
	.ut-entity-hero__body {
		padding: 24px;
	}
}

/* Sprint 12: submenu, large search, category modules */
.ut-nav li {
	position: relative;
}
.ut-nav .sub-menu {
	position: absolute;
	left: 0;
	top: calc(100% + 14px);
	z-index: 30;
	display: grid;
	min-width: 220px;
	gap: 0;
	padding: 10px;
	border: 1px solid var(--ut-border);
	border-radius: 12px;
	background: rgba(13, 16, 18, .98);
	box-shadow: 0 22px 44px rgba(0, 0, 0, .32);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.ut-nav li:hover > .sub-menu,
.ut-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.ut-nav .sub-menu a {
	display: block;
	padding: 10px;
	border-radius: 8px;
	color: var(--ut-muted);
}
.ut-nav .sub-menu a:hover {
	background: rgba(99, 229, 180, .12);
	color: var(--ut-green);
}
.ut-search-toggle {
	width: 38px;
	height: 38px;
	display: inline-grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
	color: var(--ut-text);
	cursor: pointer;
}
.ut-search-toggle:hover {
	border-color: rgba(99, 229, 180, .55);
	color: var(--ut-green);
}
.ut-search-toggle svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}
.ut-header-search {
	display: none;
	padding: 20px 0 24px;
	border-top: 1px solid var(--ut-border);
	background: rgba(5, 6, 7, .98);
}
.ut-header.is-search-open .ut-header-search {
	display: block;
}
.ut-header-search form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
}
.ut-header-search input {
	min-height: 64px;
	min-width: 0;
	padding: 0 22px;
	border: 1px solid rgba(99, 229, 180, .24);
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: var(--ut-text);
	font: inherit;
	font-size: clamp(18px, 3vw, 30px);
	font-weight: 800;
}
.ut-header-search button {
	min-height: 64px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: var(--ut-green);
	color: #03100c;
	font-weight: 950;
	text-transform: uppercase;
	cursor: pointer;
}
.ut-category-hero {
	padding: clamp(54px, 9vw, 110px) 0 34px;
	background:
		radial-gradient(circle at 18% 18%, rgba(99, 229, 180, .15), transparent 34%),
		linear-gradient(135deg, #050607, #111518);
	border-bottom: 1px solid var(--ut-border);
}
.ut-category-hero h1 {
	max-width: 880px;
	margin: 16px 0 22px;
	font-size: clamp(40px, 8vw, 92px);
	line-height: .9;
	letter-spacing: 0;
}
.ut-category-hero__description {
	max-width: 720px;
	color: var(--ut-muted);
	font-size: 18px;
}
.ut-category-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: start;
	padding-top: 38px;
}
.ut-category-main {
	min-width: 0;
}
.ut-category-aside {
	position: sticky;
	top: 104px;
	min-width: 0;
}
.ut-category-feature {
	margin-bottom: 34px;
	overflow: hidden;
	border: 1px solid var(--ut-border);
	border-radius: var(--ut-radius);
	background: var(--ut-card);
}
.ut-category-feature a {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
	color: inherit;
}
.ut-category-feature__media {
	min-height: 360px;
	background: #0b0d0f;
}
.ut-category-feature__media img,
.ut-category-feature__media .ut-media-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ut-category-feature__body {
	align-self: end;
	padding: clamp(22px, 4vw, 42px);
}
.ut-category-feature h2 {
	margin: 14px 0;
	font-size: clamp(30px, 5vw, 56px);
	line-height: 1;
	letter-spacing: 0;
}
.ut-category-feature p {
	color: var(--ut-muted);
}
.ut-category-feature .ut-relation-strip {
	padding: 0 22px 22px;
}
@media (max-width: 900px) {
	.ut-nav .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		margin: 0 0 10px 12px;
		padding: 0 0 0 12px;
		border: 0;
		border-left: 1px solid var(--ut-border);
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}
	.ut-nav .sub-menu a {
		padding: 8px 0;
		font-size: 12px;
	}
	.ut-header-search form,
	.ut-category-layout,
	.ut-category-feature a {
		grid-template-columns: 1fr;
	}
	.ut-category-aside {
		position: static;
	}
	.ut-category-feature__media {
		min-height: 260px;
	}
}


/* ==========================================================================
   UrbanTrackz Sprint16 Defender Safe — targeted mobile fix
   Purpose: keep Defender-safe version intact while fixing horizontal layouts
   on single posts and CPT entity pages only. Inspired by Focus/article mobile
   behavior: one readable column, no horizontal overflow.
   ========================================================================== */

@media (max-width: 900px) {
  body.single,
  body.single-post,
  body.single-ut_artiste,
  body.single-ut_beatmaker,
  body.single-ut_realisateur,
  body.single-ut_label {
    overflow-x: hidden;
  }

  body.single .site,
  body.single .site-content,
  body.single .content-area,
  body.single .site-main,
  body.single .entry-content,
  body.single .ut-container,
  body.single .ut-content,
  body.single .ut-wrapper,
  body.single .ut-shell,
  body.single .ut-main,
  body.single .ut-page,
  body.single .ut-layout,
  body.single .ut-grid,
  body.single .ut-single-layout,
  body.single .ut-article-layout,
  body.single .ut-content-sidebar,
  body.single .ut-main-sidebar-layout,
  body.single .ut-entity-layout,
  body.single .ut-profile-layout,
  body.single .ut-entity-page {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body.single .ut-layout,
  body.single .ut-grid,
  body.single .ut-single-layout,
  body.single .ut-article-layout,
  body.single .ut-content-sidebar,
  body.single .ut-main-sidebar-layout,
  body.single .ut-entity-layout,
  body.single .ut-profile-layout,
  body.single .ut-entity-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px;
  }

  body.single .ut-main,
  body.single .ut-content,
  body.single .ut-article-content,
  body.single .ut-single-main,
  body.single .ut-entity-main,
  body.single .ut-sidebar,
  body.single .ut-entity-sidebar,
  body.single aside,
  body.single article {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 0 1 auto !important;
  }

  body.single .ut-sidebar,
  body.single .ut-entity-sidebar,
  body.single aside {
    position: static !important;
    top: auto !important;
  }

  body.single .ut-card-grid,
  body.single .ut-post-grid,
  body.single .ut-related-grid,
  body.single .ut-entity-grid,
  body.single .ut-clips-grid,
  body.single .ut-latest-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 20px !important;
  }

  body.single img,
  body.single video,
  body.single iframe,
  body.single embed,
  body.single object {
    max-width: 100% !important;
  }

  body.single iframe,
  body.single embed,
  body.single object {
    width: 100% !important;
  }

  body.single pre,
  body.single code,
  body.single table {
    max-width: 100%;
    overflow-x: auto;
  }

  body.single .ut-hero,
  body.single .ut-single-hero,
  body.single .ut-entity-hero,
  body.single .entry-header {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.single .ut-hero-title,
  body.single .ut-single-hero h1,
  body.single .ut-entity-hero h1,
  body.single .entry-title {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 600px) {
  body.single .ut-container,
  body.single .ut-shell,
  body.single .ut-wrapper,
  body.single .site-content,
  body.single .content-area {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.single .ut-hero-title,
  body.single .ut-single-hero h1,
  body.single .ut-entity-hero h1,
  body.single .entry-title {
    font-size: clamp(2rem, 11vw, 3.2rem);
    line-height: .98;
  }
}

