:root {
	--bg: #f4f6f5;
	--surface: #ffffff;
	--surface-soft: #eef5f2;
	--ink: #17201d;
	--muted: #66736e;
	--line: #dce3e0;
	--green: #13795b;
	--green-dark: #0c6047;
	--amber: #f6b73c;
	--coral: #e85d4a;
	--blue: #3973c6;
	--shadow: 0 8px 24px rgba(23, 32, 29, 0.08);
}

* {
	box-sizing: border-box;
	letter-spacing: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a:hover {
	color: var(--green);
}

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

button,
input,
textarea,
select {
	font: inherit;
	letter-spacing: 0;
}

button,
a,
input,
textarea {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid rgba(57, 115, 198, 0.32);
	outline-offset: 2px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(12px);
}

.header-inner {
	display: grid;
	grid-template-columns: auto auto minmax(280px, 520px) 42px;
	align-items: center;
	gap: 24px;
	width: min(1240px, calc(100% - 40px));
	min-height: 76px;
	margin: 0 auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 188px;
}

.brand:hover {
	color: var(--ink);
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: var(--green);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}

.brand-copy {
	display: grid;
	line-height: 1.1;
}

.brand-copy strong {
	font-size: 19px;
}

.brand-copy small {
	margin-top: 4px;
	color: var(--muted);
	font-size: 12px;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 14px;
	font-weight: 700;
}

.primary-nav a {
	padding: 10px 0;
}

.header-search {
	display: grid;
	grid-template-columns: 1fr auto;
	min-width: 0;
	height: 44px;
	border: 1px solid #cdd7d3;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.header-search:focus-within {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(19, 121, 91, 0.12);
}

.header-search input {
	min-width: 0;
	padding: 0 14px;
	border: 0;
	outline: 0;
	color: var(--ink);
	background: transparent;
}

.header-search button {
	padding: 0 18px;
	border: 0;
	background: var(--ink);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.header-search button:hover {
	background: var(--green);
}

.menu-toggle {
	display: grid;
	align-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	height: 2px;
	background: var(--ink);
}

.menu-scrim {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(10, 16, 14, 0.48);
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease;
}

.category-menu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
	width: min(580px, 100%);
	height: 100dvh;
	padding: 24px;
	background: #fff;
	box-shadow: -16px 0 48px rgba(0, 0, 0, 0.16);
	transform: translateX(102%);
	transition: transform 220ms ease;
	overflow-y: auto;
}

.menu-open .menu-scrim {
	opacity: 1;
	pointer-events: auto;
}

.menu-open .category-menu {
	transform: translateX(0);
}

.menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
}

.menu-head strong {
	font-size: 24px;
}

.menu-head button {
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.menu-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 34px;
	padding: 24px 0;
}

.menu-columns section {
	display: grid;
	align-content: start;
	gap: 4px;
}

.menu-columns h2 {
	margin: 0 0 8px;
	font-size: 18px;
}

.menu-columns h2 a {
	color: var(--green);
}

.menu-columns section > a {
	padding: 7px 0;
	color: #4f5c57;
	font-size: 14px;
}

