/* ==========================================================================
   USA Today News — theme stylesheet
   ========================================================================== */

:root {
	--ut-navy: #061a3a;
	--ut-navy-soft: #0d2a56;
	--ut-blue: #0b3d91;
	--ut-blue-bright: #1c5cc4;
	--ut-red: #d2232a;
	--ut-red-dark: #a8181d;
	--ut-ink: #12161c;
	--ut-gray: #5b6470;
	--ut-gray-light: #8a92a0;
	--ut-border: #e3e6ea;
	--ut-bg: #ffffff;
	--ut-bg-soft: #f4f6f8;

	--ut-font-headline: 'Oswald', 'Arial Narrow', Impact, sans-serif;
	--ut-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--ut-font-serif: 'Source Serif 4', Georgia, serif;

	--ut-container: 1340px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }

body {
	margin: 0;
	overflow-x: hidden;
	max-width: 100%;
	font-family: var(--ut-font-body);
	color: var(--ut-ink);
	background: var(--ut-bg);
	line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

button { font: inherit; cursor: pointer; }

.ut-media-fallback {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 160px;
	background: linear-gradient(135deg, var(--ut-bg-soft), var(--ut-border));
}

/* ---------- Top utility bar ---------- */

.ut-topbar {
	background: var(--ut-navy);
	color: #cfd8ec;
	font-size: 0.78rem;
}
.ut-topbar-inner {
	max-width: var(--ut-container);
	margin: 0 auto;
	padding: 0.4rem 1.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}
.ut-topbar-links a {
	margin-left: 1rem;
	color: #cfd8ec;
	opacity: 0.9;
}
.ut-topbar-links a:hover { opacity: 1; text-decoration: underline; }
.ut-topbar-links .ut-subscribe {
	background: var(--ut-red);
	color: #fff;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	opacity: 1;
	font-weight: 600;
	letter-spacing: 0.02em;
}

/* ---------- Masthead ---------- */

.ut-masthead {
	position: relative;
	background: var(--ut-bg);
	border-bottom: 5px solid var(--ut-red);
	padding: 1rem 1.25rem;
}
.ut-masthead-inner { max-width: var(--ut-container); margin: 0 auto; display: flex; align-items: center; gap: 1rem; }
.ut-logo,
.ut-logo-wrap a {
	font-family: var(--ut-font-headline);
	font-weight: 700;
	font-style: italic;
	font-size: clamp(2rem, 6vw, 3.2rem);
	color: var(--ut-navy);
	letter-spacing: 0.01em;
	text-transform: uppercase;
	line-height: 1;
}
.ut-logo, .ut-logo-wrap { flex: 1; text-align: center; }

/* ---------- Primary nav strip ---------- */

.ut-nav {
	background: var(--ut-blue);
	position: sticky;
	top: 0;
	z-index: 40;
	box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.ut-nav-inner {
	max-width: var(--ut-container);
	margin: 0 auto;
	padding: 0 1.25rem;
	display: flex;
	align-items: center;
}
.ut-nav-menu-wrap {
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.ut-nav-menu-wrap::-webkit-scrollbar { display: none; }
.ut-menu {
	display: flex;
	flex-wrap: nowrap;
	min-width: 0;
	width: max-content;
}
.ut-menu > li { flex: 0 0 auto; }
.ut-menu li a {
	display: block;
	white-space: nowrap;
	padding: 0.85rem 0.9rem;
	color: #fff;
	font-family: var(--ut-font-headline);
	font-weight: 600;
	font-size: 0.92rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border-bottom: 3px solid transparent;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.ut-menu li a:hover,
.ut-menu li.current-menu-item a {
	border-color: var(--ut-red);
	background: rgba(255,255,255,0.06);
}

.ut-nav-toggle {
	display: flex;
	order: -1;
	flex-shrink: 0;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: 0;
	padding: 0.75rem 0.25rem;
	align-items: center;
}
.ut-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ut-navy);
}

.ut-mobile-menu-wrap {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--ut-blue);
	box-shadow: 0 12px 20px rgba(0,0,0,0.25);
	max-height: 70vh;
	overflow-y: auto;
	z-index: 50;
	padding: 0.5rem 1.25rem 0.75rem;
}
.ut-mobile-menu-wrap.is-open { display: block; }
.ut-mobile-menu { display: flex; flex-direction: column; }
.ut-mobile-menu li a {
	display: block;
	padding: 0.7rem 0;
	color: #fff;
	font-family: var(--ut-font-headline);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255,255,255,0.2);
}
.ut-mobile-menu li:last-child a { border-bottom: 0; }
.ut-mobile-menu li a:hover { color: var(--ut-red); }

