/* ==========================================================================
   Archive — sidebar (denser + larger typography) + cards (bg + hover lift)
   ========================================================================== */

.tshp-archive {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 24px;
	max-width: 1600px;
	margin: 0 auto;
	align-items: flex-start;
}

@media (max-width: 1023px) {
	.tshp-archive {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* ==========================================================================
   Filter sidebar — section labels + pill-button options + tree connector
   ========================================================================== */
.tshp-filter {
	position: sticky;
	top: 32px;
	background: var(--tshp-surface);
	border: 1px solid var(--tshp-border-soft);
	border-radius: 16px;
	padding: 20px 16px;
}

.tshp-filter__group {
	padding: 14px 0;
	border-top: 1px solid var(--tshp-divider);
}
.tshp-filter__group:first-of-type { border-top: 0; padding-top: 4px; }

.tshp-filter__group-label {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--tshp-text);
	margin: 0 0 10px;
	padding: 0 10px;
	line-height: 1.3;
}

/* Items list — reset list styles, fight any parent-theme <li> margin. */
.tshp-filter__items {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 1px;
}
.tshp-filter__items > li,
.tshp-page .tshp-filter__items li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	text-indent: 0 !important;
}

.tshp-filter__item {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* Pill button — the clickable filter row (compact vertical rhythm) */
.tshp-filter__pill {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px 12px;
	border-radius: 10px;
	border: 1px solid transparent;
	background: transparent;
	cursor: pointer;
	font-size: 14px;
	color: var(--tshp-text-soft);
	transition: background var(--tshp-trans), color var(--tshp-trans), border-color var(--tshp-trans);
	user-select: none;
	line-height: 1.4;
}
.tshp-filter__pill:hover {
	background: var(--tshp-bg-alt);
	color: var(--tshp-text);
}
.tshp-filter__pill.is-active {
	background: var(--tshp-text);
	color: #fff;
	border-color: var(--tshp-text);
}
.tshp-filter__pill-name {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.tshp-filter__pill-count {
	flex-shrink: 0;
	min-width: 22px;
	padding: 1px 8px;
	border-radius: var(--tshp-radius-pill);
	font-size: 11px;
	font-weight: 500;
	text-align: center;
	background: rgba(0, 0, 0, 0.06);
	color: var(--tshp-text-muted);
	font-family: var(--tshp-font-sans);
	font-feature-settings: "tnum" 1;
}
.tshp-filter__pill.is-active .tshp-filter__pill-count {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

/* Chevron toggle — appears next to pill when item has children */
.tshp-filter__pill-toggle {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: var(--tshp-text-muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: background var(--tshp-trans), color var(--tshp-trans), transform var(--tshp-trans);
}
.tshp-filter__pill-toggle:hover {
	background: var(--tshp-bg-alt);
	color: var(--tshp-text);
}
.tshp-filter__pill-toggle.is-open {
	transform: rotate(180deg);
}
/* Defend the toggle from WoodMart's <button> base styles */
.tshp-page button.tshp-filter__pill-toggle {
	background: transparent !important;
	border-radius: 8px !important;
	box-shadow: none !important;
	text-shadow: none !important;
	padding: 0 !important;
	min-height: 0 !important;
}
.tshp-page button.tshp-filter__pill-toggle:hover {
	background: var(--tshp-bg-alt) !important;
}

/* Sub-list — vertical guide line + indent gives the tree feel */
.tshp-filter__items--sub {
	display: none;
	margin: 4px 0 6px 18px !important;
	padding-left: 12px !important;
	border-left: 1px solid var(--tshp-divider);
}
.tshp-filter__items--sub.is-open { display: flex; flex-direction: column; gap: 1px; }
.tshp-filter__items--sub .tshp-filter__pill {
	font-size: 13px;
	padding: 4px 10px;
}

/* ==========================================================================
   Price range slider — dual-handle, single row
   ========================================================================== */
.tshp-filter__price-range {
	padding: 4px 0;
}
.tshp-filter__price-display {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 14px;
	font-size: 13px;
	color: var(--tshp-text);
	font-family: var(--tshp-font-sans);
	font-feature-settings: "tnum" 1;
}
.tshp-filter__price-num {
	font-weight: 500;
}
.tshp-filter__price-sep {
	color: var(--tshp-text-dim);
}
.tshp-filter__price-track {
	position: relative;
	height: 26px;
	margin: 0 8px;
}
.tshp-filter__price-track::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 4px;
	background: var(--tshp-border);
	border-radius: var(--tshp-radius-pill);
	transform: translateY(-50%);
}
.tshp-filter__price-fill {
	position: absolute;
	top: 50%;
	height: 4px;
	background: var(--tshp-text);
	border-radius: var(--tshp-radius-pill);
	transform: translateY(-50%);
	z-index: 1;
}
.tshp-filter__price-slider {
	position: absolute;
	top: 4px;
	left: -8px;
	right: -8px;
	width: calc(100% + 16px);
	height: 18px;
	background: transparent;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	z-index: 2;
}
/* WebKit thumb */
.tshp-filter__price-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	pointer-events: auto;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--tshp-text);
	cursor: grab;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
	transition: transform var(--tshp-trans), box-shadow var(--tshp-trans);
}
.tshp-filter__price-slider::-webkit-slider-thumb:hover {
	transform: scale(1.15);
}
.tshp-filter__price-slider::-webkit-slider-thumb:active {
	cursor: grabbing;
	transform: scale(1.25);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.tshp-filter__price-slider::-webkit-slider-runnable-track {
	background: transparent;
	height: 18px;
}
/* Firefox thumb */
.tshp-filter__price-slider::-moz-range-thumb {
	pointer-events: auto;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--tshp-text);
	cursor: grab;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.tshp-filter__price-slider::-moz-range-track { background: transparent; height: 18px; border: 0; }
/* Stack max-slider above min-slider so its thumb is reachable on the right */
.tshp-filter__price-slider--max { z-index: 3; }
.tshp-filter__price-bounds {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	padding: 0 4px;
	font-size: 11px;
	color: var(--tshp-text-dim);
	font-family: var(--tshp-font-sans);
	font-feature-settings: "tnum" 1;
}

/* Tag chips */
.tshp-filter__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.tshp-filter__chip {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: var(--tshp-radius-pill);
	font-size: 13px;
	background: var(--tshp-surface);
	border: 1px solid var(--tshp-border);
	color: var(--tshp-text-soft);
	cursor: pointer;
	transition: all var(--tshp-trans);
	user-select: none;
}
.tshp-filter__chip:hover { border-color: var(--tshp-text-soft); color: var(--tshp-text); }
.tshp-filter__chip.is-on {
	background: var(--tshp-text);
	color: #fff;
	border-color: var(--tshp-text);
}

/* Actions */
.tshp-filter__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--tshp-divider);
}
.tshp-filter__apply { width: 100%; }
.tshp-filter__clear {
	font-size: 12px;
	color: var(--tshp-text-muted);
	text-align: center;
	text-decoration: none;
	transition: color var(--tshp-trans);
	letter-spacing: 0.04em;
}
.tshp-filter__clear:hover { color: var(--tshp-status-rejected); }

