/* Soft — clean content portal */

:root {
	--bg: #f5f7fa;
	--panel: #ffffff;
	--ink: #1a1d21;
	--ink-2: #4b5563;
	--ink-3: #8b95a5;
	--line: #e8edf3;
	--accent: #007bff;
	--accent-2: #0056b3;
	--accent-soft: #e7f1ff;
	--accent-line: #b3d7ff;
	--rank1: #ef4444;
	--rank2: #f97316;
	--rank3: #eab308;
	--wrap: 1160px;
	--gutter: 16px;
	--section-y: 16px;
	--radius: 12px;
	--radius-sm: 8px;
	--font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
	--header-h: 64px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--space: 16px;
	--space-1: 16px;
	--space-2: 16px;
	--space-3: 16px;
	--space-4: 16px;
	--space-list: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.soft-dlportal {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background: var(--bg);
	line-height: 1.55;
	font-size: 15px;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-2); }
button, input { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.soft-skip-link:focus {
	position: fixed; top: 12px; left: 12px; z-index: 100;
	width: auto; height: auto; margin: 0; padding: 10px 14px;
	clip: auto; overflow: visible;
	background: var(--accent); color: #fff; border-radius: 8px;
	font-weight: 600; text-decoration: none;
}

.soft-site { min-height: 100vh; display: flex; flex-direction: column; overflow-x: clip; }
.soft-main { flex: 1; padding-bottom: var(--space); min-width: 0; }
.soft-wrap {
	width: min(100% - (var(--gutter) * 2), var(--wrap));
	max-width: var(--wrap);
	margin-inline: auto;
}

/* Brand */
.soft-brand {
	display: inline-flex;
	align-items: center;
	gap: var(--space);
	flex-shrink: 0;
}
.soft-brand__logo {
	display: block;
	width: auto !important;
	height: auto;
	object-fit: contain;
}
.soft-brand__mark {
	width: 36px; height: 36px; border-radius: 10px;
	display: grid; place-items: center;
	background: var(--accent);
	color: #fff;
	font-weight: 700; font-size: 15px;
}
.soft-brand__text {
	font-size: 20px; font-weight: 700; color: var(--ink);
	letter-spacing: 0.02em; white-space: nowrap;
}

/* Header */
.soft-header {
	position: sticky; top: 0; z-index: 50;
	height: var(--header-h);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.soft-header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	gap: var(--space-2);
}

.soft-nav { flex: 1; min-width: 0; }
.soft-nav__list {
	display: flex; align-items: center; gap: 0;
	overflow-x: auto; scrollbar-width: none;
}
.soft-nav__list::-webkit-scrollbar { display: none; }
.soft-nav__list > .menu-item > a {
	display: inline-flex; align-items: center;
	height: 40px; padding: 0 14px;
	font-size: 14px; font-weight: 500;
	color: var(--ink-2);
	white-space: nowrap;
	transition: color .15s var(--ease);
}
.soft-nav__list > .menu-item > a:hover,
.soft-nav__list > .current-menu-item > a,
.soft-nav__list > .current-menu-ancestor > a {
	color: var(--accent-2);
}
.soft-nav__list .sub-menu { display: none; }

.soft-seek {
	display: flex; align-items: center; gap: var(--space-1);
	width: 200px;
	height: 36px;
	padding: 0 12px;
	border-radius: var(--radius-sm);
	background: #fff;
	border: 1px solid var(--line);
	transition: border-color .15s var(--ease), width .2s var(--ease);
}
.soft-seek:focus-within {
	width: 240px;
	border-color: var(--accent);
}
.soft-seek__ico { color: var(--ink-3); flex-shrink: 0; }
.soft-seek input {
	flex: 1; min-width: 0; border: 0; outline: 0;
	background: transparent; color: var(--ink); font-size: 13px;
}
.soft-seek input::placeholder { color: var(--ink-3); }

.soft-nav-toggle {
	display: none;
	width: 36px; height: 36px;
	border: 1px solid var(--line); border-radius: var(--radius-sm);
	background: #fff;
	cursor: pointer;
	flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.soft-nav-toggle span {
	display: block; width: 14px; height: 2px;
	background: var(--ink); border-radius: 1px;
}

/* Sections — only top spacing between blocks (no parent+child stack) */
.soft-section { padding: var(--space) 0 0; }
.soft-section--feat { padding-top: var(--space); }
.soft-section--cats { padding-bottom: 0; }
.soft-section__head { margin-bottom: var(--space); }
.soft-section__head h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--ink);
}
.soft-section__head p {
	margin: var(--space) 0 0;
	color: var(--ink-3);
	font-size: 13px;
}
.soft-section__head--row {
	display: flex; align-items: baseline; justify-content: space-between;
	margin-bottom: var(--space);
}
.soft-section__head--row h2 { font-size: 16px; }