.ut-search {
	display: flex;
	align-items: center;
	background: var(--ut-bg-soft);
	border: 1px solid var(--ut-border);
	border-radius: 999px;
	padding: 0.3rem 0.4rem 0.3rem 0.9rem;
	flex-shrink: 0;
}
.ut-search input {
	background: none;
	border: 0;
	outline: none;
	color: var(--ut-ink);
	width: 130px;
	font-size: 0.85rem;
}
.ut-search input::placeholder { color: var(--ut-gray); }
.ut-search button {
	background: none;
	border: 0;
	color: var(--ut-ink);
	display: flex;
	align-items: center;
	padding: 0.3rem;
}

/* ---------- Breaking news bar ---------- */

.ut-breaking {
	background: var(--ut-red);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.55rem 1.25rem;
	font-size: 0.9rem;
}
.ut-breaking-label {
	font-family: var(--ut-font-headline);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: #fff;
	color: var(--ut-red);
	padding: 0.1rem 0.5rem;
	border-radius: 3px;
	flex-shrink: 0;
}
.ut-breaking a { text-decoration: underline; text-underline-offset: 2px; }
.ut-breaking a:hover { opacity: 0.85; }

/* ---------- Shared layout ---------- */

.ut-main { max-width: var(--ut-container); margin: 0 auto; padding: 1.75rem 1.25rem 3rem; }

.ut-eyebrow {
	display: inline-block;
	font-family: var(--ut-font-headline);
	font-weight: 700;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ut-red);
	margin-bottom: 0.35rem;
}
.ut-eyebrow:hover { text-decoration: underline; }

.ut-dek {
	font-family: var(--ut-font-serif);
	font-style: italic;
	color: var(--ut-gray);
	font-size: 1.05rem;
	line-height: 1.5;
	margin: 0.4rem 0 0.6rem;
}
.ut-dek-small { font-size: 0.92rem; margin: 0.3rem 0 0.5rem; }
.ut-dek-single { font-size: 1.2rem; margin: 0.6rem 0 1rem; }

.ut-meta {
	font-size: 0.8rem;
	color: var(--ut-gray);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.ut-dot { margin: 0 0.4rem; color: var(--ut-gray-light); }

.ut-section-heading {
	border-bottom: 3px solid var(--ut-navy);
	margin-bottom: 1.25rem;
	padding-bottom: 0.4rem;
}
.ut-section-heading h2 {
	font-family: var(--ut-font-headline);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 1.3rem;
	color: var(--ut-navy);
	margin: 0;
	display: inline-block;
	border-bottom: 3px solid var(--ut-red);
	padding-bottom: 0.4rem;
	margin-bottom: -0.44rem;
}

/* ---------- Hero section ---------- */

.ut-hero-section { margin-bottom: 2.5rem; }
.ut-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
}
.ut-hero-media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 2px;
	background: var(--ut-bg-soft);
}
.ut-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.ut-hero-title {
	font-family: var(--ut-font-headline);
	font-size: clamp(1.6rem, 3.2vw, 2.5rem);
	line-height: 1.1;
	margin: 0;
	color: var(--ut-ink);
}
.ut-hero-title a:hover { text-decoration: underline; }
.ut-hero-body { padding-top: 1rem; }

.ut-hero-side {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}
.ut-small { display: flex; gap: 0.85rem; }
.ut-small-media {
	flex: 0 0 110px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 2px;
	background: var(--ut-bg-soft);
}
.ut-small-media img { width: 100%; height: 100%; object-fit: cover; }
.ut-small-body { flex: 1; min-width: 0; }
.ut-small-title {
	font-family: var(--ut-font-headline);
	font-size: 1.02rem;
	line-height: 1.25;
	margin: 0;
}
.ut-small-title a:hover { text-decoration: underline; }

/* ---------- Card grid (river / archive / search) ---------- */