/* Mobile drawer */
@media (max-width: 1023px) {
	.tshp-filter {
		position: fixed;
		top: 0;
		right: -100%;
		width: 320px;
		max-width: 88vw;
		height: 100%;
		max-height: 100%;
		z-index: 1000;
		transition: right 280ms cubic-bezier(0.4, 0, 0.2, 1);
		background: var(--tshp-surface);
		box-shadow: var(--tshp-shadow-lg);
		padding: 32px 28px;
		overflow-y: auto;
	}
	.tshp-filter.is-open { right: 0; }
}

/* ==========================================================================
   Archive top-bar — title + prominent search + 刊登商品 CTA
   ========================================================================== */
.tshp-archive__topbar {
	background: var(--tshp-surface);
	border: 1px solid var(--tshp-border-soft);
	border-radius: 16px;
	padding: 22px 26px;
	margin: 0 auto 24px;
	max-width: 1600px;
}
.tshp-archive__topbar-row {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.tshp-archive__heading {
	flex: 0 0 auto;
	min-width: 0;
}
.tshp-archive__title {
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: var(--tshp-text);
	line-height: 1.25;
}
.tshp-archive__desc {
	margin: 0;
	color: var(--tshp-text-muted);
	font-size: 12px;
	line-height: 1.5;
}

/* Prominent rounded search bar with embedded black submit */
.tshp-archive__search {
	flex: 0 1 460px;
	min-width: 240px;
	max-width: 520px;
	display: flex;
	align-items: center;
	gap: 0;
	background: var(--tshp-bg-alt);
	border: 1px solid transparent;
	border-radius: var(--tshp-radius-pill);
	padding: 4px 4px 4px 16px;
	transition: background var(--tshp-trans), border-color var(--tshp-trans), box-shadow var(--tshp-trans);
}
.tshp-archive__search:focus-within {
	background: var(--tshp-surface);
	border-color: var(--tshp-text);
	box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.06);
}
.tshp-archive__search-icon {
	color: var(--tshp-text-muted);
	flex-shrink: 0;
	display: inline-flex;
}
/* Defend against WoodMart's <input type="search"> base styles which add
   their own background, border, border-radius, and box-shadow — creating
   a visible inner frame inside our pill. */