/* Icons */
.soft-ico {
	display: inline-grid; place-items: center; flex-shrink: 0;
	overflow: hidden; background: #f0f3f7; border-radius: 12px;
	border: 1px solid #e8edf3;
}
.soft-ico img { width: 100%; height: 100%; object-fit: cover; }
.soft-ico__fb { font-weight: 700; color: var(--accent-2); font-size: 1em; }
.soft-ico--xs { width: 22px; height: 22px; border-radius: 6px; }
.soft-ico--sm { width: 40px; height: 40px; border-radius: 10px; }
.soft-ico--md { width: 56px; height: 56px; border-radius: 12px; }
.soft-ico--lg { width: 56px; height: 56px; border-radius: 12px; }
.soft-ico--xl { width: 88px; height: 88px; border-radius: 16px; }

.soft-mini .soft-ico--xs,
.soft-mini .soft-ico--sm {
	width: 22px; height: 22px; border-radius: 6px;
}

/* Featured / software cards */
.soft-feat-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: var(--space-2);
	width: 100%;
	min-width: 0;
}
.soft-tile-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--space-2);
	width: 100%;
	min-width: 0;
}
.soft-feat,
.soft-tile {
	display: flex; gap: var(--space); align-items: center;
	padding: var(--space);
	min-width: 0;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color .15s var(--ease);
}
.soft-feat:hover,
.soft-tile:hover {
	border-color: var(--accent-line);
	color: inherit;
}
.soft-feat__body,
.soft-tile__body {
	min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 4px; overflow: hidden;
}
.soft-feat__name,
.soft-tile__name {
	font-size: 14px; font-weight: 600;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.soft-feat__size,
.soft-feat__desc,
.soft-tile__desc {
	font-style: normal; font-size: 12px; color: var(--ink-3); line-height: 1.4;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.soft-feat__tags { display: flex; gap: 6px; }
.soft-feat__tags i {
	font-style: normal; font-size: 11px; color: var(--ink-3);
	background: var(--bg); padding: 1px 6px; border-radius: 4px;
}

/* Home grid */
.soft-home__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: var(--space-2);
	align-items: start;
	min-width: 0;
}
.soft-home__center,
.soft-home__rail {
	min-width: 0;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: var(--space-2);
}
.soft-home__center--full {
	width: 100%;
}
.soft-home__side {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	min-width: 0;
}

/* Homepage only: equal column height, rows fill leftover space */
.soft-home__grid--match {
	align-items: stretch;
}
.soft-home__grid--match .soft-home__center {
	display: flex;
	flex-direction: column;
}
.soft-home__grid--match .soft-home__center > .soft-list {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.soft-home__grid--match .soft-home__center > .soft-list > .soft-list-row {
	flex: 1 1 auto;
}
.soft-home__grid--match .soft-home__side {
	height: 100%;
}
.soft-home__grid--match .soft-home__side > .soft-home__rail:first-child {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.soft-home__grid--match .soft-home__side > .soft-home__rail:first-child .soft-rank {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.soft-home__grid--match .soft-home__side > .soft-home__rail:first-child .soft-rank-item {
	flex: 1 1 auto;
}
.soft-home__grid--match .soft-home__side > .soft-hot-tags {
	flex: 0 0 auto;
}

/* Latest / archive list — large list rhythm */
.soft-list { display: flex; flex-direction: column; }
.soft-list-row {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: var(--space) 0;
	border-bottom: 0;
}
.soft-list-row + .soft-list-row {
	border-top: 1px solid var(--line);
}
.soft-list-row:last-child { padding-bottom: 0; }
.soft-list-row:hover .soft-list-row__name { color: var(--accent-2); }
.soft-list-row__main { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.soft-list-row__name {
	font-size: 14px; font-weight: 600; color: var(--ink);
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.soft-list-row__meta {
	display: flex; align-items: center; gap: 8px; min-width: 0;
	font-size: 12px; color: var(--ink-3);
}
.soft-list-row__meta em {
	font-style: normal; flex-shrink: 0; color: var(--ink-2);
}
.soft-list-row__meta span {
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.soft-list-row__date {
	font-size: 12px; color: var(--ink-3); font-variant-numeric: tabular-nums;
}

/* Rank — small list */
.soft-rank { display: flex; flex-direction: column; }
.soft-rank-item {
	display: flex; align-items: center; gap: 10px;
	padding: var(--space-list) 0;
	border-bottom: 0;
}
.soft-rank-item + .soft-rank-item {
	border-top: 1px solid var(--line);
}
.soft-rank-item:last-child { padding-bottom: 0; }
.soft-rank-item__n {
	width: 20px; flex-shrink: 0; text-align: center;
	font-size: 13px; font-weight: 700; color: var(--ink-3);
}
.soft-rank-item:nth-child(1) .soft-rank-item__n { color: var(--rank1); }
.soft-rank-item:nth-child(2) .soft-rank-item__n { color: var(--rank2); }
.soft-rank-item:nth-child(3) .soft-rank-item__n { color: var(--rank3); }
.soft-rank-item.is-top {
	background: transparent;
	border: 0;
	margin: 0;
	padding: var(--space-list) 0;
	border-radius: 0;
}
.soft-rank-item__body { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.soft-rank-item__body em { display: none; }
.soft-rank-item__name {
	font-size: 13px; font-weight: 500;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.soft-rank-item .soft-dl { display: none; }

/* Hot tags */
.soft-hot-tags__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: var(--space);
}
.soft-hot-tags__list a {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 4px 10px;
	border-radius: 6px;
	background: var(--bg);
	border: 1px solid var(--line);
	color: var(--ink-2);
	font-size: 12px;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: border-color .15s var(--ease), color .15s var(--ease);
}
.soft-hot-tags__list a:hover {
	border-color: var(--accent-line);
	color: var(--accent-2);
	background: var(--accent-soft);
}

/* CTA */
.soft-dl {
	display: inline-flex; align-items: center; justify-content: center;
	height: 36px; padding: 0 var(--space); border-radius: var(--radius-sm);
	background: var(--accent); color: #fff !important;
	font-size: 13px; font-weight: 600; border: 0;
	transition: background .15s var(--ease);
}
.soft-dl:hover { background: var(--accent-2); color: #fff !important; }
.soft-dl--lg { height: 40px; }
.soft-dl--xl { height: 44px; font-size: 15px; }
.soft-soft__hero-dl .soft-dl { width: 100%; }
.soft-dl--ghost {
	background: #fff; color: var(--ink-2) !important;
	border: 1px solid var(--line);
}
.soft-dl--ghost:hover {
	border-color: var(--accent);
	color: var(--accent-2) !important;
	background: #fff;
}

/* Category blocks */
.soft-cat-blocks {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-2);
	min-width: 0;
}
.soft-cat-card {
	min-width: 0;
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: var(--space-2);
}
.soft-home__guide-col {
	display: flex;
	flex-direction: column;
	gap: var(--space);
	min-width: 0;
}
.soft-cat-card--wide {
	width: 100%;
}
.soft-cat-card__hd {
	display: flex; align-items: center; justify-content: space-between;
	margin: 0;
	padding: 0 0 var(--space);
	border-bottom: 1px solid var(--line);
}
.soft-cat-card__hd strong { font-size: 15px; font-weight: 650; }
.soft-cat-card__hd a,
.soft-cat-card__hd-meta { font-size: 12px; color: var(--ink-3); }
.soft-cat-card__hd a:hover { color: var(--accent-2); }
.soft-mini li {
	display: flex; align-items: center; gap: 8px;
	padding: var(--space-list) 0;
}
.soft-mini li + li {
	border-top: 1px solid var(--line);
}
.soft-mini li:last-child { padding-bottom: 0; }
.soft-mini a {
	font-size: 13px; font-weight: 500;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Guide rows */
.soft-guide-grid {
	display: flex;
	flex-direction: column;
}
.soft-guide-grid > li > a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px 16px;
	align-items: baseline;
	padding: var(--space) 0;
	border-bottom: 0;
}
.soft-guide-grid > li + li > a {
	border-top: 1px solid var(--line);
}
.soft-guide-grid > li:last-child > a { padding-bottom: 0; }
.soft-guide-grid > li > a:hover { color: inherit; }
.soft-guide-grid strong {
	grid-column: 1;
	font-size: 14px; font-weight: 600;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.soft-guide-grid em {
	grid-column: 1;
	font-style: normal; font-size: 12px; color: var(--ink-3);
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.soft-guide-grid time {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	font-size: 12px; color: var(--ink-3);
	white-space: nowrap;
}
.soft-guide-grid > li > a:hover strong { color: var(--accent-2); }

/* Browse */
.soft-browse { padding-top: var(--section-y); }
.soft-panel {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	min-width: 0;
}
.soft-panel--pad { padding: var(--space); }
.soft-crumb {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
	font-size: 13px; color: var(--ink-3); margin-bottom: var(--space);
}
.soft-crumb strong { color: var(--ink); font-weight: 600; }
.soft-crumb em { font-style: normal; margin-left: auto; color: var(--ink-3); }
.soft-page-links {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
	margin-top: var(--space); padding-top: var(--space);
	border-top: 1px solid var(--line);
	font-size: 14px; color: var(--ink-3);
}
.soft-page-links a { color: var(--accent); }
.soft-page-links a:hover { color: var(--accent-2); }

.soft-dl-list { display: flex; flex-direction: column; gap: var(--space); }
.soft-dl-list__item {
	display: flex; align-items: center; gap: var(--space);
	padding: var(--space);
	border: 1px solid var(--line); border-radius: var(--radius);
	background: var(--panel);
}
.soft-dl-list__body { flex: 1; min-width: 0; }
.soft-dl-list__name { font-size: 15px; font-weight: 600; }
.soft-dl-list__body p { margin: 4px 0; font-size: 12px; color: var(--ink-3); }
.soft-dl-list__meta { display: flex; gap: var(--space); flex-wrap: wrap; }
.soft-dl-list__meta i {
	font-style: normal; font-size: 11px; color: var(--ink-3);
	background: var(--bg); padding: 1px 6px; border-radius: 4px;
}

/* Detail */
.soft-soft { padding-top: 0; }
.soft-soft__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: 0;
	align-items: stretch;
	padding: var(--space);
	margin-bottom: var(--space);
}
.soft-soft__hero-main {
	display: flex;
	gap: var(--space);
	align-items: flex-start;
	min-width: 0;
}
.soft-soft__intro { flex: 1; min-width: 0; }
.soft-soft__intro h1 {
	margin: 0 0 6px;
	font-size: 24px;
	font-weight: 700;
}
.soft-soft__sub {
	margin: 0 0 var(--space);
	color: var(--ink-2);
	font-size: 14px;
}
.soft-soft__intro .soft-soft-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 16px;
	margin: 0;
}
.soft-soft__intro .soft-soft-meta__row,
.soft-soft__intro .soft-soft-meta__row + .soft-soft-meta__row {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	margin: 0;
	padding: 0;
	border: 0;
	border-top: 0;
	font-size: 13px;
}
.soft-soft__intro .soft-soft-meta__label { color: var(--ink-3); }
.soft-soft__intro .soft-soft-meta__value {
	text-align: left;
	color: var(--ink);
	font-weight: 600;
	word-break: break-all;
}
.soft-soft__intro .soft-soft-meta__value em {
	font-style: normal;
	color: var(--ink-3);
	font-weight: 400;
}
.soft-soft__intro .soft-soft-meta__value a { font-weight: 600; }
.soft-soft__intro .soft-soft-meta__value a:hover { color: var(--accent-2); }
.soft-soft__hero-dl {
	display: flex;
	flex-direction: column;
	gap: var(--space);
	justify-content: center;
	padding-left: var(--space);
}
.soft-soft__dl-empty {
	margin: 0;
	font-size: 13px;
	color: var(--ink-3);
	text-align: center;
}
.soft-soft__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: var(--space);
	align-items: start;
}
.soft-soft__layout > .soft-content {
	padding: var(--space);
	max-width: none;
}
.soft-panel__hd {
	padding: 0 0 var(--space);
	margin: 0;
	font-size: 14px;
	font-weight: 650;
	border-bottom: 1px solid var(--line);
	background: transparent;
}
.soft-meta-line,
.soft-soft-meta__row {
	display: flex; justify-content: space-between; gap: var(--space);
	padding-top: var(--space-list); border-top: 0; font-size: 13px;
}
.soft-meta-line + .soft-meta-line,
.soft-soft-meta__row + .soft-soft-meta__row {
	border-top: 1px solid var(--line);
}
.soft-meta-line span,
.soft-soft-meta__label { color: var(--ink-3); }
.soft-soft-meta__value { text-align: right; word-break: break-all; }

/* Article list — text rows */
.soft-article-list { display: flex; flex-direction: column; }
.soft-article {
	display: block;
	padding: var(--space) 0;
	border-bottom: 0;
	background: transparent;
}
.soft-article + .soft-article {
	border-top: 1px solid var(--line);
}
.soft-article:last-child { padding-bottom: 0; }
.soft-article__cover { display: none; }
.soft-article__body h2 { margin: 0 0 6px; font-size: 15px; font-weight: 600; }
.soft-article__body h2 a:hover { color: var(--accent-2); }
.soft-article__body p { margin: 0 0 6px; color: var(--ink-3); font-size: 13px; }
.soft-article__body span { font-size: 12px; color: var(--ink-3); }

.soft-page { padding-top: var(--section-y); }
.soft-page-head {
	margin-bottom: var(--space);
	padding-bottom: var(--space);
	border-bottom: 1px solid var(--line);
}
.soft-page-head h1 {
	margin: 0 0 6px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
}
.soft-page-head .soft-soft__sub {
	margin: 0;
}

/* Article / software body prose */
.soft-content {
	font-size: 15px;
	line-height: 1.85;
	color: var(--ink-2);
	letter-spacing: 0.01em;
	word-break: break-word;
}
.soft-content > *:first-child { margin-top: 0; }
.soft-content > *:last-child { margin-bottom: 0; }
.soft-content a {
	color: var(--accent-2);
	text-decoration: underline;
	text-decoration-color: rgba(0, 123, 255, 0.35);
	text-underline-offset: 3px;
	transition: color .15s var(--ease), text-decoration-color .15s var(--ease);
}
.soft-content a:hover {
	color: var(--accent);
	text-decoration-color: var(--accent);
}
.soft-content p { margin: 0 0 1.1em; }
.soft-content p:last-child { margin-bottom: 0; }
.soft-content h2,
.soft-content h3,
.soft-content h4,
.soft-content h5,
.soft-content h6 {
	margin: 1.5em 0 0.65em;
	font-weight: 700;
	line-height: 1.4;
}
.soft-content h2:first-child,
.soft-content h3:first-child,
.soft-content h4:first-child,
.soft-content h5:first-child,
.soft-content h6:first-child { margin-top: 0; }

/* Distinct heading levels by color / accent */
.soft-content h2,
.soft-content h3,
.soft-content h4,
.soft-content h5,
.soft-content h6 {
	display: flex;
	align-items: center;
	gap: 10px;
}
.soft-content h2::before,
.soft-content h3::before,
.soft-content h4::before,
.soft-content h5::before,
.soft-content h6::before {
	content: "";
	width: 12px;
	height: 3px;
	border-radius: 2px;
	flex-shrink: 0;
}
.soft-content h2 {
	font-size: 1.28em;
	color: var(--ink);
}
.soft-content h2::before { background: var(--accent); }
.soft-content h3 {
	font-size: 1.15em;
	color: var(--accent-2);
}
.soft-content h3::before { background: var(--accent-line); }
.soft-content h4 {
	font-size: 1.06em;
	color: #004085;
}
.soft-content h4::before { background: #80bdff; }
.soft-content h5 {
	font-size: 1em;
	color: #c2410c;
}
.soft-content h5::before { background: #fdba74; }
.soft-content h6 {
	font-size: 0.95em;
	color: #5a32a3;
	font-weight: 650;
}
.soft-content h6::before { background: #c4b5fd; }
.soft-content ul,
.soft-content ol {
	margin: 0 0 1.1em;
	padding-left: 1.35em;
	list-style: disc;
}
.soft-content ol { list-style: decimal; }
.soft-content li { margin: 0.35em 0; padding: 0; }
.soft-content li::marker { color: var(--accent); }
.soft-content ul ul,
.soft-content ol ol,
.soft-content ul ol,
.soft-content ol ul { margin: 0.35em 0; }
.soft-content blockquote {
	margin: 1.25em 0;
	padding: 14px 16px 14px 18px;
	border-left: 3px solid var(--accent);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	background: var(--accent-soft);
	color: var(--ink);
	font-size: 0.98em;
}
.soft-content blockquote p:last-child { margin-bottom: 0; }
.soft-content img,
.soft-content figure {
	margin: 1.25em 0;
	border-radius: var(--radius-sm);
	max-width: 100%;
	height: auto;
}
.soft-content figure { background: var(--bg); padding: 8px; border: 1px solid var(--line); }
.soft-content figcaption {
	margin-top: 8px;
	padding: 0 4px 2px;
	font-size: 12px;
	color: var(--ink-3);
	text-align: center;
	line-height: 1.5;
}
.soft-content hr {
	margin: 1.6em 0;
	border: 0;
	border-top: 1px solid var(--line);
}
.soft-content code,
.soft-content kbd {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.9em;
	padding: 0.12em 0.4em;
	border-radius: 4px;
	background: var(--bg);
	border: 1px solid var(--line);
	color: var(--ink);
}
.soft-content pre {
	margin: 1.25em 0;
	padding: 14px 16px;
	overflow-x: auto;
	border-radius: var(--radius-sm);
	background: #1a1d21;
	color: #e8edf3;
	font-size: 13px;
	line-height: 1.65;
	border: 0;
}
.soft-content pre code {
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: inherit;
}
.soft-content table {
	width: 100%;
	margin: 1.25em 0;
	border-collapse: collapse;
	font-size: 14px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}
.soft-content th,
.soft-content td {
	padding: 10px 12px;
	border: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}
.soft-content th {
	background: var(--bg);
	color: var(--ink);
	font-weight: 650;
}
.soft-content tr:nth-child(even) td { background: rgba(245, 247, 250, 0.6); }
.soft-content strong { color: var(--ink); font-weight: 700; }
.soft-content em { font-style: italic; }

/* Related recommendations */
.soft-related { }
.soft-related__list {
	display: flex;
	flex-direction: column;
}
.soft-related__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: var(--space-list) 0;
}
.soft-related__item + .soft-related__item {
	border-top: 1px solid var(--line);
}
.soft-related__item:last-child { padding-bottom: 0; }
.soft-related__name {
	flex: 1;
	min-width: 0;
	font-size: 13px;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.soft-related__item:hover .soft-related__name { color: var(--accent-2); }

.soft-empty { padding: var(--space); text-align: center; color: var(--ink-3); }
.soft-empty--sm { padding: var(--space-list) 0 0; }
.soft-empty h1 { margin: 0 0 var(--space); color: var(--ink); }

/* Pagination */
.soft-pagination { margin-top: var(--space); }
.soft-pagination ul {
	display: flex; flex-wrap: wrap; gap: var(--space); justify-content: center;
}
.soft-pagination a,
.soft-pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 32px; height: 32px; padding: 0 var(--space);
	border-radius: var(--radius-sm); border: 1px solid var(--line);
	background: #fff; font-size: 13px;
}
.soft-pagination .current {
	background: var(--accent); border-color: var(--accent); color: #fff;
}
.soft-pagination a:hover {
	border-color: var(--accent); color: var(--accent-2);
}

/* Footer */
.soft-foot {
	margin-top: auto;
	padding: var(--space) 0;
	border-top: 1px solid var(--line);
	background: #fff;
}
.soft-foot__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space);
	flex-wrap: wrap;
}
.soft-foot__copy {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 12px;
	color: var(--ink-3);
}
.soft-foot__topbtn {
	flex-shrink: 0;
	margin-left: auto;
	font-size: 12px;
	color: var(--ink-2);
}
.soft-foot__topbtn:hover { color: var(--accent-2); }

/* Motion — subtle */
.soft-rise { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1100px) {
	.soft-feat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.soft-tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.soft-cat-blocks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.soft-home__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 860px) {
	:root { --header-h: auto; --gutter: 16px; --section-y: 16px; }
	.soft-header { height: auto; }
	.soft-header__inner {
		flex-wrap: wrap;
		padding: var(--space) 0;
		gap: var(--space);
	}
	.soft-nav-toggle { display: inline-flex; margin-left: auto; }
	.soft-nav { display: none; order: 4; width: 100%; }
	body.is-nav-open .soft-nav { display: block; }
	.soft-nav__list { flex-direction: column; align-items: stretch; }
	.soft-nav__list > .menu-item > a {
		height: 40px; padding-left: 12px;
	}
	.soft-nav__list > .current-menu-item > a {
		background: var(--accent-soft);
	}
	.soft-seek { order: 3; width: 100%; }
	.soft-seek:focus-within { width: 100%; }
	.soft-feat-grid,
	.soft-tile-grid,
	.soft-cat-blocks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.soft-list-row__meta span { display: none; }
	.soft-soft__hero {
		grid-template-columns: 1fr;
	}
	.soft-soft__hero-main { flex-direction: column; }
	.soft-soft__hero-dl {
		padding-left: 0;
		padding-top: var(--space);
	}
	.soft-soft__layout { grid-template-columns: 1fr; }
	.soft-guide-grid > li > a {
		grid-template-columns: minmax(0, 1fr);
	}
	.soft-guide-grid time { grid-column: 1; grid-row: auto; }
}

@media (max-width: 480px) {
	:root { --gutter: 16px; }
	.soft-feat-grid,
	.soft-tile-grid { grid-template-columns: minmax(0, 1fr); }
	.soft-cat-blocks { grid-template-columns: minmax(0, 1fr); }
}