.ut-river { margin-bottom: 2.5rem; }
.ut-card-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem;
}
.ut-card-grid > .ut-card { flex: 1 1 220px; }
.ut-card-media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: 2px;
	background: var(--ut-bg-soft);
	margin-bottom: 0.75rem;
}
.ut-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.ut-card:hover .ut-card-media img { transform: scale(1.04); }
.ut-card-title {
	font-family: var(--ut-font-headline);
	font-size: 1.18rem;
	line-height: 1.25;
	margin: 0;
}
.ut-card-title a:hover { text-decoration: underline; }

/* Grid style variants — same card markup, different arrangement, so the
   homepage river reads as several distinct blocks rather than one long grid. */
.ut-grid-a { gap: 2rem; }
.ut-grid-a > .ut-card { flex: 1 1 300px; }
.ut-grid-c { gap: 1.1rem; }
.ut-grid-c > .ut-card { flex: 1 1 165px; }
.ut-grid-c .ut-card-title { font-size: 1rem; }
.ut-grid-c .ut-dek { display: none; }

.ut-grid-list { display: flex; flex-direction: column; gap: 0; }
.ut-grid-list .ut-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1.1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--ut-border);
}
.ut-grid-list .ut-card:last-child { border-bottom: 0; }
.ut-grid-list .ut-card-media { flex: 0 0 160px; aspect-ratio: 4 / 3; margin-bottom: 0; }
.ut-grid-list .ut-card-body { flex: 1; min-width: 0; }

.ut-home-feed { width: 100%; }
.ut-grid-standard, .ut-grid-wide2, .ut-grid-compact, .ut-grid-mosaic { display: flex; flex-wrap: wrap; }
.ut-grid-standard { gap: 1.75rem; }
.ut-grid-wide2    { gap: 2rem; }
.ut-grid-compact  { gap: 0.85rem; }
.ut-grid-mosaic   { gap: 1.25rem; }
.ut-grid-standard > * { flex: 1 1 220px; }
.ut-grid-wide2 > *    { flex: 1 1 300px; }
.ut-grid-compact > *  { flex: 1 1 145px; }
.ut-grid-mosaic > *   { flex: 1 1 195px; }
.ut-grid-mosaic > *:first-child { flex-basis: 400px; }

/* ---------- Body layout: main column + sidebar ---------- */

.ut-body-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
}
.ut-body-main { min-width: 0; }

.ut-sidebar { display: flex; flex-direction: column; gap: 2rem; align-self: start; }
.ut-widget { border-top: 3px solid var(--ut-navy); padding-top: 0.9rem; }
.ut-widget-title {
	font-family: var(--ut-font-headline);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 1rem;
	color: var(--ut-navy);
	margin: 0 0 0.75rem;
}
.ut-widget-list { display: flex; flex-direction: column; gap: 0.6rem; }
.ut-widget-list li { border-bottom: 1px solid var(--ut-border); padding-bottom: 0.6rem; }
.ut-widget-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.ut-widget-item { display: flex; align-items: center; gap: 0.75rem; }
.ut-widget-thumb { flex: 0 0 56px; width: 56px; height: 56px; border-radius: 4px; overflow: hidden; background: var(--ut-bg-soft); }
.ut-widget-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ut-widget-thumb-fallback { display: block; width: 100%; height: 100%; background: var(--ut-bg-soft); }
.ut-widget-text { flex: 1; min-width: 0; }
.ut-widget-item:hover .ut-widget-text { color: var(--ut-red); }
.ut-widget-list a { font-size: 0.92rem; line-height: 1.35; }
.ut-widget-list a:hover { color: var(--ut-red); }
.ut-widget-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ut-widget-pill {
	font-size: 0.78rem;
	background: var(--ut-bg-soft);
	border: 1px solid var(--ut-border);
	border-radius: 999px;
	padding: 0.3rem 0.7rem;
}
.ut-widget-pill:hover { border-color: var(--ut-navy); color: var(--ut-navy); }
.ut-widget-pill-tag { color: var(--ut-red); }

/* ---------- Archive / search headers ---------- */

.ut-archive-header {
	border-bottom: 5px solid var(--ut-red);
	margin-bottom: 1.75rem;
	padding-bottom: 0.75rem;
}
.ut-archive-title {
	font-family: var(--ut-font-headline);
	text-transform: uppercase;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--ut-navy);
	margin: 0;
}
.ut-archive-title span { color: var(--ut-red); }
.ut-archive-desc { color: var(--ut-gray); margin-top: 0.4rem; }
.ut-no-results { color: var(--ut-gray); }

