.ws-page {
	max-width: 1500px;
	width: 100%;
}

.ws-page.ws-page-home {
	max-width: min(1860px, calc(100vw - 32px));
}

.ws-layout {
	display: grid;
	grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.ws-page-home .ws-layout {
	grid-template-columns: minmax(210px, 250px) minmax(0, 1fr) minmax(260px, 320px);
	gap: 20px;
}

.ws-sidebar {
	position: sticky;
	top: 16px;
	align-self: start;
	background: #ffffff;
	border: 1px solid #e6e9ee;
	border-radius: 18px;
	padding: 16px 14px;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
	min-height: calc(100vh - 48px);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ws-page-home .ws-sidebar {
	padding-inline: 12px;
}

.ws-sidebar-brand {
	padding-bottom: 12px;
	border-bottom: 1px solid #e5e7eb;
}

.ws-brand-link {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.ws-brand-link img {
	max-height: 40px;
	width: auto;
}

.ws-brand-text {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
}

.ws-top-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ws-top-nav-list a {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: #f1f5f9;
	color: #0f172a;
	font-weight: 600;
	font-size: 12px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.ws-top-nav-list a:hover,
.ws-top-nav-list a:focus {
	background: #e0e7ff;
	color: #1d4ed8;
}

.ws-sidebar-title {
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6b7280;
	margin: 6px 0 8px;
	font-weight: 600;
}

.ws-side-menu,
.ws-side-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ws-side-menu > li + li {
	margin-top: 4px;
}

.ws-side-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 8px;
	border-radius: 10px;
	text-decoration: none;
	color: #1f2937;
	font-weight: 500;
	transition: background 0.2s ease, color 0.2s ease;
}

.ws-menu-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 18px;
	font-size: 18px;
	width: 18px;
	height: 18px;
	color: #64748b;
}

.ws-menu-icon img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.ws-side-menu .menu-item-has-children > a .ws-menu-icon {
	color: #1d4ed8;
}

.ws-side-menu a:hover,
.ws-side-menu a:focus {
	background: #f3f4f6;
	color: #111827;
}

.ws-side-menu .menu-item-has-children > a {
	font-weight: 600;
	color: #0f172a;
}

.ws-side-menu ul {
	margin-top: 6px;
	margin-left: 10px;
	padding-left: 8px;
	border-left: 1px dashed #e5e7eb;
	display: grid;
	gap: 4px;
}

.ws-sidebar-widgets {
	display: grid;
	gap: 10px;
}

.ws-sidebar-widget {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 10px;
}

.ws-sidebar-widget-title {
	margin: 0 0 8px 0;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.ws-sidebar-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 6px;
}

.ws-sidebar-widget a {
	color: #1f2937;
	text-decoration: none;
}

.ws-sidebar-widget a:hover,
.ws-sidebar-widget a:focus {
	color: #1d4ed8;
}

.ws-nav-group + .ws-nav-group {
	margin-top: 18px;
	padding-top: 12px;
	border-top: 1px dashed #e5e7eb;
}

.ws-nav-group-title {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.ws-nav-list {
	display: grid;
	gap: 6px;
}

.ws-nav-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 10px;
	text-decoration: none;
	color: #1f2937;
	font-weight: 500;
	transition: background 0.2s ease, color 0.2s ease;
}

.ws-nav-link:hover,
.ws-nav-link:focus {
	background: #f3f4f6;
	color: #111827;
}

.ws-nav-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, #0ea5e9, #22c55e);
	flex-shrink: 0;
}

.ws-main {
	display: grid;
	gap: 36px;
	min-width: 0;
}

.ws-featured-sites {
	position: relative;
	overflow: hidden;
	padding: 0;
	border: 1px solid #e4ebf4;
	border-radius: 16px;
	background: linear-gradient(180deg, #ffffff, #f7fafc);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.ws-featured-shell {
	position: relative;
	z-index: 1;
	padding: 14px;
}

.ws-featured-header {
	align-items: flex-start;
	margin-bottom: 12px;
}

.ws-featured-heading {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.ws-featured-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	color: #374151;
}

.ws-featured-kicker-icon {
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: linear-gradient(135deg, #fb7185, #f59e0b);
	box-shadow: 0 10px 22px rgba(251, 113, 133, 0.24);
	position: relative;
	flex-shrink: 0;
}

.ws-featured-kicker-icon::before {
	content: "";
	position: absolute;
	inset: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
}

.ws-featured-title {
	font-size: clamp(24px, 3vw, 32px);
	letter-spacing: -0.02em;
}

.ws-tag-description {
	margin: 6px 0 0;
	font-size: 14px;
	line-height: 1.65;
	color: #64748b;
}

.ws-featured-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.ws-featured-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, #fb923c, #f97316);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(249, 115, 22, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.ws-featured-action:hover,
.ws-featured-action:focus {
	transform: translateY(-1px);
	box-shadow: 0 18px 32px rgba(249, 115, 22, 0.24);
	opacity: 0.96;
	color: #ffffff;
}

.ws-featured-action-minimal {
	min-width: auto;
	padding: 4px 2px;
	background: transparent;
	color: #475569;
	box-shadow: none;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.08em;
}

.ws-featured-action-minimal:hover,
.ws-featured-action-minimal:focus {
	box-shadow: 0 14px 30px rgba(148, 163, 184, 0.14);
	color: #0f172a;
}

.ws-featured-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border-radius: 12px;
	background: #e8eef6;
}

.ws-featured-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	padding: 11px 12px;
	border-radius: 0;
	text-decoration: none;
	color: #1e293b;
	background: rgba(255, 255, 255, 0.94);
	border: 0;
	box-shadow: none;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.ws-featured-item:hover,
.ws-featured-item:focus {
	background: #f8fbff;
	box-shadow: inset 0 0 0 1px #bfdbfe;
	color: #0f172a;
}

.ws-featured-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	flex-shrink: 0;
	overflow: hidden;
	background: color-mix(in srgb, var(--ws-featured-color, #2563eb) 18%, #ffffff);
	color: var(--ws-featured-color, #2563eb);
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--ws-featured-color, #2563eb) 12%, #e5edf6);
}

.ws-featured-mark-icon {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ws-featured-mark-text {
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	display: none;
}

.ws-featured-mark.is-fallback .ws-featured-mark-text,
.ws-featured-mark:not(:has(.ws-featured-mark-icon)) .ws-featured-mark-text {
	display: inline-block;
}

.ws-featured-body {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.ws-featured-text {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	color: #1f2937;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ws-featured-meta {
	font-size: 11px;
	font-weight: 500;
	line-height: 1.2;
	color: #64748b;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ws-hot-strip {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	overflow: hidden;
	padding: 9px 12px;
	border: 1px solid #e5edf6;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.ws-hot-strip-label {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex: 0 0 auto;
	padding-right: 12px;
	border-right: 1px solid #e5eaf1;
	font-size: 13px;
	font-weight: 800;
	color: #0f172a;
	white-space: nowrap;
}

.ws-hot-strip-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #ef4444;
	box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.ws-hot-strip-track {
	min-width: 0;
	overflow: hidden;
	flex: 1 1 auto;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}

.ws-hot-strip-list {
	display: flex;
	align-items: center;
	gap: 10px;
	width: max-content;
	animation: ws-hot-scroll 34s linear infinite;
}

.ws-hot-strip:hover .ws-hot-strip-list {
	animation-play-state: paused;
}

.ws-hot-strip-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: 210px;
	padding: 5px 9px 5px 6px;
	border-radius: 999px;
	background: #f8fafc;
	color: #334155;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease;
}

.ws-hot-strip-item:hover,
.ws-hot-strip-item:focus {
	background: #eff6ff;
	color: #1d4ed8;
}

.ws-hot-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	overflow: hidden;
	border-radius: 7px;
	background: #eef2f7;
}

.ws-hot-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ws-hot-icon-fallback {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--ws-hot-fallback, #2563eb);
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.ws-hot-icon.is-fallback .ws-hot-icon-fallback,
.ws-hot-icon:not(:has(img)) .ws-hot-icon-fallback {
	display: flex;
}

.ws-hot-title {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

@keyframes ws-hot-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.ws-tag-header {
	gap: 14px;
}

.ws-tag-stats {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
}

.ws-tag-stat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 999px;
	background: #eff6ff;
	color: #1e3a8a;
	font-size: 13px;
	font-weight: 600;
}

.ws-tag-stat strong {
	font-size: 14px;
	font-weight: 800;
	color: #0f172a;
}

.ws-tag-posts {
	margin-top: 20px;
}

.ws-tag-posts-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.ws-section-link-muted {
	color: #94a3b8;
	pointer-events: none;
}

.ws-home-aside {
	position: sticky;
	top: 16px;
	align-self: start;
	display: grid;
	gap: 16px;
}

.ws-latest-sites {
	padding: 20px;
}

.ws-latest-sites-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.ws-latest-site {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	padding: 10px;
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	text-decoration: none;
	color: inherit;
	background: linear-gradient(145deg, #ffffff, #f8fafc);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ws-latest-site:hover,
.ws-latest-site:focus {
	transform: translateY(-1px);
	border-color: #dbeafe;
	box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
}

.ws-latest-site-icon {
	width: 30px;
	height: 30px;
	border-radius: 9px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f1f5f9;
	flex: 0 0 30px;
	position: relative;
}

.ws-latest-site-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ws-latest-site-icon-fallback {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--ws-latest-site-fallback, #2563eb);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}

.ws-latest-site-icon.is-fallback {
	background: transparent;
}

.ws-latest-site-icon.is-fallback .ws-latest-site-icon-fallback {
	display: flex;
}

.ws-latest-site-title {
	min-width: 0;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	color: #0f172a;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ws-home-latest {
	padding: 20px;
}

.ws-latest-list {
	display: grid;
	gap: 12px;
}

.ws-latest-item {
	min-width: 0;
}

.ws-latest-item-link {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 10px;
	border-radius: 16px;
	text-decoration: none;
	color: inherit;
	background: linear-gradient(145deg, #ffffff, #f8fafc);
	border: 1px solid transparent;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ws-latest-item-link:hover,
.ws-latest-item-link:focus {
	transform: translateY(-1px);
	border-color: #dbeafe;
	box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
}

.ws-latest-thumb {
	display: block;
	width: 72px;
	height: 54px;
	border-radius: 12px;
	overflow: hidden;
	background: #e2e8f0;
}

.ws-latest-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ws-latest-content {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.ws-latest-date {
	font-size: 12px;
	font-weight: 600;
	color: #64748b;
	line-height: 1.2;
}

.ws-latest-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	color: #0f172a;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ws-section {
	background: #ffffff;
	border: 1px solid #e6e9ee;
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.ws-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
	gap: 16px;
}

.ws-section-title {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	color: #0f172a;
}

.ws-section-link {
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	color: #2563eb;
}

.ws-section-header-with-filters {
	align-items: flex-start;
}

.ws-section-head-main {
	min-width: 0;
	display: grid;
	gap: 2px;
}

.ws-section-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.ws-section-filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 11px;
	border-radius: 999px;
	border: 1px solid #dbeafe;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: all 0.2s ease;
}

.ws-section-filter:hover,
.ws-section-filter:focus {
	background: #dbeafe;
	border-color: #bfdbfe;
	color: #1e3a8a;
}

.ws-section-filter.is-active {
	background: #2563eb;
	border-color: #2563eb;
	color: #ffffff;
}

.ws-section-results {
	transition: opacity 0.2s ease;
}

.ws-section-results.is-loading {
	opacity: 0.56;
	pointer-events: none;
}

.ws-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}

.ws-term-pagination {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ws-term-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	padding: 6px 10px;
	border-radius: 10px;
	border: 1px solid #dbe5f3;
	background: #ffffff;
	color: #334155;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ws-term-page-link:hover,
.ws-term-page-link:focus {
	border-color: #bfdbfe;
	background: #eff6ff;
	color: #1d4ed8;
}

.ws-term-page-link.is-current {
	border-color: #2563eb;
	background: #2563eb;
	color: #ffffff;
}

.ws-term-page-gap {
	display: inline-flex;
	align-items: center;
	padding: 0 4px;
	color: #94a3b8;
	font-weight: 600;
}

.ws-card {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px;
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	text-decoration: none;
	color: inherit;
	background: linear-gradient(145deg, #ffffff, #fafcff);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ws-card:hover,
.ws-card:focus {
	transform: translateY(-2px);
	border-color: #cbd5f5;
	box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
}

.ws-card-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f1f5f9;
	flex-shrink: 0;
	position: relative;
}

.ws-card-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ws-card-icon-fallback {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--ws-fallback-color, #2563eb);
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.ws-card-icon.is-fallback {
	background: transparent;
}

.ws-card-icon.is-fallback .ws-card-icon-fallback {
	display: flex;
}

.ws-card-body {
	min-width: 0;
}

.ws-card-title {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 4px 0;
	color: #111827;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ws-card-desc {
	margin: 0;
	font-size: 12px;
	color: #6b7280;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ws-empty {
	font-size: 14px;
	color: #94a3b8;
}

.ws-detail {
	display: grid;
	gap: 24px;
}

.ws-detail-hero {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.ws-detail-icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	background: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
}

.ws-detail-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ws-detail-icon-fallback {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--ws-fallback-color, #2563eb);
	color: #ffffff;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.ws-detail-icon.is-fallback {
	background: transparent;
}

.ws-detail-icon.is-fallback .ws-detail-icon-fallback {
	display: flex;
}

.ws-detail-body {
	min-width: 0;
	display: grid;
	gap: 8px;
}

.ws-detail-title {
	font-size: 26px;
	margin: 0;
	color: #0f172a;
	line-height: 1.25;
}

.ws-detail-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.ws-detail-title-row .ws-detail-title {
	min-width: 0;
}

.ws-detail-desc {
	margin: 2px 0 0 0;
	color: #64748b;
	font-size: 15px;
	line-height: 1.7;
}

.ws-detail-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ws-chip {
	padding: 4px 10px;
	border-radius: 999px;
	background: #eff6ff;
	color: #2563eb;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
}

.ws-detail-actions {
	margin-top: 14px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.ws-detail-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 999px;
	background: #2563eb;
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

.ws-detail-button:hover,
.ws-detail-button:focus {
	background: #1d4ed8;
	color: #ffffff;
}

.ws-share-panel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	flex: 0 0 auto;
	max-width: 48%;
}

.ws-share-label {
	font-size: 13px;
	font-weight: 700;
	color: #64748b;
}

.ws-share-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 5px 9px;
	border-radius: 7px;
	border: 1px solid transparent;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ws-share-button:hover,
.ws-share-button:focus {
	color: #ffffff;
	filter: brightness(0.96);
	box-shadow: 0 5px 12px rgba(15, 23, 42, 0.1);
}

.ws-share-wechat,
.ws-share-moments {
	background: #16a34a;
}

.ws-share-x {
	background: #0f172a;
}

.ws-share-weibo {
	background: #dc2626;
}

.ws-share-modal[hidden] {
	display: none;
}

.ws-share-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.ws-share-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.5);
}

.ws-share-modal-card {
	position: relative;
	z-index: 1;
	width: min(100%, 360px);
	padding: 22px;
	border-radius: 18px;
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.26);
	text-align: center;
}

.ws-share-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: #f1f5f9;
	color: #334155;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.ws-share-modal-title {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
}

.ws-share-modal-note {
	margin: 8px 0 16px;
	font-size: 13px;
	line-height: 1.55;
	color: #64748b;
}

.ws-share-qr {
	width: 220px;
	height: 220px;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
}

.ws-share-copy-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	margin-top: 16px;
}

.ws-share-copy-row input {
	min-width: 0;
	height: 36px;
	padding: 0 10px;
	border: 1px solid #dbe5f3;
	border-radius: 10px;
	color: #64748b;
	font-size: 12px;
}

.ws-share-copy-row button {
	height: 36px;
	padding: 0 12px;
	border-radius: 10px;
	background: #2563eb;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.ws-share-copy-status {
	min-height: 18px;
	margin: 8px 0 0;
	color: #16a34a;
	font-size: 12px;
}

.ws-detail-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 28%);
	gap: 24px;
	align-items: start;
}

.ws-detail-content-main {
	min-width: 0;
}

.ws-detail-content {
	color: #374151;
	font-size: 15px;
	line-height: 1.7;
}

.ws-detail-content h1,
.ws-detail-content h2,
.ws-detail-content h3 {
	margin: 1.2em 0 0.55em;
	line-height: 1.35;
	letter-spacing: 0.01em;
}

.ws-detail-content h1 {
	font-size: clamp(1.5rem, 2.3vw, 1.95rem);
}

.ws-detail-content h2 {
	font-size: clamp(1.28rem, 1.95vw, 1.62rem);
}

.ws-detail-content h3 {
	font-size: clamp(1.14rem, 1.55vw, 1.36rem);
}

.ws-detail-ad {
	min-width: 0;
}

.ws-detail-ad-widget {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #ffffff;
	padding: 14px;
}

.ws-detail-ad-title {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
}

.ws-detail-ad-placeholder p {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: #64748b;
}

.ws-feedback-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border: 1px solid #dbe5f3;
	border-radius: 999px;
	background: #ffffff;
	color: #334155;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
	cursor: pointer;
	transition: all 0.2s ease;
}

.ws-feedback-toggle:hover,
.ws-feedback-toggle:focus {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #1d4ed8;
	transform: translateY(-1px);
}

.ws-comment-jump {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	border: 1px solid #bbf7d0;
	border-radius: 999px;
	background: #f0fdf4;
	color: #166534;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(22, 101, 52, 0.07);
	transition: all 0.2s ease;
}

.ws-comment-jump:hover,
.ws-comment-jump:focus {
	background: #dcfce7;
	border-color: #86efac;
	color: #14532d;
	transform: translateY(-1px);
}

.ws-comment-jump .dashicons {
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.ws-comment-barrage {
	position: relative;
	max-width: min(720px, 100%);
	margin-top: 14px;
	overflow: hidden;
	border-radius: 14px;
	border: 1px solid #dbeafe;
	background: linear-gradient(90deg, #f8fbff 0%, #ffffff 45%, #f0fdf4 100%);
}

.ws-comment-barrage::before,
.ws-comment-barrage::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	width: 48px;
	pointer-events: none;
}

.ws-comment-barrage::before {
	left: 0;
	background: linear-gradient(90deg, #f8fbff, rgba(248, 251, 255, 0));
}

.ws-comment-barrage::after {
	right: 0;
	background: linear-gradient(270deg, #f0fdf4, rgba(240, 253, 244, 0));
}

.ws-comment-barrage-track {
	display: flex;
	width: max-content;
	gap: 10px;
	padding: 9px 0;
	animation: ws-comment-barrage 34s linear infinite;
}

.ws-comment-barrage:hover .ws-comment-barrage-track {
	animation-play-state: paused;
}

.ws-comment-barrage-item {
	display: inline-flex;
	align-items: center;
	max-width: 360px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #334155;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@keyframes ws-comment-barrage {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ws-hot-strip-list {
		animation: none;
	}

	.ws-comment-barrage-track {
		animation: none;
		flex-wrap: wrap;
		width: auto;
		padding: 9px;
	}
}

.ws-favorite-toggle {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid #fcd34d;
	background: #fffbeb;
	color: #92400e;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: all 0.2s ease;
}

.ws-favorite-toggle .dashicons {
	width: 16px;
	height: 16px;
	font-size: 16px;
}

.ws-favorite-toggle.is-active {
	background: #fef3c7;
	border-color: #f59e0b;
	color: #78350f;
}

.ws-favorite-toggle.is-loading {
	opacity: 0.7;
	cursor: wait;
}

.ws-feedback-panel {
	margin-top: 12px;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background: linear-gradient(145deg, #ffffff, #f8fbff);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 16px 30px rgba(15, 23, 42, 0.05);
	padding: 18px;
}

.ws-feedback-grid {
	display: grid;
	gap: 10px;
}

.ws-feedback-grid label {
	font-size: 13px;
	color: #334155;
	font-weight: 600;
}

.ws-feedback-grid select,
.ws-feedback-grid textarea,
.ws-feedback-grid input {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	background: #ffffff;
	padding: 11px 12px;
	font-size: 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ws-feedback-grid select:focus,
.ws-feedback-grid textarea:focus,
.ws-feedback-grid input:focus {
	border-color: #93c5fd;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
	outline: none;
}

.ws-feedback-grid textarea {
	min-height: 108px;
	resize: vertical;
}

.ws-feedback-actions {
	margin-top: 10px;
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.ws-feedback-submit {
	padding: 9px 16px;
	border: 0;
	border-radius: 999px;
	background: #2563eb;
	color: #ffffff;
	font-weight: 600;
	cursor: pointer;
}

.ws-feedback-submit[disabled] {
	opacity: 0.7;
	cursor: not-allowed;
}

.ws-feedback-result {
	margin: 0;
	font-size: 13px;
}

.ws-feedback-result.is-success {
	color: #047857;
}

.ws-feedback-result.is-error {
	color: #b91c1c;
}

.ws-comments-section .ct-comments {
	margin-top: 0;
}

.ws-member-box {
	display: grid;
	gap: 16px;
}

.ws-member-layout {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.ws-member-sidebar-nav {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #ffffff;
	padding: 14px;
	position: sticky;
	top: 90px;
	display: grid;
	gap: 12px;
}

.ws-member-sidebar-user {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eef2f7;
}

.ws-member-sidebar-info {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.ws-member-sidebar-name {
	margin: 0;
	font-weight: 700;
	font-size: 14px;
	color: #0f172a;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ws-member-sidebar-badge {
	display: flex;
	margin-top: 4px;
}

.ws-member-sidebar-badge .ts-member-badge {
	min-height: 22px;
	padding-inline: 9px;
	font-size: 12px;
}

.ws-member-nav {
	display: grid;
	gap: 6px;
}

.ws-member-nav-link {
	display: block;
	padding: 8px 10px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 14px;
	color: #334155;
	border: 1px solid transparent;
}

.ws-member-nav-link:hover {
	background: #f8fafc;
	color: #0f172a;
}

.ws-member-nav-link.is-active {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #1d4ed8;
	font-weight: 700;
}

.ws-member-main {
	display: grid;
	gap: 12px;
}

.ws-member-notice {
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 14px;
}

.ws-member-notice.is-success {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #065f46;
}

.ws-member-notice.is-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
}

.ws-member-notice.is-info {
	background: #eff6ff;
	border: 1px solid #bfdbfe;
	color: #1e3a8a;
}

.ts-member-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	width: fit-content;
	min-height: 22px;
	padding: 0 8px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.ts-member-badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 13px;
	height: 13px;
	flex: 0 0 13px;
}

.ts-member-badge-icon svg {
	display: block;
	width: 13px;
	height: 13px;
}

.ts-member-badge-columnist_gold {
	border-color: #facc15;
	background: linear-gradient(135deg, #fff7cc, #f59e0b);
	color: #78350f;
}

.ts-member-badge-verified_blue {
	border-color: #93c5fd;
	background: linear-gradient(135deg, #eff6ff, #2563eb);
	color: #ffffff;
}

.ts-member-badge-invited_purple {
	border-color: #c4b5fd;
	background: linear-gradient(135deg, #f5f3ff, #7c3aed);
	color: #ffffff;
}

.ct-comments .ct-comment-author {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
}

.ct-comments .ct-comment-author cite {
	display: inline-flex;
	align-items: center;
}

.ct-comments .ts-member-badge-context-comment {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	min-height: 20px;
	padding: 0 7px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
	overflow: hidden;
}

.ct-comments .ts-member-badge-context-comment .ts-member-badge-icon {
	width: 12px;
	height: 12px;
	flex-basis: 12px;
}

.ct-comments .ts-member-badge-context-comment .ts-member-badge-icon svg {
	width: 12px;
	height: 12px;
}

.ws-auth-box {
	width: min(100%, 520px);
	margin-inline: auto;
}

.ws-auth-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 16px;
}

.ws-auth-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	align-items: start;
	justify-content: center;
}

.ws-auth-switch {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 4px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #ffffff;
	width: fit-content;
}

.ws-auth-switch-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 76px;
	padding: 8px 14px;
	border-radius: 999px;
	color: #64748b;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.ws-auth-switch-link:hover {
	color: #1e293b;
}

.ws-auth-switch-link.is-active {
	background: #2563eb;
	color: #ffffff;
}

.ws-auth-grid-single {
	grid-template-columns: minmax(0, 480px);
}

.ws-auth-success-wrap {
	min-height: 52vh;
	place-items: center;
}

.ws-auth-success-card {
	width: min(100%, 420px);
	display: grid;
	justify-items: center;
	gap: 14px;
	padding: 34px 28px;
	border: 1px solid #e2e8f0;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
	text-align: center;
}

.ws-auth-success-avatar {
	width: 88px;
	height: 88px;
	border-radius: 999px;
	object-fit: cover;
	border: 3px solid #e2e8f0;
}

.ws-auth-success-title {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	color: #0f172a;
}

.ws-auth-success-text {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #475569;
}

.ws-auth-success-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 148px;
	padding: 11px 18px;
	border-radius: 999px;
	background: #2563eb;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.ws-auth-success-link:hover {
	background: #1d4ed8;
	color: #ffffff;
}

.ws-auth-success-countdown {
	margin: 0;
	font-size: 13px;
	color: #94a3b8;
}

.ws-auth-ucenter-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	margin: 0 0 16px;
	border: 1px solid #dbe2ea;
	border-radius: 12px;
	background: #ffffff;
	color: #334155;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.ws-auth-ucenter-link:hover {
	border-color: #93c5fd;
	color: #1d4ed8;
}

.ws-auth-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	justify-content: flex-end;
}

.ws-auth-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid #dbe2ea;
	border-radius: 12px;
	background: #ffffff;
	color: #334155;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.ws-auth-social-link .ts-member-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.ws-auth-social-link .ts-member-social-icon svg {
	display: block;
	width: 18px;
	height: 18px;
}

.ws-auth-social-link:hover {
	border-color: #93c5fd;
	color: #1d4ed8;
	text-decoration: none;
}

.ws-auth-social-link-weibo {
	border-color: #fde68a;
	background: linear-gradient(135deg, #fffaf0, #fff3c4);
	color: #92400e;
	box-shadow: 0 10px 22px rgba(146, 64, 14, 0.08);
}

.ws-auth-social-link-weibo:hover {
	border-color: #facc15;
	color: #78350f;
}

.ws-auth-card,
.ws-member-panel {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #ffffff;
	padding: 14px;
}

.ws-auth-card {
	padding: 24px;
	border-color: #e5e7eb;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.ws-auth-card h3,
.ws-member-panel h3 {
	margin: 0;
	font-size: 18px;
}

.ws-auth-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.35;
}

.ws-member-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ws-member-name-line {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.ws-member-name-line > * {
	margin-block: 0;
}

.ws-member-head h2 {
	margin: 0;
	font-size: 20px;
}

.ws-member-logout {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 999px;
	background: #eef2ff;
	color: #3730a3;
	font-size: 12px;
	text-decoration: none;
	font-weight: 600;
}

.ws-member-logout:hover {
	background: #e0e7ff;
	color: #312e81;
}

.ws-member-logout-side {
	justify-content: center;
	width: 100%;
}

.ws-member-avatar {
	width: 72px;
	height: 72px;
	border-radius: 999px;
	object-fit: cover;
	border: 2px solid #e2e8f0;
}

.ws-member-form {
	display: grid;
	gap: 8px;
}

.ws-member-form label {
	font-size: 13px;
	color: #334155;
	font-weight: 600;
}

.ws-member-form input,
.ws-member-form textarea,
.ws-member-form select {
	width: 100%;
	padding: 9px 10px;
	border-radius: 10px;
	border: 1px solid #cbd5e1;
	background: #ffffff;
	font-size: 14px;
}

.ws-member-form button {
	justify-self: start;
	padding: 9px 16px;
	border: 0;
	border-radius: 999px;
	background: #2563eb;
	color: #ffffff;
	font-weight: 600;
	cursor: pointer;
}

.ws-auth-form {
	display: grid;
	align-content: start;
	gap: 12px;
	margin-top: 14px;
}

.ws-member-form.ws-auth-form label {
	font-size: 13px;
	letter-spacing: 0;
	color: #475569;
}

.ws-member-form.ws-auth-form input {
	min-height: 44px;
	padding: 10px 12px;
	border-radius: 12px;
	border-color: #dbe2ea;
	background: #ffffff;
	box-shadow: none;
}

.ws-member-form.ws-auth-form input:focus {
	border-color: #93c5fd;
	box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.18);
	outline: none;
}

.ws-auth-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 2px;
}

.ws-auth-link {
	color: #64748b;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.ws-auth-link:hover {
	color: #1d4ed8;
	text-decoration: none;
}

.ws-member-form.ws-auth-form button {
	justify-self: stretch;
	width: 100%;
	margin-top: 2px;
	padding: 11px 16px;
	border-radius: 12px;
	background: #2563eb;
	box-shadow: none;
	transition: background 0.2s ease;
}

.ws-member-form.ws-auth-form button:hover {
	transform: none;
	background: #1d4ed8;
	box-shadow: none;
}

.ws-auth-form .ws-inline-check {
	margin-top: 0;
	color: #64748b;
}

.ws-inline-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	line-height: 1.4;
}

.ws-inline-check input[type="checkbox"],
.ws-member-form.ws-auth-form .ws-inline-check input[type="checkbox"] {
	width: 18px;
	min-width: 18px;
	height: 18px;
	min-height: 18px;
	margin: 0;
	padding: 0;
	border-radius: 4px;
	box-shadow: none;
	flex: 0 0 18px;
}

.ws-hidden-field {
	display: none !important;
}

.ws-member-muted {
	color: #64748b;
	font-size: 13px;
	margin: 0;
}

.ws-avatar-preview-wrap {
	padding: 8px 0 2px;
}

.ws-avatar-preview {
	width: 88px;
	height: 88px;
	border-radius: 999px;
	object-fit: cover;
	border: 1px solid #cbd5e1;
}

.ws-avatar-editor {
	display: grid;
	gap: 8px;
}

.ws-avatar-canvas-wrap {
	position: relative;
	display: inline-block;
	max-width: min(100%, 380px);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #cbd5e1;
	background: #0f172a;
}

.ws-avatar-canvas-image {
	display: block;
	width: 100%;
	height: auto;
}

.ws-avatar-crop-box {
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 120px;
	border: 2px solid #38bdf8;
	border-radius: 12px;
	box-shadow: 0 0 0 9999px rgba(15, 23, 42, 0.46);
	cursor: move;
}

.ws-avatar-crop-handle {
	position: absolute;
	right: -8px;
	bottom: -8px;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: #ffffff;
	border: 2px solid #0284c7;
	cursor: nwse-resize;
}

.ws-avatar-crop-fields {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.ws-avatar-crop-fields label {
	display: grid;
	gap: 6px;
}

.ws-avatar-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ws-avatar-actions .ws-avatar-apply-crop {
	background: #0f766e;
}

.ws-avatar-actions .ws-avatar-apply-crop:hover {
	background: #0d5f58;
}

.ws-avatar-actions .ws-avatar-submit[disabled] {
	background: #94a3b8;
	cursor: not-allowed;
}

.ws-avatar-crop-status {
	margin-top: 2px;
}

.ws-member-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.ws-member-table th,
.ws-member-table td {
	border-bottom: 1px solid #e5e7eb;
	padding: 8px 6px;
	text-align: left;
}

.ws-member-fav-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
	gap: 12px;
	align-items: stretch;
}

.ws-member-fav-item {
	position: relative;
	display: grid;
	align-content: center;
	justify-items: start;
	gap: 10px;
	min-height: 118px;
	padding: 16px 12px 12px;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	text-decoration: none;
	color: #1e293b;
	overflow: hidden;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.ws-member-fav-item:hover {
	background: #ffffff;
	border-color: #bfdbfe;
	color: #1d4ed8;
	box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
	transform: translateY(-1px);
}

.ws-member-fav-term {
	position: absolute;
	top: 8px;
	right: 8px;
	max-width: 76px;
	padding: 3px 7px;
	border-radius: 999px;
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ws-member-fav-term.is-empty {
	background: #f1f5f9;
	color: #94a3b8;
}

.ws-member-fav-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--ws-member-fav-color, #2563eb);
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	overflow: hidden;
	box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}

.ws-member-fav-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #ffffff;
}

.ws-member-fav-fallback {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ws-member-fav-color, #2563eb);
	color: #ffffff;
}

.ws-member-fav-icon img + .ws-member-fav-fallback {
	display: none;
}

.ws-member-fav-icon.is-fallback .ws-member-fav-fallback {
	display: flex;
}

.ws-member-fav-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
	word-break: break-word;
}

.ws-member-overview-links {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ws-member-overview-link {
	display: inline-flex;
	align-items: center;
	padding: 7px 10px;
	border-radius: 999px;
	border: 1px solid #dbeafe;
	background: #eff6ff;
	color: #1d4ed8;
	text-decoration: none;
	font-size: 13px;
}

.ws-member-overview-link:hover {
	background: #dbeafe;
	border-color: #bfdbfe;
}

@media (max-width: 980px) {
	.ws-layout {
		grid-template-columns: 1fr;
	}

	.ws-page.ws-page-home {
		max-width: 100%;
	}

	.ws-home-aside {
		position: static;
	}

	.ws-section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.ws-featured-header {
		gap: 14px;
	}

	.ws-featured-actions {
		justify-content: flex-start;
	}

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

	.ws-hot-strip {
		align-items: flex-start;
		flex-direction: column;
		gap: 9px;
	}

	.ws-hot-strip-label {
		border-right: 0;
		padding-right: 0;
	}

	.ws-home-latest {
		padding: 16px;
	}

	.ws-latest-sites {
		padding: 16px;
	}

	.ws-latest-item-link {
		grid-template-columns: 64px minmax(0, 1fr);
		gap: 10px;
		padding: 8px;
	}

	.ws-latest-thumb {
		width: 64px;
		height: 52px;
	}

	.ws-detail-content-layout {
		grid-template-columns: 1fr;
	}

	.ws-detail-hero {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 14px;
	}

	.ws-detail-title-row {
		flex-direction: column;
		gap: 10px;
	}

	.ws-share-panel {
		justify-content: flex-start;
		max-width: 100%;
	}

	.ws-detail-icon {
		width: 58px;
		height: 58px;
		border-radius: 14px;
	}

	.ws-detail-icon-fallback {
		font-size: 25px;
	}

	.ws-detail-title {
		font-size: 22px;
	}

	.ws-sidebar {
		display: none;
	}

	.ws-auth-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.ws-auth-box {
		width: 100%;
	}

	.ws-auth-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.ws-auth-switch {
		width: fit-content;
		justify-content: center;
	}

	.ws-auth-switch-link {
		flex: 0 0 auto;
		min-width: 76px;
	}

	.ws-auth-social-links {
		justify-content: flex-start;
	}

	.ws-auth-social-link {
		width: 100%;
	}

	.ws-auth-ucenter-link {
		width: 100%;
	}

	.ws-auth-success-wrap {
		min-height: auto;
	}

	.ws-auth-success-card {
		padding: 26px 20px;
		border-radius: 18px;
	}

	.ws-auth-success-title {
		font-size: 24px;
	}

	.ws-auth-card {
		padding: 18px 16px;
	}

	.ws-auth-card h3 {
		font-size: 17px;
	}

	.ws-auth-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.ws-member-layout {
		grid-template-columns: 1fr;
	}

	.ws-member-sidebar-nav {
		position: static;
	}

	.ws-member-fav-list {
		grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
	}

	.ws-avatar-crop-fields {
		grid-template-columns: 1fr;
	}
}

.ws-icp {
	text-align: center;
	font-size: 12px;
	color: #94a3b8;
	padding: 12px 16px 24px;
}

@media (max-width: 640px) {
	.ws-featured-shell {
		padding: 10px;
	}

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

	.ws-featured-item {
		padding: 9px 10px;
	}

	.ws-hot-strip {
		padding: 9px 10px;
		border-radius: 12px;
	}

	.ws-hot-strip-item {
		max-width: 170px;
	}

	.ws-home-latest {
		padding: 14px;
	}

	.ws-latest-sites {
		padding: 14px;
	}

	.ws-latest-sites-list {
		gap: 8px;
	}

	.ws-latest-site {
		gap: 8px;
		padding: 8px;
		border-radius: 12px;
	}

	.ws-latest-site-icon {
		width: 28px;
		height: 28px;
		flex-basis: 28px;
		border-radius: 8px;
	}

	.ws-latest-site-title {
		font-size: 12px;
	}

	.ws-latest-list {
		gap: 10px;
	}

	.ws-latest-item-link {
		grid-template-columns: 56px minmax(0, 1fr);
		gap: 8px;
		padding: 8px;
		border-radius: 14px;
	}

	.ws-latest-thumb {
		width: 56px;
		height: 48px;
		border-radius: 10px;
	}

	.ws-latest-title {
		font-size: 13px;
		-webkit-line-clamp: 2;
	}

	.ws-latest-date {
		font-size: 11px;
	}
}

/* ==========================================================================
   Robot product library (products archive, single, cards, company card)
   ========================================================================== */

.ws-archive-title {
	margin: 0 0 6px;
	font-size: 26px;
	font-weight: 700;
	color: #0f172a;
}

.ws-archive-desc {
	margin: 0 0 14px;
	color: #64748b;
	font-size: 14px;
	line-height: 1.7;
}

.ws-product-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
}

.ws-product-filters-label {
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
}

.ws-product-filters .ws-chip.is-app {
	border-style: dashed;
}

.ws-product-filters .ws-chip.is-active {
	border-color: #2563eb;
	background: #2563eb;
	color: #ffffff;
}

.ws-company-filter-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 1px solid #dbe5f3;
	border-radius: 12px;
	background: #f8fafc;
	font-size: 14px;
	color: #334155;
}

.ws-company-filter-bar strong {
	color: #0f172a;
}

.ws-company-filter-clear {
	color: #2563eb;
	text-decoration: none;
	font-weight: 600;
}

.ws-company-filter-clear:hover,
.ws-company-filter-clear:focus {
	color: #1d4ed8;
}

.ws-product-grid {
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 14px;
}

.ws-product-card {
	display: flex;
	flex-direction: column;
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background: linear-gradient(145deg, #ffffff, #fafcff);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ws-product-card:hover,
.ws-product-card:focus {
	transform: translateY(-2px);
	border-color: #cbd5f5;
	box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
}

.ws-product-card-cover {
	position: relative;
	aspect-ratio: 16 / 10;
	background: #f1f5f9;
	overflow: hidden;
}

.ws-product-card-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ws-product-card-fallback {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--ws-fallback-color, #2563eb);
	color: #ffffff;
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
}

.ws-product-card-cover.is-fallback .ws-product-card-fallback {
	display: flex;
}

.ws-product-card-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 14px 14px;
	min-width: 0;
}

.ws-product-card-title {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #111827;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ws-product-card-company {
	margin: 0;
	font-size: 12px;
	color: #2563eb;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ws-product-card-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
}

.ws-product-card-cat {
	font-size: 11px;
	color: #64748b;
	background: #f1f5f9;
	border-radius: 999px;
	padding: 2px 8px;
}

.ws-product-badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.5;
	color: #334155;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
}

.ws-product-badge.is-on-sale {
	color: #15803d;
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.ws-product-badge.is-in_dev {
	color: #1d4ed8;
	background: #eff6ff;
	border-color: #bfdbfe;
}

.ws-product-badge.is-concept {
	color: #7c2d12;
	background: #fff7ed;
	border-color: #fed7aa;
}

.ws-product-badge.is-discontinued {
	color: #64748b;
	background: #f8fafc;
	border-color: #e2e8f0;
}

.ws-product-badge-lg {
	font-size: 13px;
	padding: 4px 12px;
	flex-shrink: 0;
}

.ws-product-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	padding: 6px 10px;
	border-radius: 10px;
	border: 1px solid #dbe5f3;
	background: #ffffff;
	color: #334155;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ws-product-pagination .page-numbers:hover,
.ws-product-pagination .page-numbers:focus {
	border-color: #bfdbfe;
	background: #eff6ff;
	color: #1d4ed8;
}

.ws-product-pagination .page-numbers.current {
	border-color: #2563eb;
	background: #2563eb;
	color: #ffffff;
}

.ws-product-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

.ws-product-hero {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.ws-product-hero-cover {
	position: relative;
	width: 200px;
	aspect-ratio: 4 / 3;
	border-radius: 14px;
	overflow: hidden;
	background: #f1f5f9;
	flex-shrink: 0;
}

.ws-product-hero-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ws-product-hero-fallback {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: var(--ws-fallback-color, #2563eb);
	color: #ffffff;
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
}

.ws-product-hero-cover.is-fallback .ws-product-hero-fallback {
	display: flex;
}

.ws-product-hero-body {
	min-width: 0;
	flex: 1;
}

.ws-detail-button.is-secondary {
	background: #ffffff;
	color: #1d4ed8;
	border: 1px solid #bfdbfe;
}

.ws-detail-button.is-secondary:hover,
.ws-detail-button.is-secondary:focus {
	background: #eff6ff;
}

.ws-company-card {
	border: 1px solid #dbe5f3;
	border-radius: 14px;
	background: linear-gradient(145deg, #ffffff, #f8fafc);
	padding: 18px;
}

.ws-company-card-head {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ws-company-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #eff6ff;
	color: #2563eb;
	font-size: 24px;
	font-weight: 700;
	flex-shrink: 0;
}

.ws-company-card-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ws-company-card-label {
	margin: 0 0 2px;
	font-size: 12px;
	color: #94a3b8;
	font-weight: 600;
}

.ws-company-card-name {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

.ws-company-card-name a {
	color: #0f172a;
	text-decoration: none;
}

.ws-company-card-name a:hover,
.ws-company-card-name a:focus {
	color: #1d4ed8;
}

.ws-company-card-notice {
	margin: 2px 0 0;
	font-size: 12px;
	color: #ca8a04;
}

.ws-company-card-facts {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	row-gap: 8px;
	margin: 14px 0 0;
}

.ws-company-card-fact {
	display: flex;
	align-items: baseline;
	margin: 0;
	padding: 0 16px;
}

.ws-company-card-fact:first-child {
	padding-left: 0;
}

.ws-company-card-fact + .ws-company-card-fact {
	border-left: 1px solid #e2e8f0;
}

.ws-company-card-fact dt {
	font-size: 12px;
	color: #94a3b8;
	white-space: nowrap;
}

.ws-company-card-fact dt::after {
	content: "：";
}

.ws-company-card-fact dd {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
}

.ws-company-card-desc {
	margin: 12px 0 0;
	font-size: 13px;
	line-height: 1.7;
	color: #64748b;
}

.ws-company-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.ws-detail-company-facts {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	row-gap: 10px;
	margin: 14px 0 0;
	padding: 10px 16px;
	background: #f8fafc;
	border: 1px solid #e8eef7;
	border-radius: 12px;
}

.ws-detail-company-fact {
	display: flex;
	align-items: baseline;
	margin: 0;
	padding: 0 20px;
}

.ws-detail-company-fact:first-child {
	padding-left: 0;
}

.ws-detail-company-fact + .ws-detail-company-fact {
	border-left: 1px solid #e2e8f0;
}

.ws-detail-company-fact dt {
	font-size: 12px;
	color: #94a3b8;
	white-space: nowrap;
}

.ws-detail-company-fact dt::after {
	content: "：";
}

.ws-detail-company-fact dd {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
}

.ws-product-info {
	margin: 0;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
}

.ws-product-info-row {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	margin: 0;
}

.ws-product-info-row + .ws-product-info-row {
	border-top: 1px solid #eef2f7;
}

.ws-product-info-row dt {
	padding: 12px 16px;
	background: #f8fafc;
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
	margin: 0;
}

.ws-product-info-row dd {
	padding: 12px 16px;
	font-size: 14px;
	color: #0f172a;
	margin: 0;
}

@media (max-width: 720px) {
	.ws-detail-company-fact,
	.ws-company-card-fact {
		padding: 0 10px;
	}

	.ws-detail-company-fact + .ws-detail-company-fact,
	.ws-company-card-fact + .ws-company-card-fact {
		border-left: 0;
		padding-left: 0;
	}

	.ws-detail-company-facts,
	.ws-company-card-facts {
		row-gap: 6px;
	}

	.ws-detail-company-fact dd,
	.ws-company-card-fact dd {
		font-size: 13px;
	}

	.ws-product-hero {
		flex-direction: column;
	}

	.ws-product-hero-cover {
		width: 100%;
	}

	.ws-product-info-row {
		grid-template-columns: 110px minmax(0, 1fr);
	}

	.ws-product-info-row dt,
	.ws-product-info-row dd {
		padding: 10px 12px;
	}
}

/* Generic pagination chips for tag/company archives */
.ws-term-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	padding: 6px 10px;
	border-radius: 10px;
	border: 1px solid #dbe5f3;
	background: #ffffff;
	color: #334155;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ws-term-pagination .page-numbers:hover,
.ws-term-pagination .page-numbers:focus {
	border-color: #bfdbfe;
	background: #eff6ff;
	color: #1d4ed8;
}

.ws-term-pagination .page-numbers.current {
	border-color: #2563eb;
	background: #2563eb;
	color: #ffffff;
}

.ws-term-pagination .page-numbers.dots {
	border-color: transparent;
	background: transparent;
}

/* Related-company chips appended to single post content */
.ts-report-companies {
	margin: 22px 0 0;
	align-items: center;
}

.ts-report-companies-label {
	font-size: 13px;
	color: #94a3b8;
}