.tshp-page .tshp-archive__search input,
.tshp-archive__search input[type="search"] {
	flex: 1;
	min-width: 0;
	background: transparent !important;
	border: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	padding: 9px 12px !important;
	font-size: 14px !important;
	font-family: inherit !important;
	color: var(--tshp-text) !important;
	-webkit-appearance: none;
	appearance: none;
	height: auto !important;
	line-height: 1.4 !important;
}
.tshp-archive__search input::placeholder { color: var(--tshp-text-dim); }
.tshp-archive__search input::-webkit-search-decoration,
.tshp-archive__search input::-webkit-search-cancel-button { display: none; }

/* Defend the black submit against WoodMart <button> base styles */
.tshp-page button.tshp-archive__search-submit,
.tshp-archive__search-submit {
	background: var(--tshp-text) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 9px 22px !important;
	border-radius: var(--tshp-radius-pill) !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	letter-spacing: 0.04em !important;
	cursor: pointer;
	font-family: inherit;
	transition: background var(--tshp-trans);
	flex-shrink: 0;
	box-shadow: none !important;
	text-shadow: none !important;
	min-height: 0 !important;
	line-height: 1.4 !important;
}
.tshp-page button.tshp-archive__search-submit:hover,
.tshp-archive__search-submit:hover {
	background: #000 !important;
	color: #fff !important;
}

/* 我的商品 entry — outline pill, lives just before the blue CTA */
.tshp-archive__my {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 18px;
	background: var(--tshp-surface);
	color: var(--tshp-text);
	border: 1px solid var(--tshp-border);
	border-radius: var(--tshp-radius-pill);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: background var(--tshp-trans), border-color var(--tshp-trans), color var(--tshp-trans);
	flex-shrink: 0;
	margin-left: auto;
	letter-spacing: 0.02em;
}
.tshp-archive__my + .tshp-archive__cta-publish { margin-left: 0; }
.tshp-archive__my:hover {
	background: var(--tshp-bg-alt);
	border-color: var(--tshp-text-soft);
	color: var(--tshp-text);
}

/* 刊登商品 CTA — Tesla deep blue rgb(15, 76, 129), pinned to right edge */
.tshp-archive__cta-publish {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 20px;
	background: rgb(15, 76, 129);
	color: #fff;
	border-radius: var(--tshp-radius-pill);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background var(--tshp-trans), transform var(--tshp-trans), box-shadow var(--tshp-trans);
	flex-shrink: 0;
	margin-left: auto;
	letter-spacing: 0.02em;
	box-shadow: 0 1px 2px rgba(15, 76, 129, 0.22);
}
.tshp-archive__cta-publish:hover {
	background: rgb(11, 60, 103);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(15, 76, 129, 0.28);
}
.tshp-archive__cta-publish:focus-visible {
	outline: 3px solid rgba(15, 76, 129, 0.35);
	outline-offset: 2px;
}