.ut-archive { margin-bottom: 2rem; }

/* ---------- Pagination ---------- */

.pagination,
.navigation.pagination {
	display: flex;
	gap: 0.5rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}
.pagination .page-numbers {
	display: inline-block;
	padding: 0.5rem 0.9rem;
	border: 1px solid var(--ut-border);
	border-radius: 3px;
	font-family: var(--ut-font-headline);
	font-size: 0.9rem;
	color: var(--ut-navy);
}
.pagination .page-numbers.current {
	background: var(--ut-navy);
	color: #fff;
	border-color: var(--ut-navy);
}
.pagination .page-numbers:hover:not(.current) { border-color: var(--ut-navy); }

/* ---------- Single article ---------- */

.ut-single { max-width: 760px; margin: 0 auto; }
.ut-single-header { text-align: center; margin-bottom: 1.5rem; }
.ut-single-title {
	font-family: var(--ut-font-headline);
	font-size: clamp(2rem, 5vw, 3rem);
	line-height: 1.08;
	margin: 0.2rem 0 0;
	color: var(--ut-ink);
}
.ut-byline-row {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
	border-top: 1px solid var(--ut-border);
	border-bottom: 1px solid var(--ut-border);
	padding: 0.75rem 0;
}
.ut-byline-info { font-size: 0.85rem; color: var(--ut-gray); }
.ut-byline strong { color: var(--ut-ink); }
.ut-share { display: flex; gap: 0.5rem; }
.ut-share-btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--ut-navy);
	color: #fff;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 700;
}
.ut-share-btn:hover { background: var(--ut-red); }

.ut-single-media {
	margin: 1.5rem 0;
	border-radius: 2px;
	overflow: hidden;
}
.ut-single-media img { width: 100%; }

.ut-single-content {
	font-size: 1.08rem;
	line-height: 1.75;
}
.ut-single-content p { margin: 0 0 1.25rem; }
.ut-single-content p:first-of-type::first-letter {
	font-family: var(--ut-font-headline);
	float: left;
	font-size: 3.6rem;
	line-height: 0.85;
	font-weight: 700;
	color: var(--ut-red);
	padding: 0.05em 0.08em 0 0;
}
.ut-single-content blockquote {
	border-left: 4px solid var(--ut-red);
	margin: 1.5rem 0;
	padding: 0.25rem 0 0.25rem 1.25rem;
	font-family: var(--ut-font-serif);
	font-style: italic;
	font-size: 1.2rem;
	color: var(--ut-navy);
}
.ut-single-content img { border-radius: 2px; }
.ut-single-content h2,
.ut-single-content h3 {
	font-family: var(--ut-font-headline);
	color: var(--ut-navy);
}

.ut-single-footer { margin-top: 1.5rem; }
.ut-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ut-tag {
	background: var(--ut-bg-soft);
	border: 1px solid var(--ut-border);
	border-radius: 999px;
	padding: 0.3rem 0.8rem;
	font-size: 0.8rem;
	color: var(--ut-navy);
}
.ut-tag:hover { border-color: var(--ut-navy); }

.ut-related { max-width: var(--ut-container); margin: 3rem auto 0; }

/* ---------- Page ---------- */

.ut-page { max-width: 760px; margin: 0 auto; }
.ut-page-title {
	font-family: var(--ut-font-headline);
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	border-bottom: 4px solid var(--ut-red);
	padding-bottom: 0.5rem;
	margin-bottom: 1.25rem;
}

/* ---------- 404 ---------- */

.ut-404 { text-align: center; padding: 4rem 1rem; max-width: 560px; margin: 0 auto; }
.ut-404-code {
	display: block;
	font-family: var(--ut-font-headline);
	font-size: 5rem;
	color: var(--ut-red);
	line-height: 1;
	font-weight: 700;
}
.ut-404 h1 { font-family: var(--ut-font-headline); color: var(--ut-navy); }
.ut-404-search { justify-content: center; background: var(--ut-bg-soft); margin: 1.5rem auto; }
.ut-404-search input { color: var(--ut-ink); }
.ut-404-search input::placeholder { color: var(--ut-gray); }
.ut-404-search button { color: var(--ut-navy); font-weight: 700; padding: 0 0.75rem; }
.ut-404-home {
	display: inline-block;
	margin-top: 1rem;
	color: var(--ut-blue);
	font-weight: 600;
	text-decoration: underline;
}