.account-panel {
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

.site-main {
	width: min(1240px, calc(100% - 40px));
	min-height: 70vh;
	margin: 0 auto;
	padding: 34px 0 72px;
}

.catalog-intro {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 34px;
	padding: 30px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.eyebrow {
	margin: 0 0 8px;
	color: var(--green);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.catalog-intro h1,
.page-intro h1 {
	max-width: 760px;
	margin: 0;
	font-size: 42px;
	line-height: 1.12;
}

.catalog-intro p:not(.eyebrow),
.page-intro p {
	max-width: 700px;
	margin: 12px 0 0;
	color: var(--muted);
}

.quick-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
	max-width: 390px;
}

.quick-links a {
	padding: 8px 12px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	font-size: 13px;
	font-weight: 700;
}

.quick-links a:nth-child(2) {
	border-color: #ecd9a9;
	background: #fff9ea;
}

.quick-links a:nth-child(4) {
	border-color: #f0cbc5;
	background: #fff3f1;
}

.section-heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 18px;
}

.section-heading h2 {
	margin: 0;
	font-size: 24px;
	line-height: 1.25;
}

.section-heading > a,
.section-heading > span {
	color: var(--muted);
	font-size: 13px;
}

.section-heading > a {
	color: var(--green);
	font-weight: 700;
}

.app-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.app-card {
	display: flex;
	min-width: 0;
	min-height: 340px;
	flex-direction: column;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--surface);
	overflow: hidden;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.app-card:hover {
	transform: translateY(-3px);
	border-color: #c3cfca;
	box-shadow: var(--shadow);
}

.app-card-media {
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 1;
	padding: 16px;
	background: #f8faf9;
	overflow: hidden;
}

.app-card-media img {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.app-card-body {
	display: flex;
	min-height: 142px;
	flex: 1;
	flex-direction: column;
	padding: 15px;
}

.app-card-category {
	min-height: 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.app-card-category a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
}

.app-card-category a:not(:first-child) {
	display: none;
}

.app-card h2 {
	display: -webkit-box;
	min-height: 46px;
	margin: 8px 0;
	overflow: hidden;
	font-size: 17px;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.app-card h2 a:hover {
	color: var(--green);
}

.app-card-meta {
	display: flex;
	min-height: 21px;
	gap: 8px;
	white-space: nowrap;
	overflow: hidden;
	color: var(--muted);
	font-size: 12px;
}

.app-card-meta span + span::before {
	content: "•";
	margin-right: 8px;
	color: #a7b2ae;
}

.app-card-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 12px;
}

.app-card-action > span {
	padding: 3px 7px;
	border-radius: 4px;
	background: #edf5ff;
	color: var(--blue);
	font-size: 10px;
	font-weight: 800;
}

.app-card-action a {
	font-size: 12px;
	font-weight: 700;
}

.navigation {
	display: flex;
	grid-column: 1 / -1;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	padding-top: 20px;
}

.navigation a,
.navigation span {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: #fff;
	font-size: 13px;
	font-weight: 700;
}

.navigation span,
.navigation a:hover {
	border-color: var(--green);
	background: var(--green);
	color: #fff;
}

.page-intro {
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--line);
}

.breadcrumbs,
.full-breadcrumbs {
	color: var(--muted);
	font-size: 12px;
}

.breadcrumbs {
	margin-bottom: 12px;
}

.breadcrumbs a,
.full-breadcrumbs a {
	color: var(--green);
}

.home-seo {
	display: grid;
	grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
	gap: 60px;
	margin-top: 64px;
	padding: 44px 0 0;
	border-top: 1px solid var(--line);
}

.home-seo h2 {
	margin: 0;
	font-size: 30px;
	line-height: 1.25;
}

.home-seo-copy {
	columns: 2;
	column-gap: 32px;
	color: #4d5a55;
	font-size: 14px;
}

.home-seo-copy p {
	margin: 0;
}

.home-seo-copy p + p {
	margin-top: 16px;
}

.app-page {
	max-width: 1040px;
	margin: 0 auto;
}

.full-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.full-breadcrumbs > span:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
}

.app-hero {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr) 220px;
	align-items: center;
	gap: 30px;
	padding: 0 0 34px;
	border-bottom: 1px solid var(--line);
}

.app-icon {
	aspect-ratio: 1 / 1;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}

.app-icon img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.app-category {
	margin-bottom: 8px;
	color: var(--green);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.app-category a:not(:first-child) {
	display: none;
}

.app-hero h1 {
	margin: 0;
	font-size: 38px;
	line-height: 1.15;
	word-break: break-word;
}

.app-summary {
	margin: 12px 0 16px;
	color: var(--muted);
	font-size: 14px;
}

.app-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.app-badges span {
	padding: 6px 9px;
	border-radius: 5px;
	background: #eef2f0;
	color: #41504a;
	font-size: 12px;
	font-weight: 700;
}

.app-badges span:first-child {
	background: #fff4d7;
	color: #815d0d;
}

.hero-action {
	display: grid;
	gap: 9px;
	text-align: center;
}

.hero-action small {
	color: var(--muted);
	font-size: 11px;
}

.download-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border: 0;
	border-radius: 7px;
	background: var(--green);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	box-shadow: 0 8px 18px rgba(19, 121, 91, 0.2);
}

.download-button:hover {
	background: var(--green-dark);
	color: #fff;
}

.app-details,
.article-content,
.screens-section,
.related-section,
.comments-section {
	padding: 38px 0;
	border-bottom: 1px solid var(--line);
}