/* Utility row below: count + active filters (left) | sort (right) */
.tshp-archive__util {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--tshp-divider);
	flex-wrap: wrap;
}
.tshp-archive__util-left {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	min-width: 0;
	flex: 1 1 auto;
}
.tshp-archive__count {
	font-size: 13px;
	color: var(--tshp-text-muted);
	letter-spacing: 0.02em;
	flex-shrink: 0;
}
.tshp-archive__count strong {
	color: var(--tshp-text);
	font-size: 15px;
	font-weight: 600;
	font-family: var(--tshp-font-sans);
	font-feature-settings: "tnum" 1;
}

/* Active filter chips — populated client-side from current form state */
.tshp-archive__active {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.tshp-archive__active:empty,
.tshp-archive__active:not(.is-active) { display: none; }
.tshp-archive__active::before {
	content: "";
	width: 1px;
	height: 14px;
	background: var(--tshp-divider);
	flex-shrink: 0;
}
.tshp-active-filter {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 6px 4px 12px;
	background: var(--tshp-bg-alt);
	border: 1px solid var(--tshp-border-soft);
	border-radius: var(--tshp-radius-pill);
	font-size: 12px;
	color: var(--tshp-text);
	cursor: pointer;
	font-family: inherit;
	transition: background var(--tshp-trans), border-color var(--tshp-trans);
	letter-spacing: 0.02em;
	line-height: 1.4;
}
.tshp-page button.tshp-active-filter {
	background: var(--tshp-bg-alt) !important;
	border: 1px solid var(--tshp-border-soft) !important;
	border-radius: var(--tshp-radius-pill) !important;
	padding: 4px 6px 4px 12px !important;
	box-shadow: none !important;
	text-shadow: none !important;
	color: var(--tshp-text) !important;
	font-weight: 400 !important;
	min-height: 0 !important;
}
.tshp-active-filter:hover,
.tshp-page button.tshp-active-filter:hover {
	background: #fff !important;
	border-color: var(--tshp-text-soft) !important;
}
.tshp-active-filter__x {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.06);
	color: var(--tshp-text-muted);
	transition: background var(--tshp-trans), color var(--tshp-trans);
	flex-shrink: 0;
}
.tshp-active-filter:hover .tshp-active-filter__x {
	background: var(--tshp-text);
	color: #fff;
}
.tshp-archive__active-clear {
	font-size: 12px;
	color: var(--tshp-text-muted);
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 4px 8px;
	font-family: inherit;
	letter-spacing: 0.04em;
	transition: color var(--tshp-trans);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.tshp-page button.tshp-archive__active-clear {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	text-shadow: none !important;
	padding: 4px 8px !important;
	color: var(--tshp-text-muted) !important;
	min-height: 0 !important;
	font-weight: 400 !important;
	border-radius: 0 !important;
}
.tshp-archive__active-clear:hover,
.tshp-page button.tshp-archive__active-clear:hover {
	color: var(--tshp-status-rejected) !important;
}

/* Sort dropdown — match the pill language. Defended with !important against
   WoodMart's <select> base styles which would otherwise win on radius/border. */
.tshp-archive__sort { font-size: 12px; color: var(--tshp-text-muted); flex-shrink: 0; }
.tshp-page .tshp-archive__sort select,
.tshp-archive__sort select {
	border: 1px solid var(--tshp-border) !important;
	background-color: var(--tshp-surface) !important;
	padding: 8px 36px 8px 16px !important;
	border-radius: var(--tshp-radius-pill) !important;
	font-size: 13px !important;
	color: var(--tshp-text) !important;
	font-family: inherit !important;
	cursor: pointer;
	letter-spacing: 0.02em !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	box-shadow: none !important;
	text-shadow: none !important;
	height: auto !important;
	line-height: 1.4 !important;
	min-height: 0 !important;
	transition: border-color var(--tshp-trans), box-shadow var(--tshp-trans);
}
.tshp-page .tshp-archive__sort select:hover,
.tshp-archive__sort select:hover {
	border-color: var(--tshp-text-soft) !important;
}
.tshp-page .tshp-archive__sort select:focus,
.tshp-archive__sort select:focus {
	outline: none !important;
	border-color: var(--tshp-text) !important;
	box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.06) !important;
}