/* ---------- Comments ---------- */

.comment-respond,
.comments-area {
	max-width: 760px;
	margin: 2.5rem auto 0;
}
.comment-reply-title,
.comments-title {
	font-family: var(--ut-font-headline);
	color: var(--ut-navy);
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 0.6rem 0.75rem;
	border: 1px solid var(--ut-border);
	border-radius: 3px;
	font-family: var(--ut-font-body);
	margin-bottom: 0.75rem;
}
.comment-form input[type="submit"] {
	background: var(--ut-red);
	color: #fff;
	border: 0;
	padding: 0.65rem 1.5rem;
	border-radius: 3px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* ---------- Footer (dense, mega-footer) ---------- */

.ut-footer { background: var(--ut-navy); color: #cfd8ec; margin-top: 3rem; }

.ut-footer-nav { border-bottom: 1px solid rgba(255,255,255,0.14); }
.ut-footer-nav-list {
	max-width: var(--ut-container);
	margin: 0 auto;
	padding: 1rem 1.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.25rem;
}
.ut-footer-nav-list a {
	display: inline-block;
	padding: 0.3rem 0.8rem;
	font-family: var(--ut-font-headline);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #cfd8ec;
	border-right: 1px solid rgba(255,255,255,0.15);
}
.ut-footer-nav-list li:last-child a { border-right: 0; }
.ut-footer-nav-list a:hover { color: #fff; }

.ut-footer-rows {
	max-width: var(--ut-container);
	margin: 0 auto;
	padding: 1.5rem 1.25rem;
	display: flex;
	flex-direction: column;
}
.ut-footer-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.3rem 0;
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ut-footer-row:last-child { border-bottom: 0; }
.ut-footer-row-label {
	font-family: var(--ut-font-headline);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.78rem;
	color: #fff;
	flex-shrink: 0;
	margin-right: 0.9rem;
}
.ut-footer-row-links { display: flex; flex-wrap: wrap; }
.ut-footer-row-links a { color: #cfd8ec; font-size: 0.85rem; }
.ut-footer-row-links a:hover { color: #fff; text-decoration: underline; }
.ut-footer-row-links a:not(:last-child)::after { content: "|"; color: rgba(255,255,255,0.3); margin: 0 0.6rem; }

.ut-footer-about {
	max-width: var(--ut-container);
	margin: 0 auto;
	padding: 1.5rem 1.25rem;
	border-top: 1px solid rgba(255,255,255,0.14);
	text-align: center;
}
.ut-footer-logo,
.ut-footer-about-logo {
	font-family: var(--ut-font-headline);
	font-style: italic;
	font-weight: 700;
	font-size: 1.5rem;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 0.4rem;
}
.ut-footer-about-desc { color: #9aa7c2; max-width: 640px; margin: 0 auto; font-size: 0.92rem; }

.ut-footer-compliance {
	max-width: var(--ut-container);
	margin: 0 auto;
	padding: 0 1.25rem 1.5rem;
	text-align: center;
}
.ut-footer-menu { display: flex; flex-wrap: wrap; justify-content: center; }
.ut-footer-menu li:not(:last-child)::after { content: "|"; color: rgba(255,255,255,0.3); margin: 0 0.7rem; }
.ut-footer-menu a { color: #cfd8ec; font-size: 0.85rem; }
.ut-footer-menu a:hover { color: #fff; text-decoration: underline; }

.ut-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	text-align: center;
	padding: 1rem;
	font-size: 0.8rem;
	color: #9aa7c2;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1300px) {
	.ut-footer-row { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

@media (max-width: 480px) {
	.ut-search input { width: 90px; }
}

@media (min-width: 780px) {
	.ut-hero-grid { grid-template-columns: 1.6fr 1fr; align-items: start; }
}

@media (min-width: 960px) {
	.ut-body-layout { grid-template-columns: 2.2fr 1fr; }
	.ut-sidebar { position: sticky; top: 90px; }
}