.spec-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--line);
	overflow: hidden;
}

.spec-grid > div {
	min-width: 0;
	padding: 16px;
	background: #fff;
}

.spec-grid .spec-wide {
	grid-column: span 2;
}

.spec-grid dt {
	margin-bottom: 5px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.spec-grid dd {
	margin: 0;
	overflow: hidden;
	font-size: 14px;
	font-weight: 700;
	text-overflow: ellipsis;
	word-break: break-word;
}

.article-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

.movie-slot {
	min-height: 1px;
}

.full-text {
	max-width: 820px;
	color: #34413c;
	font-size: 17px;
	line-height: 1.78;
}

.full-text > :first-child {
	margin-top: 0;
}

.full-text h2,
.full-text h3 {
	margin: 30px 0 12px;
	color: var(--ink);
	line-height: 1.3;
}

.full-text a {
	color: var(--green);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.full-text img {
	border-radius: 8px;
}

.screens-track {
	display: flex;
	gap: 14px;
	padding: 2px 0 12px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scrollbar-color: #b7c2bd transparent;
	scrollbar-width: thin;
}

.screens-track > .xfieldimagegallery {
	display: flex;
	gap: 14px;
	width: max-content;
	margin: 0;
	padding: 0;
	list-style: none;
}

.screens-track > .xfieldimagegallery > li {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	scroll-snap-align: start;
}

.screens-track a {
	display: block;
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.screens-track img {
	display: block;
	width: auto;
	height: 360px;
	max-width: 680px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	object-fit: contain;
}

.download-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin: 38px 0;
	padding: 28px;
	border: 1px solid #c7ddd5;
	border-left: 5px solid var(--green);
	border-radius: 8px;
	background: var(--surface-soft);
}

.download-panel h2 {
	margin: 0;
	font-size: 24px;
}

.download-panel p:not(.eyebrow) {
	margin: 7px 0 0;
	color: var(--muted);
	font-size: 13px;
}

.download-panel .download-button {
	min-width: 190px;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.related-card {
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}

.related-image {
	display: block;
	aspect-ratio: 1 / 1;
	padding: 10px;
	background: #f8faf9;
}

.related-image img {
	width: 100%;
	height: 100%;
	border-radius: 6px;
	object-fit: cover;
}

.related-card > div {
	padding: 12px;
}

.related-card h3 {
	display: -webkit-box;
	min-height: 40px;
	margin: 0 0 6px;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.4;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.related-card span {
	color: var(--muted);
	font-size: 11px;
}

.comments-section {
	border-bottom: 0;
}

.comment-block {
	margin-bottom: 12px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}

.comment-block-left {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.hidden-coment img {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	object-fit: cover;
}

.comment-text {
	font-size: 14px;
}

.comment-text-more {
	margin-top: 10px;
	color: var(--muted);
	font-size: 12px;
}

.add-comment {
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}

.add-comment-line {
	margin-bottom: 14px;
}

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

.comment-form-grid label,
.field-label {
	display: grid;
	gap: 6px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.comment-editor,
.captcha-field {
	margin-bottom: 14px;
}

.comment-submit {
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: var(--green);
	color: #fff;
	font-weight: 800;
	cursor: pointer;
}

.comment-date {
	color: var(--muted);
	font-size: 11px;
}

.signature {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--line);
	color: var(--muted);
}

.add-comment-line-left {
	margin-bottom: 5px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 700;
}

.form-input-stand,
.f_input,
.system-page input[type="text"],
.system-page input[type="email"],
.system-page input[type="password"],
.system-page textarea,
.system-page select,
.add-comment input[type="text"],
.add-comment textarea {
	width: 100%;
	max-width: 680px;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid #cbd5d1;
	border-radius: 6px;
	background: #fff;
	color: var(--ink);
}

.system-page {
	max-width: 920px;
	margin: 0 auto;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}

.search-card {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	gap: 18px;
	margin-top: 14px;
	padding: 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}

.search-card-image {
	aspect-ratio: 1 / 1;
}

.search-card-image img {
	width: 100%;
	height: 100%;
	border-radius: 7px;
	object-fit: cover;
}

.search-card h2 {
	margin: 5px 0 8px;
	font-size: 20px;
}

.search-card p {
	margin: 0 0 8px;
	color: var(--muted);
	font-size: 13px;
}

.search-version {
	color: var(--green);
	font-size: 12px;
	font-weight: 700;
}

.system-page h1,
.system-page .title-block {
	margin-top: 0;
	font-size: 30px;
}

.system-page input[type="submit"],
.system-page button,
.add-comment input[type="submit"] {
	min-height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: var(--green);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.login-input-text {
	width: 100%;
	min-height: 40px;
	margin: 4px 0 10px;
	padding: 8px 10px;
	border: 1px solid var(--line);
	border-radius: 6px;
}

.enter {
	min-height: 40px;
	padding: 0 16px;
	border: 0;
	border-radius: 6px;
	background: var(--green);
	color: #fff;
	font-weight: 700;
}

.reg-link {
	display: flex;
	gap: 12px;
	margin-top: 10px;
	font-size: 12px;
}

.l-link {
	display: grid;
	gap: 8px;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	width: min(1240px, calc(100% - 40px));
	margin: 0 auto;
	padding: 30px 0 42px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 13px;
}

.site-footer > div {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-brand {
	color: var(--ink);
	font-size: 17px;
	font-weight: 800;
}

.site-footer nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
}

.berrors,
.info,
.success {
	margin-bottom: 20px;
	padding: 14px 16px;
	border: 1px solid #ecd9a9;
	border-radius: 6px;
	background: #fff9ea;
}

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

	.primary-nav {
		display: none;
	}

	.app-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.app-hero {
		grid-template-columns: 160px minmax(0, 1fr);
	}

	.hero-action {
		grid-column: 2;
		max-width: 240px;
	}

	.related-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.header-inner,
	.site-main,
	.site-footer {
		width: min(100% - 28px, 1240px);
	}

	.header-inner {
		grid-template-columns: auto 42px;
		gap: 14px;
		min-height: 68px;
	}

	.header-search {
		grid-column: 1 / -1;
		grid-row: 2;
		margin-bottom: 12px;
	}

	.menu-toggle {
		justify-self: end;
	}

	.site-main {
		padding-top: 24px;
	}

	.catalog-intro {
		align-items: start;
		flex-direction: column;
		gap: 22px;
	}

	.quick-links {
		justify-content: flex-start;
		max-width: none;
	}

	.catalog-intro h1,
	.page-intro h1 {
		font-size: 34px;
	}

	.app-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-seo {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.home-seo-copy {
		columns: 1;
	}

	.app-hero {
		grid-template-columns: 130px minmax(0, 1fr);
		gap: 20px;
	}

	.app-hero h1 {
		font-size: 30px;
	}

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

	.related-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.site-footer nav {
		justify-content: flex-start;
	}
}

@media (max-width: 580px) {
	body {
		font-size: 15px;
	}

	.brand {
		min-width: 0;
	}

	.brand-copy small {
		display: none;
	}

	.category-menu {
		padding: 18px;
	}

	.menu-columns {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.catalog-intro {
		padding: 22px 0;
	}

	.catalog-intro h1,
	.page-intro h1 {
		font-size: 29px;
	}

	.section-heading h2 {
		font-size: 21px;
	}

	.app-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.app-card {
		min-height: 280px;
	}

	.app-card-media {
		padding: 10px;
	}

	.app-card-body {
		min-height: 132px;
		padding: 11px;
	}

	.app-card h2 {
		min-height: 40px;
		font-size: 15px;
	}

	.app-card-meta span:nth-child(2) {
		display: none;
	}

	.app-hero {
		grid-template-columns: 94px minmax(0, 1fr);
		gap: 15px;
	}

	.app-hero h1 {
		font-size: 25px;
	}

	.app-summary {
		display: none;
	}

	.app-badges span:nth-child(n+3) {
		display: none;
	}

	.hero-action {
		grid-column: 1 / -1;
		max-width: none;
	}

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

	.spec-grid .spec-wide {
		grid-column: 1 / -1;
	}

	.full-text {
		font-size: 16px;
	}

	.screens-track img {
		height: 300px;
		max-width: 82vw;
	}

	.download-panel {
		align-items: stretch;
		flex-direction: column;
		padding: 22px;
	}

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

	.system-page {
		padding: 18px;
	}

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

	.search-card {
		grid-template-columns: 82px minmax(0, 1fr);
		gap: 12px;
	}

	.search-card p {
		display: none;
	}

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