:root {
	--zup-bg: #f7f7f5;
	--zup-surface: #ffffff;
	--zup-edge: #dcdad3;
	--zup-text: #191713;
	--zup-muted: #57534b;
	--zup-brand: #b5480c;
	--zup-brand-strong: #8d3607;
	--zup-ok: #1f6b3a;
	--zup-round: 10px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--zup-bg);
	color: var(--zup-text);
	font-family: system-ui, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 17px;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}

h1, h2, h3 {
	line-height: 1.24;
	margin: 0 0 12px;
	font-weight: 750;
}

h1 {
	font-size: clamp(26px, 4vw, 38px);
}

h2 {
	font-size: clamp(20px, 2.5vw, 26px);
}

h3 {
	font-size: 18px;
}

p {
	margin: 0 0 15px;
}

a {
	color: var(--zup-brand-strong);
	text-underline-offset: 2px;
}

a:hover {
	color: var(--zup-text);
}

:focus-visible {
	outline: 3px solid var(--zup-brand);
	outline-offset: 2px;
}

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

.zup-tolat {
	position: absolute;
	left: -9999px;
	background: var(--zup-text);
	color: #fff;
	padding: 12px 16px;
	z-index: 40;
}

.zup-tolat:focus {
	left: 10px;
	top: 10px;
}

.zup-wrap {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding-left: 22px;
	padding-right: 22px;
}

.zup-bar {
	background: var(--zup-surface);
	border-bottom: 1px solid var(--zup-edge);
	position: sticky;
	top: 0;
	z-index: 10;
}

.zup-bar__line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 20px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.zup-logo {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 20px;
	font-weight: 800;
	color: var(--zup-text);
	text-decoration: none;
}

.zup-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0 18px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
}

.zup-links a {
	display: inline-block;
	min-height: 44px;
	padding: 11px 0;
	text-decoration: none;
}

.zup-links a:hover {
	text-decoration: underline;
}

.zup-intro {
	padding-top: 38px;
	padding-bottom: 26px;
}

.zup-intro__text {
	max-width: 66ch;
	font-size: 18px;
	color: var(--zup-muted);
}

.zup-intro__editor {
	font-size: 16px;
	background: var(--zup-surface);
	border: 1px dashed var(--zup-edge);
	border-radius: var(--zup-round);
	padding: 13px 16px;
	max-width: 66ch;
}

.zup-filter {
	padding-bottom: 8px;
}

.zup-filter__legend {
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 10px;
}