@media (max-width: 768px) {
	.tshp-archive__topbar { padding: 18px; }
	.tshp-archive__heading { flex: 1 1 100%; }
	.tshp-archive__search { flex: 1 1 100%; }
	.tshp-archive__cta-publish { flex: 1 1 100%; justify-content: center; }
}

/* ==========================================================================
   Grid + cards — visible bg, border, hover lift
   ========================================================================== */
.tshp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
	margin-top: 0;
}

@media (max-width: 768px) {
	.tshp-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}

.tshp-card {
	background: var(--tshp-surface);
	border: 1px solid var(--tshp-border-soft);
	border-radius: var(--tshp-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
	            box-shadow 240ms cubic-bezier(0.4, 0, 0.2, 1),
	            border-color 240ms cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.tshp-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10),
	            0 4px 10px rgba(0, 0, 0, 0.06);
	border-color: var(--tshp-border);
}
.tshp-card.is-dim { opacity: 0.55; }
.tshp-card.is-dim:hover {
	opacity: 0.75;
	transform: translateY(-2px);
}

.tshp-card__link {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.tshp-card__media {
	position: relative;
	aspect-ratio: 4/3;
	background: var(--tshp-bg-alt);
	overflow: hidden;
	/* Defend against parent-theme article padding (WoodMart). */
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 0 !important;
}
/* Defend against WoodMart's <img> base styles inside article content
   (padding, border, border-radius, box-shadow create a "framed" look that
   only disappears on hover when transform: scale fills the gap). */
.tshp-page .tshp-card__img,
img.tshp-card__img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	object-fit: cover;
	transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
}
.tshp-card:hover .tshp-card__img { transform: scale(1.06); }

.tshp-card__status {
	position: absolute;
	top: 10px;
	left: 10px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: var(--tshp-radius-pill);
	font-size: 11px;
	font-weight: 500;
	color: var(--tshp-text);
	letter-spacing: 0.04em;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(6px);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.tshp-card__status::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}
.tshp-card__status--available { color: var(--tshp-status-available); }
.tshp-card__status--sold      { color: var(--tshp-status-sold); }
.tshp-card__status--expired   { color: var(--tshp-status-expired); }
.tshp-card__status--expiring  { color: var(--tshp-status-expiring); }
.tshp-card__status--pending   { color: var(--tshp-status-pending); }

.tshp-card__body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.tshp-card__title {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--tshp-text);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.7em;
}
.tshp-card__price {
	font-size: 16px;
	font-weight: 600;
	color: var(--tshp-text);
	font-family: var(--tshp-font-sans);
	font-feature-settings: "tnum" 1;
	letter-spacing: 0;
}
.tshp-card__meta {
	font-size: 11px;
	color: var(--tshp-text-muted);
	margin-top: 4px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-items: center;
	letter-spacing: 0.02em;
}
.tshp-card__sep { color: var(--tshp-text-dim); }
.tshp-card__loc {
	display: inline-flex;
	align-items: center;
	gap: 3px;
}
.tshp-card__loc .tshp-icon { width: 11px; height: 11px; }

/* ==========================================================================
   Pagination
   ========================================================================== */
.tshp-pagination {
	margin-top: 56px;
	display: flex;
	justify-content: center;
	gap: 4px;
	flex-wrap: wrap;
}
.tshp-pagination .page-numbers {
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--tshp-text-muted);
	text-decoration: none;
	font-size: 13px;
	font-family: var(--tshp-font-sans);
	border-radius: var(--tshp-radius-sm);
	transition: all var(--tshp-trans);
}
.tshp-pagination .page-numbers:hover { color: var(--tshp-text); background: var(--tshp-bg-alt); }
.tshp-pagination .page-numbers.current {
	background: var(--tshp-text);
	color: #fff;
}