.zup-filter__row {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.zup-chip {
	min-height: 44px;
	padding: 11px 17px;
	border: 1px solid var(--zup-edge);
	border-radius: 999px;
	background: var(--zup-surface);
	color: var(--zup-text);
	font: inherit;
	font-size: 16px;
	cursor: pointer;
}

.zup-chip:hover {
	border-color: var(--zup-brand);
}

.zup-chip[aria-pressed="true"] {
	background: var(--zup-brand);
	border-color: var(--zup-brand);
	color: #fff;
}

.zup-count {
	font-size: 15px;
	color: var(--zup-muted);
	margin: 12px 0 0;
}

.zup-shelf {
	list-style: none;
	margin: 0;
	padding: 0 0 40px;
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

.zup-item {
	background: var(--zup-surface);
	border: 1px solid var(--zup-edge);
	border-radius: var(--zup-round);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zup-item[hidden] {
	display: none;
}

.zup-item__shot {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: contain;
	background: #eeebe4;
	border-bottom: 1px solid var(--zup-edge);
}

.zup-gallery {
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
	margin: 24px 0 8px;
}

.zup-gallery figure {
	margin: 0;
}

.zup-gallery img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 720px;
	border: 1px solid var(--zup-edge);
	border-radius: var(--zup-round);
	background: #eeebe4;
}

.zup-gallery--tall img {
	max-width: 520px;
}

.zup-gallery figcaption {
	font-size: 15px;
	color: var(--zup-muted);
	margin-top: 8px;
}

.zup-rights {
	font-size: 14px;
	font-style: italic;
	color: var(--zup-muted);
	margin: 6px 0 0;
}

.zup-head-ikon {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}

.zup-head-ikon img {
	flex: none;
	border-radius: 14px;
}

.zup-head-ikon h1 {
	margin: 0;
}

.zup-item__pad {
	padding: 16px 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	flex: 1;
}

.zup-item__genre {
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--zup-brand-strong);
	margin: 0;
	font-weight: 700;
}

.zup-item__name {
	margin: 0;
	font-size: 20px;
}

.zup-item__name a {
	text-decoration: none;
}

.zup-item__name a:hover {
	text-decoration: underline;
}

.zup-item__line {
	margin: 0;
	color: var(--zup-muted);
	font-size: 16px;
}

.zup-item__meta {
	margin: auto 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.zup-pill {
	font-size: 13px;
	padding: 4px 10px;
	border-radius: 6px;
	background: #efece5;
	color: var(--zup-muted);
}

.zup-pill--noads {
	background: #e3f1e7;
	color: var(--zup-ok);
}

.zup-pill--ads {
	background: #f6e6da;
	color: var(--zup-brand-strong);
}

.zup-block {
	padding-top: 34px;
	padding-bottom: 34px;
	border-top: 1px solid var(--zup-edge);
}

.zup-block--card {
	background: var(--zup-surface);
}

.zup-copy {
	max-width: 70ch;
}

.zup-copy ul, .zup-copy ol {
	padding-left: 21px;
	margin: 0 0 16px;
}

.zup-copy li {
	margin-bottom: 7px;
}

.zup-scroll {
	overflow-x: auto;
	border: 1px solid var(--zup-edge);
	border-radius: var(--zup-round);
	background: var(--zup-surface);
}

.zup-sheet {
	border-collapse: collapse;
	width: 100%;
	min-width: 720px;
	font-size: 16px;
}

.zup-sheet caption {
	text-align: left;
	padding: 14px 18px;
	font-weight: 700;
	border-bottom: 1px solid var(--zup-edge);
}

.zup-sheet th, .zup-sheet td {
	text-align: left;
	padding: 12px 18px;
	border-bottom: 1px solid var(--zup-edge);
	vertical-align: top;
}

.zup-sheet thead th {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--zup-muted);
	background: #fbfaf8;
}

.zup-sheet tbody tr:last-child th, .zup-sheet tbody tr:last-child td {
	border-bottom: 0;
}

.zup-caption-note {
	font-size: 15px;
	font-style: italic;
	color: var(--zup-muted);
	margin-top: 10px;
}

.zup-datacard {
	background: var(--zup-surface);
	border: 1px solid var(--zup-edge);
	border-left: 4px solid var(--zup-brand);
	border-radius: var(--zup-round);
	padding: 17px 20px;
	margin-bottom: 26px;
}

.zup-datacard dl {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 7px 14px;
	font-size: 16px;
}

.zup-datacard dt {
	color: var(--zup-muted);
}

.zup-datacard dd {
	margin: 0;
}

.zup-warn {
	background: #fdf4ec;
	border: 1px solid #edd6c0;
	border-radius: var(--zup-round);
	padding: 14px 17px;
	margin: 0 0 18px;
	font-size: 16px;
}

.zup-go {
	display: inline-block;
	min-height: 44px;
	padding: 14px 25px;
	border-radius: var(--zup-round);
	background: var(--zup-brand);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: transform 140ms ease, background 140ms ease;
}

.zup-go:hover {
	background: var(--zup-brand-strong);
	color: #fff;
	transform: translateY(-1px);
}

.zup-small {
	font-size: 15px;
	color: var(--zup-muted);
	max-width: 64ch;
}

.zup-path {
	font-size: 15px;
	color: var(--zup-muted);
	padding-top: 16px;
}

.zup-path ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.zup-path li + li::before {
	content: "→";
	margin-right: 8px;
	color: var(--zup-edge);
}

.zup-qa details {
	background: var(--zup-surface);
	border: 1px solid var(--zup-edge);
	border-radius: var(--zup-round);
	padding: 12px 16px;
	margin-bottom: 10px;
}

.zup-qa summary {
	cursor: pointer;
	font-weight: 650;
	min-height: 44px;
	display: flex;
	align-items: center;
}

.zup-qa p {
	margin: 8px 0 2px;
	color: var(--zup-muted);
}

.zup-end {
	background: var(--zup-surface);
	border-top: 1px solid var(--zup-edge);
	margin-top: 40px;
	padding-top: 32px;
	padding-bottom: 30px;
	font-size: 16px;
}

.zup-end__cols {
	display: grid;
	gap: 22px;
	grid-template-columns: 1fr;
}

.zup-end h2 {
	font-size: 16px;
	margin-bottom: 8px;
}

.zup-end ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.zup-end a {
	display: inline-block;
	min-height: 44px;
	padding: 11px 0;
}

.zup-end__rule {
	border-top: 1px solid var(--zup-edge);
	margin-top: 22px;
	padding-top: 16px;
	color: var(--zup-muted);
	font-size: 15px;
}

@media (min-width: 600px) {
	.zup-shelf {
		grid-template-columns: repeat(2, 1fr);
	}

	.zup-end__cols {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 980px) {
	.zup-shelf {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	.zup-go {
		transition: none;
	}

	.zup-go:hover {
		transform: none;
	}
}
